:root{
      --bg:#f6faf7;
      --surface:#ffffff;
      --text:#1f2937;
      --muted:#5b6778;
      --muted2:#7b8798;
      --line:rgba(16,24,40,.10);
      --shadow:0 10px 30px rgba(16,24,40,.10);
      --shadow2:0 12px 40px rgba(16,24,40,.12);
      --green:#18d36b;
      --green2:#0ea85a;
      --green3:#0b7e45;
      --ring:rgba(24,211,107,.25);
      --accent:#16a34a;
      --blue:#2563eb;
      --radius:18px;
      --radius2:24px;
      --container:1120px;
      --pad:18px;
      --focus:0 0 0 4px rgba(24,211,107,.22);
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      color:var(--text);
      background:
        radial-gradient(900px 500px at 20% -10%, rgba(24,211,107,.18), rgba(24,211,107,0) 60%),
        radial-gradient(700px 420px at 90% 0%, rgba(37,99,235,.12), rgba(37,99,235,0) 55%),
        linear-gradient(#f7fbf8, #f3f7f5);
    }

    a{color:inherit; text-decoration:none}
    .skip-link{
      position:absolute; left:-999px; top:auto;
      width:1px; height:1px; overflow:hidden;
    }
    .skip-link:focus{
      left:16px; top:16px; width:auto; height:auto; padding:10px 12px;
      background:var(--surface); border:1px solid var(--line); border-radius:12px;
      box-shadow:var(--shadow);
      z-index:1000;
    }

    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 var(--pad);
    }

    .site-header{
      position:sticky; top:0; z-index:50;
      background:rgba(246,250,247,.82);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(16,24,40,.08);
    }
    .nav-container{
      min-height:72px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
    }
    .brand{display:flex; align-items:center; gap:12px}
    .ai-page-logo{width:142px; height:auto}
    .nav{display:flex; align-items:center; gap:12px; width:100%; justify-content:space-between}
    .nav-toggle{
      display:none;
      width:44px; height:44px;
      border-radius:12px;
      border:1px solid var(--line);
      background:var(--surface);
      box-shadow:0 6px 18px rgba(16,24,40,.06);
      align-items:center; justify-content:center;
      cursor:pointer;
    }
    .nav-toggle-bar{display:block; width:18px; height:2px; background:rgba(17,24,39,.75); border-radius:2px; margin:3px 0}
    .nav-right{display:flex; align-items:center; gap:12px; justify-content:flex-end; width:auto}
    .nav-links{
      display:flex; align-items:center; gap:16px;
      padding:6px 0;
      flex-wrap:nowrap;
      white-space:nowrap;
    }
    .nav-link{
      font-size:14px; color:rgba(17,24,39,.78);
      padding:8px 10px;
      border-radius:12px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
    }
    .nav-link:hover{
      background:rgba(24,211,107,.10);
      color:rgba(17,24,39,.95);
      transform: translateY(-1px);
    }
    .cta-link{
      border:1px solid rgba(24,211,107,.25);
      background:rgba(24,211,107,.08);
      color:rgba(15,118,60,.95);
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      border-radius:14px;
      padding:12px 16px;
      border:1px solid transparent;
      cursor:pointer;
      font-weight:700;
      font-size:14px;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      user-select:none;
    }
    .btn:focus{outline:none; box-shadow:var(--focus)}
    .btn:active{transform: translateY(1px)}
    .btn-solid{
      background: linear-gradient(135deg, #18d36b, #0ea85a);
      border-color: rgba(255,255,255,.25);
      color:#05240f;
      box-shadow: 0 14px 34px rgba(24,211,107,.20);
    }
    .btn-solid:hover{box-shadow: 0 18px 44px rgba(24,211,107,.26)}
    .btn-ghost{
      background:rgba(255,255,255,.72);
      border-color: rgba(16,24,40,.12);
      color: rgba(17,24,39,.86);
      box-shadow: 0 10px 24px rgba(16,24,40,.06);
    }
    .btn-ghost:hover{
      background:rgba(255,255,255,.92);
      transform: translateY(-1px);
    }
    .btn-lg{padding:13px 18px; font-size:15px}
    .btn-block{width:100%}

    .mobile-menu{
      display:none;
      background:rgba(246,250,247,.98);
      border-bottom:1px solid rgba(16,24,40,.08);
    }
    .mobile-menu-inner{
      padding:14px 0 18px;
      display:flex; flex-direction:column; gap:8px;
    }
    .mobile-item{
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(16,24,40,.08);
      background:rgba(255,255,255,.85);
      font-weight:650;
      color:rgba(17,24,39,.85);
    }

    .hero{
      position:relative;
      padding:44px 0 10px;
      overflow:hidden;
    }
    .hero-bg{
      position:absolute; inset:-40px 0 auto 0; height:560px;
      pointer-events:none;
    }
    .grid-glow{
      position:absolute; inset:0;
      background:
        radial-gradient(600px 220px at 20% 10%, rgba(24,211,107,.26), rgba(24,211,107,0) 60%),
        radial-gradient(420px 180px at 75% 20%, rgba(37,99,235,.14), rgba(37,99,235,0) 55%);
      filter: saturate(1.1);
    }
    .ring{
      position:absolute;
      border:1px solid rgba(24,211,107,.26);
      border-radius:999px;
      box-shadow:0 0 0 8px rgba(24,211,107,.06);
      animation: floaty 8s ease-in-out infinite;
    }
    .ring-1{width:300px; height:300px; left:-90px; top:120px}
    .ring-2{width:220px; height:220px; right:-70px; top:70px; border-color: rgba(37,99,235,.20); box-shadow:0 0 0 8px rgba(37,99,235,.06)}
    .spark{
      position:absolute; width:10px; height:10px;
      background:rgba(24,211,107,.75);
      border-radius:999px;
      filter: blur(.2px);
      animation: spark 4s ease-in-out infinite;
    }
    .spark-1{left:18%; top:160px}
    .spark-2{right:20%; top:210px; background:rgba(37,99,235,.55)}
    @keyframes floaty{0%,100%{transform: translateY(0)}50%{transform: translateY(-10px)}}
    @keyframes spark{0%,100%{transform: translateY(0) scale(1)}50%{transform: translateY(-10px) scale(1.2)}}

    .hero-inner{
      position:relative;
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:26px;
      align-items:start;
      padding:12px 0 26px;
    }

    .kicker{display:flex; align-items:center; gap:10px; flex-wrap:wrap}
    .chip{
      display:inline-flex; align-items:center; gap:8px;
      font-size:12px; font-weight:800;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(24,211,107,.30);
      background: rgba(24,211,107,.12);
      color: rgba(9,90,44,.98);
      letter-spacing:.2px;
    }
    .chip-green{background: rgba(24,211,107,.12); border-color: rgba(24,211,107,.35)}
    .kicker-text{font-size:13px; color:rgba(17,24,39,.70); font-weight:650}

    .hero-title{
      margin:14px 0 10px;
      font-size:40px;
      line-height:1.08;
      letter-spacing:-.6px;
    }
    .hero-subtitle{
      margin:0;
      color:rgba(31,41,55,.78);
      font-size:16px;
      line-height:1.7;
      max-width:560px;
    }
    .hero-actions{
      display:flex; gap:12px; flex-wrap:wrap;
      margin-top:18px;
    }

    .hero-badges{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
      margin-top:18px;
    }
    .badge{
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 12px 26px rgba(16,24,40,.06);
      padding:12px 12px;
      display:flex;
      gap:10px;
      align-items:flex-start;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      transform: translateZ(0);
    }
    .badge:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(16,24,40,.10);
      border-color: rgba(24,211,107,.28);
    }
    .badge-ico{
      width:34px; height:34px;
      border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      color: rgba(11,126,69,.95);
      background: rgba(24,211,107,.12);
      border:1px solid rgba(24,211,107,.20);
      flex:0 0 auto;
    }
    .badge-title{font-weight:900; font-size:13px; margin-bottom:4px}
    .badge-desc{font-size:12.5px; color:rgba(31,41,55,.70); font-weight:650}

    .hero-right{
      display:flex; flex-direction:column; gap:14px;
    }
    .hero-panel{
      border-radius: var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.70));
      box-shadow: var(--shadow);
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .hero-panel::after{
      content:"";
      position:absolute; inset:-120px -120px auto auto;
      width:220px; height:220px;
      background: radial-gradient(circle at center, rgba(24,211,107,.18), rgba(24,211,107,0) 60%);
      transform: rotate(10deg);
      pointer-events:none;
    }
    .panel-head{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
    .panel-title{font-weight:950; font-size:15.5px}
    .panel-tag{
      font-size:12.5px;
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(24,211,107,.25);
      background: rgba(24,211,107,.10);
      color: rgba(11,126,69,.95);
      font-weight:800;
      white-space:nowrap;
    }
    .metrics{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
      margin-top:14px;
    }
    .metric{
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.68);
      padding:12px 12px;
    }
    .metric-value{font-weight:950; font-size:18px; letter-spacing:-.3px}
    .metric-label{margin-top:4px; color:rgba(31,41,55,.68); font-weight:700; font-size:12.5px}

    .panel-actions{display:grid; grid-template-columns:1fr; gap:10px; margin-top:14px}
    .panel-note{
      margin-top:12px;
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 12px;
      border-radius:16px;
      border:1px dashed rgba(24,211,107,.35);
      background: rgba(24,211,107,.08);
      color: rgba(9,90,44,.98);
      font-weight:700;
      font-size:13px;
    }
    .dot{width:10px; height:10px; border-radius:50%}
    .dot-green{background: rgba(24,211,107,.95); box-shadow:0 0 0 4px rgba(24,211,107,.18)}

    .hero-mini-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
    }
    .mini-card{
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      padding:12px 12px;
      box-shadow: 0 10px 26px rgba(16,24,40,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .mini-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 42px rgba(16,24,40,.10);
      border-color: rgba(24,211,107,.26);
    }
    .mini-wide{grid-column: 1 / -1}
    .mini-title{font-weight:950; font-size:14px}
    .mini-desc{margin-top:4px; color:rgba(31,41,55,.70); font-weight:700; font-size:12.5px; line-height:1.45}

    .section{
      padding:60px 0;
    }
    .section-soft{
      padding:70px 0;
      background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0));
      border-top:1px solid rgba(16,24,40,.06);
      border-bottom:1px solid rgba(16,24,40,.06);
    }
    .section-head{
      margin-bottom:22px;
      display:flex; flex-direction:column; gap:8px;
    }
    .h2{
      margin:0;
      font-size:28px;
      letter-spacing:-.4px;
    }
    .h3{
      margin:0;
      font-size:18px;
      letter-spacing:-.2px;
    }
    .lead{
      margin:0;
      color:rgba(31,41,55,.74);
      font-size:15.5px;
      line-height:1.8;
      max-width:820px;
      font-weight:650;
    }
    .p-muted{color:rgba(31,41,55,.72); line-height:1.7; margin:10px 0 0; font-weight:650}

    .card{
      border-radius:var(--radius);
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.72);
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
      padding:16px;
    }
    .card-plain{
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 34px rgba(16,24,40,.07);
    }
    .card-border{
      background: rgba(255,255,255,.70);
      border-color: rgba(24,211,107,.22);
    }
    .card-tilt{
      position:relative;
      overflow:hidden;
    }
    .card-tilt::before{
      content:"";
      position:absolute; inset:-2px -2px auto auto;
      width:220px; height:220px;
      background: radial-gradient(circle at 60% 30%, rgba(24,211,107,.18), rgba(24,211,107,0) 55%);
      pointer-events:none;
    }
    .card-hover{transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease}
    .card-hover:hover{
      transform: translateY(-3px);
      box-shadow: var(--shadow2);
      border-color: rgba(24,211,107,.28);
    }
    .reveal{
      opacity:0;
      transform: translateY(14px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.in{
      opacity:1;
      transform: translateY(0);
    }

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

    .card-icon{
      width:42px; height:42px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(24,211,107,.10);
      border:1px solid rgba(24,211,107,.20);
      color: rgba(11,126,69,.95);
      margin-bottom:10px;
    }

    .bullet-list{
      list-style:none; padding:0; margin:12px 0 0;
      display:flex; flex-direction:column; gap:10px;
    }
    .check{
      width:18px; height:18px; border-radius:6px;
      background: rgba(24,211,107,.12);
      border:1px solid rgba(24,211,107,.25);
      display:inline-block; position:relative; margin-right:10px; top:3px;
      flex:0 0 auto;
    }
    .check::after{
      content:"";
      position:absolute; left:5px; top:4px;
      width:6px; height:3px;
      border-left:2px solid rgba(11,126,69,.95);
      border-bottom:2px solid rgba(11,126,69,.95);
      transform: rotate(-45deg);
    }
    .bullet-list li{
      display:flex; align-items:flex-start; gap:10px;
      color:rgba(31,41,55,.78);
      font-weight:680;
      font-size:14.2px;
      line-height:1.6;
    }

    .card-topline{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .stamp{
      display:inline-flex; align-items:center; justify-content:center;
      padding:7px 12px;
      border-radius:999px;
      font-weight:900;
      font-size:12.5px;
      color: rgba(17,24,39,.82);
      background: rgba(255,255,255,.70);
      border:1px solid rgba(16,24,40,.10);
      white-space:nowrap;
    }
    .stamp-green{
      color: rgba(9,90,44,.98);
      background: rgba(24,211,107,.12);
      border-color: rgba(24,211,107,.25);
    }
    .small-muted{color:rgba(31,41,55,.66); font-weight:700; font-size:13px}
    .divider{height:1px; background:rgba(16,24,40,.10); margin:14px 0}
    .card-footer-actions{
      display:flex; gap:10px; flex-wrap:wrap; margin-top:14px;
    }

    .timeline{display:flex; flex-direction:column; gap:12px; position:relative}
    .time-item{display:flex; gap:12px; align-items:flex-start}
    .time-dot{
      width:12px; height:12px;
      border-radius:50%;
      background: rgba(24,211,107,.95);
      box-shadow:0 0 0 4px rgba(24,211,107,.15);
      margin-top:6px;
      flex:0 0 auto;
    }
    .time-body{padding-bottom:4px}
    .time-title{font-weight:950}
    .time-desc{color:rgba(31,41,55,.72); margin-top:4px; font-weight:680; line-height:1.6; font-size:13.6px}

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

    .card-pill-row{display:flex; gap:8px; flex-wrap:wrap; margin-top:12px}
    .pill{
      display:inline-flex; align-items:center; justify-content:center;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.75);
      font-size:12.5px; font-weight:800;
      color: rgba(31,41,55,.72);
    }
    .pill-green{
      color: rgba(9,90,44,.98);
      border-color: rgba(24,211,107,.28);
      background: rgba(24,211,107,.10);
    }

    .step-card{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 10px 24px rgba(16,24,40,.05);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .step-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 46px rgba(16,24,40,.10);
      border-color: rgba(24,211,107,.26);
    }
    .step-no{
      font-weight:1000;
      font-size:14px;
      color: rgba(9,90,44,.98);
      background: rgba(24,211,107,.12);
      border:1px solid rgba(24,211,107,.26);
      width:max-content;
      padding:7px 10px;
      border-radius:999px;
    }
    .step-title{margin-top:12px; font-weight:1000; font-size:16px; letter-spacing:-.2px}
    .step-desc{margin-top:6px; color:rgba(31,41,55,.72); font-weight:680; line-height:1.65; font-size:13.8px}

    .callout{
      margin-top:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(24,211,107,.18);
      background:
        radial-gradient(600px 240px at 25% 0%, rgba(24,211,107,.16), rgba(24,211,107,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.52));
      padding:16px;
      display:flex; align-items:center; justify-content:space-between; gap:14px;
    }
    .callout-title{font-weight:1000; font-size:16px}
    .callout-sub{margin-top:6px; color:rgba(31,41,55,.72); font-weight:680}
    .tags{display:flex; flex-wrap:wrap; gap:8px; justify-content:flex-end}
    .tag{
      display:inline-flex;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.75);
      font-weight:900;
      color: rgba(31,41,55,.74);
      font-size:12.8px;
      transition: transform .2s ease, border-color .2s ease;
    }
    .tag:hover{transform: translateY(-1px); border-color: rgba(24,211,107,.26)}
    .tag-link{cursor:pointer}

    .grid-2{display:grid; grid-template-columns: 1fr 1fr; gap:16px}
    .mini-list{list-style:none; padding:0; margin:12px 0 0; display:flex; flex-direction:column; gap:10px; font-weight:750; color:rgba(31,41,55,.78)}
    .mini-list li::before{
      content:"";
      display:inline-block;
      width:8px; height:8px;
      border-radius:3px;
      background: rgba(24,211,107,.30);
      border:1px solid rgba(24,211,107,.35);
      margin-right:10px;
      position:relative; top:-1px;
    }

    .network-wrap{
      display:grid;
      grid-template-columns: 1fr 1.2fr;
      gap:16px;
      align-items:stretch;
    }
    .network-map{
      border-radius:var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background:
        radial-gradient(600px 240px at 20% 20%, rgba(24,211,107,.18), rgba(24,211,107,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.55));
      position:relative;
      overflow:hidden;
      box-shadow: 0 16px 44px rgba(16,24,40,.07);
      min-height:300px;
    }
    .map-line{
      position:absolute; inset:0;
      background:
        linear-gradient(to right, rgba(24,211,107,.18), rgba(24,211,107,0) 35%),
        radial-gradient(circle at 30% 40%, rgba(37,99,235,.10), rgba(37,99,235,0) 55%);
      opacity:.9;
    }
    .map-node{
      position:absolute; width:12px; height:12px;
      border-radius:50%;
      background: rgba(24,211,107,.95);
      box-shadow:0 0 0 6px rgba(24,211,107,.14);
      animation: pop 3.8s ease-in-out infinite;
    }
    .node-1{left:18%; top:35%; animation-delay:.2s}
    .node-2{left:45%; top:28%; background: rgba(37,99,235,.55); box-shadow:0 0 0 6px rgba(37,99,235,.12); animation-delay:1.1s}
    .node-3{left:63%; top:40%; animation-delay:.6s}
    .node-4{left:30%; top:58%; animation-delay:1.4s}
    .node-5{left:70%; top:62%; background: rgba(37,99,235,.55); box-shadow:0 0 0 6px rgba(37,99,235,.12); animation-delay:.9s}
    .map-pulse{
      position:absolute; inset:auto auto 24% 18%;
      width:220px; height:220px;
      border-radius:999px;
      border:1px solid rgba(24,211,107,.25);
      box-shadow: 0 0 0 10px rgba(24,211,107,.06);
      transform: translate(-30px, 0);
      animation: pulse 7s ease-in-out infinite;
    }
    @keyframes pop{0%,100%{transform: scale(1)}50%{transform: scale(1.12)}}
    @keyframes pulse{0%,100%{transform: translate(-30px, 0) scale(1); opacity:.95}50%{transform: translate(-20px, -10px) scale(1.03); opacity:.75}}

    .network-cards{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
      align-content:start;
    }
    .net-card{
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 10px 26px rgba(16,24,40,.05);
      padding:14px;
    }
    .net-title{font-weight:1000}
    .net-desc{margin-top:6px; color:rgba(31,41,55,.72); font-weight:680; line-height:1.6; font-size:13.8px}

    .network-quick{
      margin-top:14px;
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:16px;
      align-items:stretch;
    }
    .quick-box{
      border-radius:var(--radius2);
      border:1px solid rgba(24,211,107,.18);
      background:
        radial-gradient(500px 220px at 10% 0%, rgba(24,211,107,.18), rgba(24,211,107,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.52));
      padding:16px;
      box-shadow: 0 18px 46px rgba(16,24,40,.08);
      display:flex; flex-direction:column; justify-content:center;
      gap:10px;
    }
    .quick-title{font-weight:1000; font-size:16px}
    .quick-desc{color:rgba(31,41,55,.72); font-weight:680; line-height:1.7}
    .quick-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:6px}
    .qr-card{
      border-radius:var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.76);
      box-shadow: 0 14px 36px rgba(16,24,40,.07);
      padding:16px;
      display:flex; flex-direction:column;
      gap:10px;
      align-items:flex-start;
    }
    .qr-title{font-weight:1000}
    .qr-sub{color:rgba(31,41,55,.72); font-weight:680; font-size:13.5px}
    .qr-img{
      width:126px;
      height:auto;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: #fff;
      padding:8px;
    }
    .qr-meta{display:flex; flex-direction:column; gap:6px; color:rgba(31,41,55,.72); font-weight:700; font-size:13px}

    .process-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:16px;
      align-items:stretch;
    }
    .process-title{font-weight:1000; font-size:16px; margin-bottom:10px}
    .process-steps{display:flex; flex-direction:column; gap:12px}
    .process-step{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 10px 22px rgba(16,24,40,.04);
    }
    .process-step-no{
      width:34px; height:34px;
      border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(24,211,107,.12);
      border:1px solid rgba(24,211,107,.22);
      font-weight:1000;
      color: rgba(9,90,44,.98);
      flex:0 0 auto;
    }
    .process-step-title{font-weight:1000}
    .process-step-desc{margin-top:5px; color:rgba(31,41,55,.72); font-weight:680; line-height:1.6; font-size:13.8px}

    .card-compare{padding:16px}
    .mini-form-title{font-weight:1000; font-size:15px; margin-bottom:10px}
    .mini-form-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
      margin-bottom:12px;
    }
    .field{display:flex; flex-direction:column; gap:7px}
    .field-full{grid-column:1/-1}
    .field-label{font-weight:900; font-size:13px; color:rgba(17,24,39,.84)}
    .field-control{
      width:100%;
      padding:11px 12px;
      border-radius:14px;
      border:1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.88);
      font-weight:700;
      color: rgba(17,24,39,.92);
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease, background .15s ease;
    }
    .field-control:focus{
      box-shadow: var(--focus);
      border-color: rgba(24,211,107,.35);
      background:#fff;
    }
    .field-textarea{min-height:120px; resize: vertical}
    .mini-form-actions{display:flex; gap:10px; flex-wrap:wrap}
    .mini-result{
      margin-top:10px;
      padding:10px 12px;
      border-radius:16px;
      border:1px dashed rgba(24,211,107,.35);
      background: rgba(24,211,107,.08);
      color: rgba(9,90,44,.98);
      font-weight:780;
      font-size:13.5px;
      min-height: 46px;
      display:flex; align-items:center;
    }
    .safe-note .safe-title{font-weight:1000; margin-bottom:8px}
    .safe-list{display:flex; flex-direction:column; gap:10px}
    .safe-item{display:flex; gap:10px; align-items:flex-start; color:rgba(31,41,55,.76); font-weight:720; line-height:1.6}
    .safe-bullet{
      width:10px; height:10px;
      border-radius:4px;
      background: rgba(24,211,107,.25);
      border:1px solid rgba(24,211,107,.35);
      margin-top:6px;
      flex:0 0 auto;
    }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:16px;
    }
    .case-card{
      border-radius:var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background:
        radial-gradient(560px 220px at 20% 0%, rgba(24,211,107,.14), rgba(24,211,107,0) 58%),
        linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.58));
      box-shadow: 0 16px 46px rgba(16,24,40,.07);
      padding:16px;
      display:flex; flex-direction:column;
      gap:10px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .case-card:hover{
      transform: translateY(-3px);
      border-color: rgba(24,211,107,.28);
      box-shadow: 0 22px 60px rgba(16,24,40,.11);
    }
    .case-top{display:flex; align-items:center; justify-content:space-between; gap:10px}
    .case-type{
      font-weight:1000;
      font-size:13px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(24,211,107,.22);
      background: rgba(24,211,107,.10);
      color: rgba(9,90,44,.98);
    }
    .case-score{
      font-weight:1000;
      font-size:13px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      color: rgba(31,41,55,.74);
      white-space:nowrap;
    }
    .case-title{font-weight:1100; font-size:16.5px; letter-spacing:-.2px}
    .case-desc{color:rgba(31,41,55,.72); font-weight:680; line-height:1.7; font-size:14px}
    .case-meta{display:flex; flex-wrap:wrap; gap:8px; margin-top:2px}
    .meta-pill{
      display:inline-flex; align-items:center; justify-content:center;
      padding:7px 10px; border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      font-size:12.3px; font-weight:900; color:rgba(31,41,55,.70);
    }
    .case-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:auto}

    .case-media{
      margin-top:16px;
      display:grid; grid-template-columns: 1.1fr .9fr; gap:16px;
      align-items:start;
    }
    .media-label{font-weight:1000; margin-bottom:10px}
    .media-row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
    .imgbox{
      border-radius:20px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.75);
      box-shadow: 0 14px 34px rgba(16,24,40,.06);
      overflow:hidden;
    }
    .imgbox img{
      width:100%;
      height: auto;
      display:block;
      object-fit:contain;
      transform: scale(1.003);
    }
    .media-single .imgbox{padding:0}
    .media-single img{width:100%}

    .compare-top{
      display:grid;
      grid-template-columns: .9fr 1.1fr;
      gap:16px;
      align-items:stretch;
      margin-bottom:16px;
    }
    .rating-card{
      border-radius:var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background:
        radial-gradient(520px 240px at 15% 0%, rgba(24,211,107,.16), rgba(24,211,107,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.56));
      box-shadow: 0 18px 52px rgba(16,24,40,.09);
      padding:16px;
      display:flex; flex-direction:column;
      gap:10px;
    }
    .rating-title{font-weight:1100; color:rgba(17,24,39,.90)}
    .rating-stars{font-size:22px; letter-spacing:2px; color: rgba(24,211,107,.95)}
    .star{filter: drop-shadow(0 8px 14px rgba(24,211,107,.20))}
    .rating-score{display:flex; align-items:baseline; gap:10px}
    .score-big{font-size:40px; font-weight:1100; letter-spacing:-1px; color:rgba(9,90,44,.98)}
    .score-small{color:rgba(31,41,55,.72); font-weight:900}
    .rating-note{color:rgba(31,41,55,.72); font-weight:680; line-height:1.7; margin-top:4px}

    .score-list{
      border-radius:var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 14px 36px rgba(16,24,40,.06);
      padding:16px;
      display:flex; flex-direction:column;
      gap:12px;
    }
    .score-item{display:grid; grid-template-columns: 1fr 1.2fr auto; gap:12px; align-items:center}
    .score-key{font-weight:950; color:rgba(17,24,39,.86); font-size:13.8px}
    .bar{height:10px; border-radius:999px; background: rgba(16,24,40,.08); overflow:hidden; position:relative}
    .bar span{
      display:block; height:100%;
      background: linear-gradient(90deg, rgba(24,211,107,.95), rgba(16,185,129,.85));
      border-radius:999px;
      box-shadow: 0 10px 24px rgba(24,211,107,.25);
    }
    .score-val{font-weight:1100; color:rgba(9,90,44,.98); font-size:13.8px}

    .compare-table-wrap{
      border-radius:var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 16px 46px rgba(16,24,40,.06);
      padding:16px;
    }
    .table-title-row{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; margin-bottom:12px}
    .table-title{font-weight:1100; font-size:15.5px}
    .table-sub{color:rgba(31,41,55,.66); font-weight:700}

    .table-scroll{overflow:auto; border-radius:18px}
    .compare-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width: 720px;
    }
    .compare-table th, .compare-table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(16,24,40,.08);
      vertical-align:top;
      text-align:left;
      font-weight:720;
      color:rgba(31,41,55,.80);
      font-size:14px;
    }
    .compare-table th{
      background: rgba(24,211,107,.08);
      border-bottom:1px solid rgba(24,211,107,.18);
      color: rgba(9,90,44,.98);
      font-weight:1000;
    }
    .compare-table tr:last-child td{border-bottom:none}

    .table-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:12px}

    .match-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:16px;
      align-items:start;
    }
    .card-form{padding:16px}
    .form{
      margin-top:10px;
      display:flex; flex-direction:column; gap:12px;
    }
    .compact-form .field-textarea{min-height:110px}
    .form-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
    }
    .field-full{grid-column:1/-1}
    .form-bottom{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-top:2px;
    }
    .form-agree{
      display:flex; align-items:center; gap:10px;
      color:rgba(31,41,55,.70);
      font-weight:720;
      font-size:13.2px;
      max-width: 380px;
    }
    .agree-dot{
      width:10px; height:10px;
      border-radius:4px;
      background: rgba(24,211,107,.28);
      border:1px solid rgba(24,211,107,.38);
      flex:0 0 auto;
    }
    .form-hint{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      color:rgba(31,41,55,.72);
      font-weight:720;
      line-height:1.6;
      font-size:13.2px;
    }
    .hint-ico{
      width:22px; height:22px;
      border-radius:10px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(24,211,107,.12);
      border:1px solid rgba(24,211,107,.22);
      color: rgba(9,90,44,.98);
      font-weight:1000;
      flex:0 0 auto;
      margin-top:1px;
    }

    .split-list{
      display:grid; grid-template-columns:1fr 1fr; gap:12px;
      margin-top:12px;
    }
    .split-item{
      display:flex; gap:10px; align-items:flex-start;
      color:rgba(31,41,55,.78);
      font-weight:730;
      line-height:1.6;
      margin-bottom:10px;
    }
    .pill-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:8px}
    .pill-link{
      display:inline-flex; align-items:center; justify-content:center;
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.75);
      font-weight:900;
      color:rgba(31,41,55,.75);
      transition: transform .2s ease, border-color .2s ease;
    }
    .pill-link:hover{transform: translateY(-1px); border-color: rgba(24,211,107,.28)}

    .side-review{
      margin-top:0;
      border-radius:var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 14px 36px rgba(16,24,40,.06);
      padding:16px;
    }
    .side-review-title{font-weight:1100; margin-bottom:10px}
    .side-review-list{display:flex; flex-direction:column; gap:12px}
    .mini-review{display:flex; gap:12px; align-items:flex-start}
    .mini-avatar{
      width:44px; height:44px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      font-weight:1100;
      background: rgba(24,211,107,.12);
      border:1px solid rgba(24,211,107,.25);
      color: rgba(9,90,44,.98);
      flex:0 0 auto;
    }
    .mini-name{font-weight:1000; font-size:14px}
    .mini-text{color:rgba(31,41,55,.72); font-weight:680; line-height:1.6; margin-top:4px; font-size:13.5px}

    .token-grid{
      display:grid;
      grid-template-columns: 1fr 1.1fr;
      gap:16px;
      align-items:stretch;
    }
    .token-card, .token-table-card{
      border-radius:var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 16px 46px rgba(16,24,40,.06);
      padding:16px;
    }
    .token-title{font-weight:1100; font-size:16px}
    .token-desc{margin-top:8px; color:rgba(31,41,55,.72); font-weight:680; line-height:1.7}
    .token-steps{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .token-step{display:flex; gap:12px; align-items:flex-start}
    .token-no{
      width:30px; height:30px;
      border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      font-weight:1100;
      color: rgba(9,90,44,.98);
      background: rgba(24,211,107,.12);
      border:1px solid rgba(24,211,107,.25);
      flex:0 0 auto;
      margin-top:2px;
    }
    .token-step-title{font-weight:1050}
    .token-step-desc{margin-top:4px; color:rgba(31,41,55,.72); font-weight:680; line-height:1.6; font-size:13.5px}

    .token-title-row{display:flex; align-items:flex-end; justify-content:space-between; gap:10px; margin-bottom:8px}
    .soft-table{width:100%; border-collapse:collapse; min-width: 520px}
    .soft-table th, .soft-table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(16,24,40,.08);
      text-align:left;
      color:rgba(31,41,55,.80);
      font-weight:720;
      font-size:14px;
      vertical-align:top;
    }
    .soft-table th{
      background: rgba(24,211,107,.08);
      border-bottom:1px solid rgba(24,211,107,.18);
      color: rgba(9,90,44,.98);
      font-weight:1000;
    }
    .soft-table tr:last-child td{border-bottom:none}

    .token-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:12px}

    .logos-cloud{margin-top:18px}
    .logos-title{font-weight:1100; margin-bottom:10px}
    .logo-cloud{
      display:flex; flex-wrap:wrap; gap:10px;
      padding:14px;
      border-radius:var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background:
        radial-gradient(520px 200px at 10% 0%, rgba(24,211,107,.14), rgba(24,211,107,0) 60%),
        rgba(255,255,255,.70);
      box-shadow: 0 14px 36px rgba(16,24,40,.06);
    }
    .cloud-item{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      font-weight:900;
      color: rgba(31,41,55,.74);
      font-size:13px;
    }

    .training-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
    }
    .train-pill-row{display:flex; flex-wrap:wrap; gap:10px; margin-top:12px}
    .training-steps{display:flex; flex-direction:column; gap:14px; margin-top:10px}
    .training-step{display:flex; gap:12px; align-items:flex-start}
    .training-ico{
      width:40px; height:40px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(24,211,107,.12);
      border:1px solid rgba(24,211,107,.22);
      color: rgba(9,90,44,.98);
      flex:0 0 auto;
      margin-top:2px;
    }
    .training-step-title{font-weight:1050}
    .training-step-desc{margin-top:4px; color:rgba(31,41,55,.72); font-weight:680; line-height:1.6; font-size:13.7px}

    .audience-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
      margin-top:12px;
    }
    .aud-item{
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.74);
      padding:14px;
    }
    .aud-title{font-weight:1050}
    .aud-desc{margin-top:6px; color:rgba(31,41,55,.72); font-weight:680; line-height:1.65; font-size:13.6px}

    .price-box{
      border-radius:18px;
      border:1px solid rgba(24,211,107,.18);
      background: rgba(24,211,107,.08);
      padding:14px;
      margin-top:10px;
    }
    .price-title{font-weight:1100}
    .price-desc{margin-top:6px; color:rgba(31,41,55,.72); font-weight:680; line-height:1.6; margin-bottom:10px}

    .help-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:16px;
      align-items:stretch;
    }
    .num-list{margin:12px 0 0; padding-left:18px; color:rgba(31,41,55,.78); font-weight:720; line-height:1.75}
    .num-list li{margin:6px 0}
    .help-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:12px}
    .tag-cloud{display:flex; flex-wrap:wrap; gap:10px; margin-top:10px}
    .hot-links{margin-top:10px}
    .hot-title{font-weight:1100; margin-bottom:10px}
    .link-list{display:flex; flex-direction:column; gap:8px}
    .text-link{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.78);
      font-weight:780;
      color: rgba(31,41,55,.80);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .text-link:hover{
      transform: translateY(-2px);
      border-color: rgba(24,211,107,.26);
      box-shadow: 0 16px 42px rgba(16,24,40,.10);
      background:#fff;
    }

    .faq-grid{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .faq-item{
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 30px rgba(16,24,40,.05);
      padding:0;
      overflow:hidden;
      margin-bottom:12px;
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    .faq-item[open]{border-color: rgba(24,211,107,.28); box-shadow: 0 18px 50px rgba(16,24,40,.09)}
    .faq-item summary{
      list-style:none;
      cursor:pointer;
      padding:14px 14px;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      font-weight:950;
      color: rgba(17,24,39,.90);
    }
    .faq-item summary::-webkit-details-marker{display:none}
    .faq-icon{
      width:18px; height:18px; border-radius:8px;
      border:1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.72);
      position:relative;
      flex:0 0 auto;
    }
    .faq-icon::before, .faq-icon::after{
      content:"";
      position:absolute; left:50%; top:50%;
      width:9px; height:2px;
      background: rgba(31,41,55,.75);
      transform: translate(-50%,-50%);
      border-radius:2px;
      transition: transform .2s ease, opacity .2s ease;
    }
    .faq-icon::after{
      width:2px; height:9px;
    }
    .faq-item[open] .faq-icon::after{opacity:0}
    .faq-body{
      padding:0 14px 14px;
      color: rgba(31,41,55,.74);
      font-weight:680;
      line-height:1.75;
      font-size:14px;
    }
    .faq-bottom{margin-top:16px}
    .faq-bottom-card{
      border-radius:var(--radius2);
      border:1px solid rgba(24,211,107,.18);
      background:
        radial-gradient(520px 210px at 20% 0%, rgba(24,211,107,.16), rgba(24,211,107,0) 60%),
        rgba(255,255,255,.72);
      box-shadow: 0 18px 52px rgba(16,24,40,.08);
      padding:16px;
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      flex-wrap:wrap;
    }
    .faq-bottom-title{font-weight:1100; font-size:16px}
    .faq-bottom-desc{color:rgba(31,41,55,.72); font-weight:680; margin-top:6px; line-height:1.6}
    .faq-bottom-actions{display:flex; gap:12px; flex-wrap:wrap}

    .wiki-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .wiki-card{
      border-radius:var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 14px 36px rgba(16,24,40,.06);
      padding:16px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .wiki-card:hover{
      transform: translateY(-3px);
      border-color: rgba(24,211,107,.26);
      box-shadow: 0 22px 62px rgba(16,24,40,.10);
    }
    .wiki-title{font-weight:1100; font-size:15.5px; letter-spacing:-.2px}
    .wiki-desc{margin-top:8px; color:rgba(31,41,55,.72); font-weight:680; line-height:1.7}
    .wiki-foot{display:flex; gap:8px; flex-wrap:wrap; margin-top:12px}
    .wiki-chip{
      padding:8px 10px; border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.74);
      font-weight:900; color:rgba(31,41,55,.70); font-size:12.6px;
    }

    .news-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
      align-items:stretch;
    }
    .news-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
    .mini-stats{display:flex; flex-direction:column; gap:12px}
    .mini-stat{
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.74);
      padding:14px;
    }
    .mini-stat-k{font-weight:1100}
    .mini-stat-v{margin-top:6px; color:rgba(31,41,55,.72); font-weight:680; line-height:1.7; font-size:13.8px}
    .small-cta-title{font-weight:1100}
    .small-cta-desc{margin-top:6px; color:rgba(31,41,55,.72); font-weight:680; line-height:1.6; margin-bottom:10px}

    .review-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:16px;
    }
    .review-card{
      border-radius:var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background:
        radial-gradient(520px 220px at 20% 0%, rgba(24,211,107,.14), rgba(24,211,107,0) 60%),
        rgba(255,255,255,.72);
      box-shadow: 0 16px 46px rgba(16,24,40,.07);
      padding:16px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex; flex-direction:column;
      gap:10px;
    }
    .review-card:hover{
      transform: translateY(-3px);
      border-color: rgba(24,211,107,.26);
      box-shadow: 0 22px 62px rgba(16,24,40,.10);
    }
    .review-top{display:flex; align-items:center; gap:10px; justify-content:space-between}
    .review-avatar{
      width:44px; height:44px;
      border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      font-weight:1100;
      background: rgba(24,211,107,.12);
      border:1px solid rgba(24,211,107,.22);
      color: rgba(9,90,44,.98);
    }
    .review-name{font-weight:1100; font-size:14.5px; margin-left:-2px}
    .review-tag{
      font-weight:900;
      font-size:12.5px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      color: rgba(31,41,55,.74);
      white-space:nowrap;
    }
    .review-text{
      color:rgba(31,41,55,.72);
      font-weight:680;
      line-height:1.75;
      font-size:14.2px;
      margin-top:2px;
    }

    .contact-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
      align-items:stretch;
    }
    .contact-list{display:flex; flex-direction:column; gap:12px; margin-top:12px}
    .contact-item{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
    .contact-k{font-weight:950; color:rgba(31,41,55,.78)}
    .contact-v{color:rgba(31,41,55,.76); font-weight:760; text-align:right}
    .footer-muted{color:rgba(31,41,55,.66)}
    .contact-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
    .contact-foot-note{
      margin-top:12px;
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(24,211,107,.18);
      background: rgba(24,211,107,.08);
      color: rgba(9,90,44,.98);
      font-weight:780;
      line-height:1.6;
      font-size:13.6px;
    }

    .quick-join{margin-top:12px}
    .quick-join-title{font-weight:1000; margin-bottom:10px}

    .join-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:16px;
      align-items:stretch;
    }
    .join-list{display:flex; flex-direction:column; gap:12px; margin-top:12px}
    .join-item{display:flex; gap:12px; align-items:flex-start}
    .join-ico{
      width:32px; height:32px;
      border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(24,211,107,.12);
      border:1px solid rgba(24,211,107,.22);
      color: rgba(9,90,44,.98);
      font-weight:1100;
      flex:0 0 auto;
      margin-top:2px;
    }
    .join-title{font-weight:1100}
    .join-desc{margin-top:4px; color:rgba(31,41,55,.72); font-weight:680; line-height:1.7; font-size:13.8px}
    .join-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}

    .friend-links{display:flex; flex-wrap:wrap; gap:10px; margin-top:12px}
    .agent-card{
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.74);
      padding:14px;
    }
    .agent-title{font-weight:1100}
    .agent-desc{margin-top:8px; color:rgba(31,41,55,.72); font-weight:680; line-height:1.7; font-size:14px}
    .footer-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:16px; flex-wrap:wrap;
      padding-top:10px;
    }
    .site-footer{
      background: rgba(7,20,12,.94);
      color: rgba(255,255,255,.92);
      border-top:1px solid rgba(255,255,255,.10);
      padding:36px 0 26px;
    }
    .footer-inner{display:flex; flex-direction:column; gap:18px}
    .footer-brand{display:flex; gap:14px; align-items:center}
    .footer-logo-wrap{
      width:92px;
      height:auto;
      border-radius:20px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.14);
      padding:10px;
    }
    .footer-brand-name{font-weight:1200; font-size:16px}
    .footer-brand-sub{margin-top:6px; color:rgba(255,255,255,.70); font-weight:680; line-height:1.6; font-size:13.5px}
    .footer-links{display:flex; gap:26px; flex-wrap:wrap}
    .footer-col{min-width:190px}
    .footer-title{font-weight:1100; margin-bottom:10px; color:rgba(255,255,255,.92)}
    .footer-link{
      display:block;
      padding:8px 0;
      color:rgba(255,255,255,.78);
      font-weight:720;
      font-size:14px;
    }
    .footer-link:hover{color:#fff}
    .footer-muted{color:rgba(255,255,255,.65)}
    .footer-bottom{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      border-top:1px solid rgba(255,255,255,.12);
      padding-top:16px;
    }
    .footer-copy{color:rgba(255,255,255,.78); font-weight:720; font-size:13.5px}
    .footer-sep{margin:0 8px; color:rgba(255,255,255,.32)}
    .footer-link-inline{color:rgba(255,255,255,.88); text-decoration:underline; text-underline-offset:3px}
    .footer-right{display:flex; align-items:center; gap:12px}
    .ai-page-home-link{
      color: rgba(255,255,255,.90);
      font-weight:1100;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.06);
    }
    .ai-page-home-link:hover{background: rgba(255,255,255,.10)}
    .to-top{
      border-radius:14px;
      padding:10px 12px;
      border:1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.06);
      color: rgba(255,255,255,.92);
      font-weight:1100;
      cursor:pointer;
    }
    .to-top:hover{background: rgba(255,255,255,.10)}

    .float-cs{
      position:fixed;
      right:14px; bottom:14px;
      z-index:80;
    }
    .float-cs-btn{
      display:flex; align-items:center; gap:10px;
      padding:12px 14px;
      border-radius:18px;
      background: rgba(7,20,12,.92);
      color:#fff;
      border:1px solid rgba(255,255,255,.16);
      box-shadow: 0 18px 50px rgba(0,0,0,.30);
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .float-cs-btn:hover{
      transform: translateY(-2px);
      background: rgba(7,20,12,1);
      box-shadow: 0 26px 66px rgba(0,0,0,.36);
    }
    .float-cs-ico{color: rgba(24,211,107,.95)}
    .float-cs-text{font-weight:1100}

    @media (max-width: 980px){
      .hero-inner{grid-template-columns: 1fr; gap:16px}
      .hero-title{font-size:34px}
      .hero-badges{grid-template-columns: 1fr; }
      .hero-right{gap:12px}
      .nav-links{display:none}
      .nav-toggle{display:flex}
      .mobile-menu{display:block}
      .mobile-menu{max-height:0; overflow:hidden; transition:max-height .25s ease}
      .mobile-menu.open{max-height:520px}
      .mobile-menu[aria-hidden="false"]{max-height:520px}
      .grid-3{grid-template-columns: 1fr; }
      .grid-4{grid-template-columns: 1fr 1fr}
      .two-col{grid-template-columns: 1fr}
      .network-wrap{grid-template-columns: 1fr}
      .network-quick{grid-template-columns: 1fr}
      .process-grid{grid-template-columns: 1fr}
      .case-grid{grid-template-columns: 1fr}
      .case-media{grid-template-columns: 1fr}
      .compare-top{grid-template-columns: 1fr}
      .match-grid{grid-template-columns: 1fr}
      .token-grid{grid-template-columns: 1fr}
      .training-grid{grid-template-columns: 1fr}
      .help-grid{grid-template-columns: 1fr}
      .faq-grid{grid-template-columns: 1fr}
      .wiki-grid{grid-template-columns: 1fr 1fr}
      .news-grid{grid-template-columns: 1fr}
      .review-grid{grid-template-columns: 1fr}
      .contact-grid{grid-template-columns: 1fr}
      .join-grid{grid-template-columns: 1fr}
      .footer-links{gap:18px}
    }

    @media (prefers-reduced-motion: reduce){
      .reveal{transition:none}
      .ring,.spark,.map-node,.map-pulse{animation:none}
      html:focus-within{scroll-behavior:auto}
    }