:root{
      --bg0:#f6fbf8;
      --bg1:#effaf2;
      --card:#ffffff;
      --text:#14171a;
      --muted:#5a646e;
      --line:rgba(20,23,26,.10);
      --line2:rgba(20,23,26,.14);
      --shadow: 0 10px 30px rgba(16, 24, 40, .08);
      --shadow2: 0 6px 18px rgba(16, 24, 40, .08);
      --green:#20d06c;
      --green2:#16b15a;
      --green3:#0ea85a;
      --accent:#12c76b;
      --accent2:#09b8b3;
      --accentSoft: rgba(18,199,107,.14);
      --radius:16px;
      --radius2:22px;
      --max:1140px;
      --pad:18px;
      --font: ui-sans-serif, system-ui, -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif, "Noto Sans CJK SC";
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--text);
      background: radial-gradient(1200px 700px at 10% -10%, #dffbe9 0%, rgba(223,251,233,0) 55%),
                  radial-gradient(1000px 650px at 90% 10%, rgba(32,208,108,.18) 0%, rgba(32,208,108,0) 55%),
                  linear-gradient(180deg, var(--bg0) 0%, #ffffff 35%, #ffffff 100%);
      min-height:100vh;
      overflow-x:hidden;
    }

    .skip-link{
      position:absolute;
      left:-999px; top:10px;
      background:#0b1220; color:#fff;
      padding:10px 14px;
      border-radius:10px;
      z-index:9999;
    }
    .skip-link:focus{left:12px}

    .bg-wrap{
      position:fixed;
      inset:0;
      pointer-events:none;
      z-index:-1;
      overflow:hidden;
    }
    .grid-glow{
      position:absolute;
      left:50%;
      top:0;
      width:1100px;
      height:650px;
      transform:translateX(-50%);
      background:
        linear-gradient(to right, rgba(32,208,108,.14) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(32,208,108,.12) 1px, transparent 1px);
      background-size:48px 48px;
      mask-image: radial-gradient(circle at 50% 25%, rgba(0,0,0,1) 0%, rgba(0,0,0,.2) 55%, rgba(0,0,0,0) 72%);
      opacity:.85;
    }
    .ring{
      position:absolute;
      border-radius:999px;
      border:1px solid rgba(32,208,108,.22);
      filter: drop-shadow(0 0 22px rgba(32,208,108,.18));
    }
    .ring-1{
      width:520px; height:520px;
      left:-180px; top:110px;
      background: radial-gradient(circle at 30% 30%, rgba(32,208,108,.20), rgba(32,208,108,0) 55%);
    }
    .ring-2{
      width:460px; height:460px;
      right:-180px; top:420px;
      border-color: rgba(9,184,179,.22);
      background: radial-gradient(circle at 60% 40%, rgba(9,184,179,.18), rgba(9,184,179,0) 58%);
    }

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

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background: rgba(246, 251, 248, .70);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(20,23,26,.06);
      transition: box-shadow .2s ease, background .2s ease, border-color .2s ease;
    }
    .site-header[data-elevate="1"]{
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 30px rgba(16, 24, 40, .08);
      border-bottom-color: rgba(20,23,26,.10);
    }
    .header-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }

    .brand-link{display:inline-flex; align-items:center; gap:10px; text-decoration:none; color:inherit}
    .ai-page-logo{max-height:34px; width:auto; display:block}

    .nav{display:flex; align-items:center; gap:14px; min-width:0}
    .nav-toggle{
      display:none;
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid var(--line2);
      background:rgba(255,255,255,.7);
      color:var(--text);
      cursor:pointer;
      align-items:center;
      justify-content:center;
    }
    .nav-toggle-line{
      display:block;
      width:18px; height:2px;
      background: rgba(20,23,26,.75);
      margin:3px 0;
      border-radius:2px;
    }

    .nav-panel{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      justify-content:flex-end;
      min-width:0;
      max-width:720px;
    }
    .nav-item{
      text-decoration:none;
      color: rgba(20,23,26,.86);
      font-size:13.5px;
      padding:8px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .nav-item:hover{
      background: rgba(32,208,108,.10);
      border-color: rgba(32,208,108,.18);
      transform: translateY(-1px);
    }

    .header-cta{display:flex; align-items:center; gap:10px}

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:12px 16px;
      border-radius:14px;
      border:1px solid transparent;
      cursor:pointer;
      text-decoration:none;
      color: #0b1220;
      font-weight:650;
      letter-spacing:.2px;
      background:transparent;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:active{transform: translateY(1px)}
    .btn-primary{
      background: linear-gradient(135deg, var(--green) 0%, var(--green2) 100%);
      color:#062012;
      box-shadow: 0 10px 25px rgba(32,208,108,.25);
      border-color: rgba(12, 145, 72, .25);
    }
    .btn-primary:hover{
      box-shadow: 0 14px 34px rgba(32,208,108,.30);
      transform: translateY(-1px);
    }
    .btn-ghost{
      background: rgba(255,255,255,.72);
      border-color: rgba(20,23,26,.12);
      color: rgba(20,23,26,.92);
      box-shadow: 0 6px 16px rgba(16,24,40,.06);
    }
    .btn-ghost:hover{
      border-color: rgba(32,208,108,.24);
      box-shadow: 0 10px 22px rgba(16,24,40,.08);
      transform: translateY(-1px);
    }
    .btn-sm{padding:10px 12px; border-radius:12px; font-size:13.5px; font-weight:650}
    .btn-block{width:100%}

    .section{padding:64px 0}
    .section-soft{
      background: linear-gradient(180deg, rgba(32,208,108,.10) 0%, rgba(32,208,108,0) 60%),
                  linear-gradient(180deg, #ffffff 0%, rgba(246,251,248,0) 100%);
    }
    .section-soft2{
      background: linear-gradient(180deg, #ffffff 0%, rgba(239,250,242,.8) 100%);
      border-top:1px solid rgba(20,23,26,.04);
      border-bottom:1px solid rgba(20,23,26,.04);
    }

    .section-head{margin-bottom:26px}
    .kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-size:13px;
      color: rgba(20,23,26,.78);
      background: rgba(32,208,108,.10);
      border: 1px solid rgba(32,208,108,.16);
      padding:8px 12px;
      border-radius:999px;
      margin-bottom:12px;
    }
    .h2{
      margin:0;
      font-size:30px;
      line-height:1.15;
      letter-spacing:-.4px;
    }
    .lead{
      margin:10px 0 0;
      color:var(--muted);
      font-size:15.5px;
      line-height:1.7;
      max-width:74ch;
    }

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

    .hero{
      position:relative;
      padding:58px 0 26px;
    }
    .hero-inner{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:22px;
      align-items:start;
      padding-top:6px;
    }

    .pill-row{display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin-bottom:18px}
    .pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(32,208,108,.18);
      box-shadow: 0 10px 20px rgba(16,24,40,.06);
      font-size:13px;
      font-weight:650;
      color: rgba(11,18,32,.92);
    }
    .pill.subtle{
      background: rgba(255,255,255,.60);
      border-color: rgba(20,23,26,.10);
      color: rgba(20,23,26,.80);
      font-weight:600;
    }
    .pill-dot{
      width:10px; height:10px;
      border-radius:50%;
      background: radial-gradient(circle at 30% 30%, #b6ffda 0%, var(--green) 45%, #0e9f53 100%);
      box-shadow: 0 0 0 6px rgba(32,208,108,.12);
    }

    .hero-title{
      margin:0;
      font-size:44px;
      line-height:1.06;
      letter-spacing:-1px;
    }
    .hero-subtitle{
      margin:16px 0 0;
      color: rgba(20,23,26,.74);
      font-size:16px;
      line-height:1.75;
      max-width:62ch;
    }
    .hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:22px}
    .hero-metrics{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
      margin-top:26px;
    }
    .metric{
      background: rgba(255,255,255,.68);
      border:1px solid rgba(20,23,26,.10);
      border-radius:18px;
      padding:14px 14px;
      box-shadow: 0 10px 24px rgba(16,24,40,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .metric:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 42px rgba(16,24,40,.10);
      border-color: rgba(32,208,108,.22);
    }
    .metric-top{display:flex; align-items:center; gap:10px}
    .metric-icon{
      width:28px; height:28px;
      border-radius:12px;
      background: rgba(32,208,108,.12);
      border:1px solid rgba(32,208,108,.18);
      display:flex; align-items:center; justify-content:center;
      font-size:14px;
    }
    .metric-value{font-weight:780; font-size:14.5px; letter-spacing:.2px}
    .metric-desc{margin-top:8px; color: rgba(20,23,26,.64); font-size:13.2px; line-height:1.4}

    .hero-right{display:flex; flex-direction:column; gap:14px}
    .hero-panel{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,23,26,.10);
      border-radius: var(--radius2);
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .hero-panel::before{
      content:"";
      position:absolute;
      inset:-2px;
      background: radial-gradient(600px 300px at 20% -10%, rgba(32,208,108,.22), rgba(32,208,108,0) 55%),
                  radial-gradient(500px 260px at 90% 0%, rgba(9,184,179,.18), rgba(9,184,179,0) 58%);
      pointer-events:none;
      z-index:0;
    }
    .hero-panel > *{position:relative; z-index:1}

    .panel-head{
      display:flex; align-items:center; justify-content:space-between;
      padding:16px 16px 10px;
      border-bottom:1px solid rgba(20,23,26,.06);
    }
    .panel-title{display:flex; align-items:center; gap:10px; font-weight:820}
    .panel-title-dot{
      width:10px; height:10px;
      border-radius:50%;
      background: var(--green);
      box-shadow: 0 0 0 6px rgba(32,208,108,.12);
    }
    .panel-tag{
      font-size:12.5px;
      padding:8px 10px;
      border-radius:999px;
      background: rgba(32,208,108,.12);
      border:1px solid rgba(32,208,108,.18);
      color: rgba(11,18,32,.86);
      font-weight:700;
    }

    .panel-grid{
      padding:14px 16px 10px;
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
    }
    .data-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,23,26,.10);
      border-radius:18px;
      padding:14px 12px;
      box-shadow: 0 10px 24px rgba(16,24,40,.05);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height:92px;
    }
    .data-card:hover{
      transform: translateY(-2px);
      border-color: rgba(32,208,108,.22);
      box-shadow: 0 18px 40px rgba(16,24,40,.09);
    }
    .data-card.accent{
      border-color: rgba(32,208,108,.24);
      background: linear-gradient(180deg, rgba(32,208,108,.14), rgba(255,255,255,.72));
    }
    .data-card.accent-2{
      border-color: rgba(9,184,179,.22);
      background: linear-gradient(180deg, rgba(9,184,179,.12), rgba(255,255,255,.72));
    }
    .data-label{font-size:12.5px; color: rgba(20,23,26,.62); font-weight:700}
    .data-value{margin-top:8px; font-size:14.5px; font-weight:860; letter-spacing:.2px}
    .data-hint{margin-top:6px; font-size:12.8px; color: rgba(20,23,26,.62); line-height:1.35}

    .panel-actions{
      padding:12px 16px 16px;
      display:grid;
      gap:10px;
    }
    .micro-note{
      margin-top:2px;
      color: rgba(20,23,26,.62);
      font-size:12.8px;
      line-height:1.45;
    }
    .hero-wave{
      margin-top:22px;
      height:26px;
      background: radial-gradient(90px 18px at 18% 0%, rgba(32,208,108,.32), rgba(32,208,108,0) 60%),
                  radial-gradient(110px 18px at 58% 0%, rgba(9,184,179,.24), rgba(9,184,179,0) 60%),
                  radial-gradient(100px 18px at 88% 0%, rgba(32,208,108,.22), rgba(32,208,108,0) 62%);
      opacity:.95;
    }

    .mini-strip{
      background: rgba(255,255,255,.70);
      border:1px solid rgba(20,23,26,.10);
      border-radius: 18px;
      padding:14px 14px;
      box-shadow: var(--shadow2);
    }
    .mini-strip-title{font-weight:850; margin-bottom:10px; color: rgba(20,23,26,.90)}
    .chips{display:flex; flex-wrap:wrap; gap:8px}
    .chip{
      font-size:12.8px;
      padding:8px 10px;
      border-radius:999px;
      background: rgba(32,208,108,.10);
      border:1px solid rgba(32,208,108,.16);
      color: rgba(11,18,32,.88);
      font-weight:720;
    }

    .feature-split{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:14px;
    }
    .card{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,23,26,.10);
      border-radius: var(--radius);
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
      padding:18px 18px;
      position:relative;
      overflow:hidden;
    }
    .accent-border{border-color: rgba(32,208,108,.22)}
    .accent-border2{border-color: rgba(9,184,179,.22)}
    .feature-card::after{
      content:"";
      position:absolute;
      inset:-40px;
      background: radial-gradient(260px 180px at 20% 0%, rgba(32,208,108,.14), rgba(32,208,108,0) 60%);
      pointer-events:none;
      transform: rotate(-6deg);
      opacity:.9;
    }
    .feature-card > *{position:relative; z-index:1}

    .feature-icon{
      width:46px; height:46px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      color: rgba(32,208,108,.95);
      background: rgba(32,208,108,.10);
      border:1px solid rgba(32,208,108,.18);
      margin-bottom:12px;
    }
    .h3{margin:0; font-size:18px; letter-spacing:-.2px}
    .p{margin:10px 0 0; color: rgba(20,23,26,.68); line-height:1.7; font-size:14.5px}
    .bullets{margin-top:12px; display:grid; gap:9px}
    .bullet{display:flex; align-items:flex-start; gap:10px; color: rgba(20,23,26,.74); font-size:13.8px}
    .tick{
      width:16px; height:16px;
      border-radius:6px;
      background: rgba(32,208,108,.12);
      border:1px solid rgba(32,208,108,.18);
      display:inline-flex; align-items:center; justify-content:center;
      margin-top:2px;
      position:relative;
    }
    .tick::after{
      content:"";
      width:8px; height:5px;
      border-left:2px solid rgba(14,168,90,.95);
      border-bottom:2px solid rgba(14,168,90,.95);
      transform: rotate(-45deg);
      position:absolute;
      top:4px; left:3px;
    }

    .trust-row{
      margin-top:16px;
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
    }
    .trust-item{
      padding:14px 14px;
      border-radius:18px;
      border:1px solid rgba(20,23,26,.10);
      background: rgba(255,255,255,.65);
      box-shadow: 0 10px 22px rgba(16,24,40,.05);
    }
    .trust-title{font-weight:860; margin-bottom:8px}
    .trust-desc{color: rgba(20,23,26,.66); font-size:13.6px; line-height:1.5}

    .service-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .service-card{min-height:220px}
    .service-top{display:flex; align-items:center; gap:12px; margin-bottom:10px}
    .service-ico{
      width:44px; height:44px;
      border-radius:16px;
      background: rgba(32,208,108,.10);
      border:1px solid rgba(32,208,108,.18);
      display:flex; align-items:center; justify-content:center;
      color: rgba(32,208,108,.95);
      flex:0 0 auto;
    }
    .list{margin:14px 0 0; padding:0; list-style:none; display:grid; gap:10px}
    .list-bullet{
      width:10px; height:10px;
      border-radius:4px;
      background: rgba(32,208,108,.18);
      border:1px solid rgba(32,208,108,.22);
      display:inline-block;
      margin-right:10px;
    }
    .list li{
      display:flex; align-items:center;
      color: rgba(20,23,26,.70);
      font-size:14px;
    }

    .flow-mini{
      margin-top:14px;
      display:flex; align-items:center; gap:10px;
      flex-wrap:wrap;
    }
    .flow-step{display:flex; align-items:center; gap:10px; background: rgba(255,255,255,.65); border:1px solid rgba(20,23,26,.10); padding:10px 12px; border-radius:16px}
    .flow-dot{width:10px; height:10px; border-radius:50%; background: var(--green); box-shadow:0 0 0 6px rgba(32,208,108,.12)}
    .flow-text{font-weight:820; font-size:13.5px}
    .flow-arrow{color: rgba(20,23,26,.35); font-weight:900}

    .steps-2col{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .step-card{padding:18px 18px; border-radius: var(--radius2)}
    .step-card-title{font-weight:880; margin-bottom:12px}
    .timeline{display:grid; gap:12px}
    .tl-item{display:flex; gap:12px; align-items:flex-start}
    .tl-dot{
      width:14px; height:14px;
      border-radius:6px;
      background: rgba(32,208,108,.16);
      border:1px solid rgba(32,208,108,.25);
      box-shadow: 0 0 0 6px rgba(32,208,108,.10);
      margin-top:4px;
    }
    .tl-head{font-weight:900}
    .tl-desc{margin-top:6px; color: rgba(20,23,26,.66); font-size:13.8px; line-height:1.55}

    .scenario-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:12px;
    }
    .scenario{
      padding:12px 12px;
      border-radius:16px;
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,23,26,.10);
    }
    .scenario-name{font-weight:900; margin-bottom:6px}
    .scenario-desc{color: rgba(20,23,26,.66); font-size:13.5px; line-height:1.5}
    .scenario-actions{margin-top:14px; display:grid; gap:10px}

    .solution-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .sol-card{padding:18px 18px}
    .sol-title{font-weight:920; display:flex; align-items:center; gap:10px; margin-bottom:10px}
    .sol-ico{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(32,208,108,.18);
      background: rgba(32,208,108,.10);
      display:flex; align-items:center; justify-content:center;
      color: rgba(32,208,108,.95);
      font-weight:900;
    }
    .sol-tags{margin-top:12px; display:flex; flex-wrap:wrap; gap:8px}
    .tag{
      font-size:12.5px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,23,26,.10);
      background: rgba(255,255,255,.60);
      color: rgba(20,23,26,.76);
      font-weight:720;
    }

    .cta-band{
      margin-top:18px;
      padding:18px 18px;
      border-radius: var(--radius2);
      border:1px solid rgba(32,208,108,.20);
      background: linear-gradient(135deg, rgba(32,208,108,.14), rgba(255,255,255,.72));
      display:flex; align-items:center; justify-content:space-between; gap:14px;
    }
    .cta-title{font-weight:920; font-size:17px}
    .cta-desc{margin-top:6px; color: rgba(20,23,26,.66); font-size:13.8px; line-height:1.55}
    .cta-band-right{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}

    .process-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .pstep{
      padding:18px 16px;
      border-radius: var(--radius2);
      border:1px solid rgba(20,23,26,.10);
      background: rgba(255,255,255,.66);
      box-shadow: 0 12px 28px rgba(16,24,40,.05);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
      min-height:148px;
    }
    .pstep:hover{
      transform: translateY(-2px);
      border-color: rgba(32,208,108,.22);
      box-shadow: 0 18px 46px rgba(16,24,40,.09);
    }
    .pnum{
      width:46px; height:46px;
      border-radius:18px;
      background: rgba(32,208,108,.12);
      border:1px solid rgba(32,208,108,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color: rgba(11,18,32,.92);
      margin-bottom:10px;
    }
    .ph{font-weight:950; margin-bottom:6px}
    .pd{color: rgba(20,23,26,.66); font-size:13.8px; line-height:1.55}

    .process-note{
      margin-top:14px;
      display:flex; align-items:flex-start; gap:10px;
      color: rgba(20,23,26,.70);
      font-size:13.8px;
      padding:14px 16px;
      border-radius: var(--radius2);
      border:1px dashed rgba(32,208,108,.26);
      background: rgba(32,208,108,.08);
    }
    .note-dot{
      width:10px; height:10px;
      border-radius:50%;
      background: var(--green);
      box-shadow: 0 0 0 6px rgba(32,208,108,.12);
      margin-top:5px;
      flex:0 0 auto;
    }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .case-card{
      padding:18px 16px;
      min-height:230px;
      display:flex; flex-direction:column;
      gap:10px;
      border-radius: var(--radius2);
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,23,26,.10);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .case-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 20px 48px rgba(16,24,40,.10);
      border-color: rgba(32,208,108,.22);
    }
    .case-header{display:flex; align-items:center; justify-content:space-between; gap:10px}
    .case-badge{
      font-size:12.5px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(32,208,108,.18);
      background: rgba(32,208,108,.10);
      font-weight:820;
    }
    .case-meta{font-size:12.5px; color: rgba(20,23,26,.60); font-weight:730}
    .case-title{margin:0; font-size:16.5px; letter-spacing:-.2px}
    .case-desc{margin:0; color: rgba(20,23,26,.66); font-size:13.8px; line-height:1.6}
    .case-footer{margin-top:auto; display:flex; align-items:center; gap:10px; color: rgba(20,23,26,.62); font-size:13.5px}
    .link{
      text-decoration:none;
      color: rgba(13, 150, 78, .98);
      font-weight:820;
      border-bottom:1px solid rgba(13,150,78,.22);
      padding-bottom:2px;
      transition: color .15s ease, border-color .15s ease;
    }
    .link:hover{color: rgba(9,184,179,.95); border-color: rgba(9,184,179,.35)}

    .case-bottom{
      margin-top:16px;
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      padding:18px 18px;
      border-radius: var(--radius2);
      border:1px solid rgba(20,23,26,.10);
      background: rgba(255,255,255,.66);
      box-shadow: 0 14px 34px rgba(16,24,40,.06);
    }
    .case-bottom-title{font-weight:940; font-size:16.8px}
    .case-bottom-desc{margin-top:6px; color: rgba(20,23,26,.66); font-size:13.8px; line-height:1.55}
    .case-bottom-right{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}

    .compare-grid{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:14px;
      align-items:start;
    }
    .rating-card{
      padding:18px 18px;
      border-radius: var(--radius2);
      background: rgba(255,255,255,.74);
      border:1px solid rgba(20,23,26,.10);
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
    }
    .rating-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:14px;
    }
    .stars{letter-spacing:1px; font-size:20px; color: rgba(32,208,108,.95); text-shadow: 0 10px 30px rgba(32,208,108,.25)}
    .rating-score{display:flex; align-items:flex-end; gap:8px}
    .score-num{font-weight:980; font-size:44px; line-height:1}
    .score-max{font-weight:850; color: rgba(20,23,26,.62); padding-bottom:6px}
    .rating-body{display:grid; gap:10px}
    .rating-line{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(20,23,26,.10);
      background: rgba(255,255,255,.60);
    }
    .rl{font-weight:820; color: rgba(20,23,26,.78)}
    .rr{
      font-weight:950;
      color: rgba(13,150,78,.98);
    }

    .table-card{
      padding:18px 18px;
      border-radius: var(--radius2);
      background: rgba(255,255,255,.74);
      border:1px solid rgba(20,23,26,.10);
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
    }
    .table-title{font-weight:950; margin-bottom:10px}
    .table-wrap{
      overflow:auto;
      border-radius:16px;
      border:1px solid rgba(20,23,26,.08);
      background: rgba(255,255,255,.62);
    }
    .compare-table{
      width:100%;
      min-width:740px;
      border-collapse:collapse;
      font-size:14px;
    }
    .compare-table th, .compare-table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(20,23,26,.08);
      text-align:left;
      vertical-align:top;
    }
    .compare-table thead th{
      position:sticky;
      top:0;
      background: linear-gradient(180deg, rgba(32,208,108,.12), rgba(255,255,255,.70));
      color: rgba(20,23,26,.90);
      font-weight:950;
      border-bottom:1px solid rgba(32,208,108,.18);
    }
    .ok{font-weight:900; color: rgba(11,124,63,.98)}
    .muted{font-weight:850; color: rgba(20,23,26,.52)}

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

    .match-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .match-card, .match-side{padding:18px 18px; border-radius: var(--radius2)}
    .match-title{font-weight:980; margin-bottom:14px}
    .form{display:grid; gap:12px}
    .form-row{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
    .field{display:grid; gap:8px}
    .label{font-size:13px; color: rgba(20,23,26,.74); font-weight:820}
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(20,23,26,.12);
      background: rgba(255,255,255,.74);
      color: rgba(20,23,26,.92);
      font-size:14.5px;
      outline:none;
      transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
    }
    input:focus, select:focus, textarea:focus{
      border-color: rgba(32,208,108,.35);
      box-shadow: 0 0 0 5px rgba(32,208,108,.14);
    }
    textarea{resize:vertical; min-height:120px; max-height:260px}
    .form-actions{display:flex; gap:10px; flex-wrap:wrap}
    .form-foot{
      display:flex; align-items:flex-start; gap:10px;
      color: rgba(20,23,26,.66);
      font-size:13.2px;
      line-height:1.55;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(20,23,26,.08);
      background: rgba(255,255,255,.60);
    }
    .shield{
      width:22px; height:22px;
      border-radius:10px;
      background: rgba(32,208,108,.12);
      border:1px solid rgba(32,208,108,.20);
      display:inline-flex; align-items:center; justify-content:center;
      color: rgba(11,124,63,.98);
      font-weight:950;
      flex:0 0 auto;
      margin-top:1px;
    }
    .form-success{
      display:none;
      padding:12px 12px;
      border-radius:16px;
      background: rgba(32,208,108,.12);
      border:1px solid rgba(32,208,108,.20);
      color: rgba(11,124,63,.98);
      font-weight:850;
    }

    .match-side-title{font-weight:980; margin-bottom:12px}
    .side-list{display:grid; gap:12px}
    .side-item{
      padding:14px 14px;
      border-radius:18px;
      border:1px solid rgba(20,23,26,.10);
      background: rgba(255,255,255,.62);
    }
    .side-head{font-weight:950; display:flex; align-items:center; gap:10px; margin-bottom:8px}
    .side-ico{
      width:26px; height:26px;
      border-radius:12px;
      background: rgba(32,208,108,.12);
      border:1px solid rgba(32,208,108,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:980;
      color: rgba(11,124,63,.98);
      flex:0 0 auto;
    }
    .side-desc{color: rgba(20,23,26,.66); font-size:13.8px; line-height:1.55}
    .side-contacts{margin-top:12px; padding-top:12px; border-top:1px solid rgba(20,23,26,.08)}
    .side-contacts-title{font-weight:940; margin-bottom:10px}
    .contact-row{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:10px}
    .contact-chip{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,23,26,.10);
      background: rgba(255,255,255,.66);
      color: rgba(20,23,26,.86);
      font-weight:800;
      font-size:13.2px;
      transition: transform .15s ease, border-color .15s ease;
    }
    .contact-chip:hover{transform: translateY(-1px); border-color: rgba(32,208,108,.22)}
    .side-qcloud{
      margin-top:6px;
      padding:12px 14px;
      border-radius:18px;
      background: rgba(32,208,108,.08);
      border:1px solid rgba(32,208,108,.18);
    }
    .qcloud-row{display:flex; align-items:center; gap:10px}
    .qcloud-dot{width:10px; height:10px; border-radius:50%; background: var(--green); box-shadow:0 0 0 6px rgba(32,208,108,.12)}
    .qcloud-text{color: rgba(20,23,26,.70); font-weight:750; font-size:13.2px}

    .token-grid{
      display:grid;
      grid-template-columns: 1fr 1.1fr;
      gap:14px;
      align-items:start;
    }
    .token-card{
      padding:18px 18px;
      border-radius: var(--radius2);
      background: rgba(255,255,255,.74);
      border:1px solid rgba(20,23,26,.10);
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
    }
    .token-title{font-weight:980; margin-bottom:10px}
    .token-desc{color: rgba(20,23,26,.66); line-height:1.7; font-size:14.2px}
    .token-bullets{margin-top:12px; display:grid; gap:10px}
    .tbullet{display:flex; align-items:flex-start; gap:10px; color: rgba(20,23,26,.72); font-size:13.8px; line-height:1.55}
    .token-actions{margin-top:14px}

    .token-compare{
      padding:18px 18px;
      border-radius: var(--radius2);
      background: rgba(255,255,255,.74);
      border:1px solid rgba(32,208,108,.22);
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
      overflow:hidden;
    }
    .token-tabs{
      display:flex; flex-wrap:wrap; gap:10px;
      margin:10px 0 14px;
    }
    .tab-btn{
      border-radius:999px;
      border:1px solid rgba(20,23,26,.12);
      background: rgba(255,255,255,.66);
      padding:10px 12px;
      font-weight:860;
      cursor:pointer;
      color: rgba(20,23,26,.86);
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .tab-btn:hover{transform: translateY(-1px); border-color: rgba(32,208,108,.22)}
    .tab-btn.active{
      background: rgba(32,208,108,.12);
      border-color: rgba(32,208,108,.28);
      box-shadow: 0 12px 30px rgba(32,208,108,.12);
      color: rgba(11,124,63,.98);
    }

    .tab-panel{animation:fadeIn .25s ease}
    @keyframes fadeIn{from{opacity:.4; transform: translateY(4px)} to{opacity:1; transform: translateY(0)}}

    .mini-table{
      border-radius:16px;
      border:1px solid rgba(20,23,26,.08);
      background: rgba(255,255,255,.62);
      overflow:hidden;
    }
    .mini-row{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:10px;
      padding:12px 12px;
      border-bottom:1px solid rgba(20,23,26,.08);
      align-items:center;
      font-size:14px;
    }
    .mini-row:last-child{border-bottom:none}
    .mini-row.head{
      background: linear-gradient(180deg, rgba(32,208,108,.12), rgba(255,255,255,.70));
      font-weight:980;
      color: rgba(20,23,26,.90);
    }
    .token-bottom{
      margin-top:14px;
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      padding-top:14px;
      border-top:1px solid rgba(20,23,26,.08);
    }
    .tiny-title{font-weight:980}
    .tiny-desc{margin-top:6px; color: rgba(20,23,26,.66); font-size:13.6px; line-height:1.55}

    .steps-2col .step-card{background: rgba(255,255,255,.74)}
    .scenario-actions .btn{justify-content:center}

    .contact-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .contact-card{
      padding:18px 18px;
      border-radius: var(--radius2);
      background: rgba(255,255,255,.74);
      border:1px solid rgba(20,23,26,.10);
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
    }
    .contact-title{font-weight:980; margin-bottom:12px}
    .contact-lines{display:grid; gap:10px; margin-bottom:14px}
    .contact-line{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(20,23,26,.08);
      background: rgba(255,255,255,.62);
    }
    .contact-k{color: rgba(20,23,26,.64); font-weight:850; font-size:13.4px}
    .contact-v{font-weight:950}
    .contact-actions{display:flex; gap:10px; flex-wrap:wrap}
    .contact-mini{margin-top:12px; display:grid; gap:10px}
    .mini-item{display:flex; gap:10px; align-items:center; color: rgba(20,23,26,.70); font-weight:820; font-size:13.8px}
    .mini-ico{
      width:10px; height:10px;
      border-radius:50%;
      background: rgba(32,208,108,.22);
      border:1px solid rgba(32,208,108,.28);
      box-shadow:0 0 0 6px rgba(32,208,108,.10);
    }

    .qr-wrap{
      display:flex; justify-content:flex-start; align-items:center;
      margin-top:8px;
    }
    .qr-img{
      width:140px;
      max-width:100%;
      height:auto;
      border-radius:18px;
      border:1px solid rgba(20,23,26,.12);
      background: rgba(255,255,255,.72);
      box-shadow: 0 18px 46px rgba(16,24,40,.10);
      padding:10px;
    }
    .qr-note{margin-top:12px; color: rgba(20,23,26,.66); line-height:1.6; font-size:13.8px}
    .qr-actions{margin-top:12px; display:grid; gap:10px}

    .training-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .training-card{padding:18px 18px; border-radius: var(--radius2)}
    .training-title{font-weight:980; margin-bottom:12px}
    .training-list{display:grid; gap:10px}
    .train-item{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(20,23,26,.10);
      background: rgba(255,255,255,.62);
      font-weight:860;
      display:flex; align-items:center; gap:10px;
      color: rgba(20,23,26,.86);
    }
    .train-dot{
      width:12px; height:12px;
      border-radius:5px;
      background: rgba(32,208,108,.18);
      border:1px solid rgba(32,208,108,.26);
      box-shadow:0 0 0 6px rgba(32,208,108,.10);
      flex:0 0 auto;
    }
    .training-note{
      margin-top:14px;
      display:flex; gap:10px; align-items:flex-start;
      padding:14px 14px;
      border-radius:18px;
      border:1px dashed rgba(32,208,108,.26);
      background: rgba(32,208,108,.08);
      color: rgba(20,23,26,.68);
      line-height:1.55;
      font-size:13.8px;
    }
    .edu-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .edu-step{
      padding:14px 14px;
      border-radius:18px;
      border:1px solid rgba(20,23,26,.10);
      background: rgba(255,255,255,.62);
    }
    .edu-head{font-weight:980; display:flex; align-items:center; gap:10px; margin-bottom:8px}
    .edu-ico{
      width:26px; height:26px;
      border-radius:12px;
      border:1px solid rgba(32,208,108,.18);
      background: rgba(32,208,108,.10);
      display:flex; align-items:center; justify-content:center;
      color: rgba(32,208,108,.95);
    }
    .edu-desc{color: rgba(20,23,26,.66); font-size:13.6px; line-height:1.5}
    .edu-actions{margin-top:14px; display:grid; gap:10px}

    .network-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .network-card{padding:18px 18px; border-radius: var(--radius2)}
    .network-title{font-weight:980; margin-bottom:10px}
    .network-map{
      position:relative;
      border-radius: var(--radius2);
      border:1px solid rgba(20,23,26,.10);
      background:
        radial-gradient(600px 260px at 30% 0%, rgba(32,208,108,.14), rgba(32,208,108,0) 60%),
        radial-gradient(520px 260px at 80% 20%, rgba(9,184,179,.12), rgba(9,184,179,0) 62%),
        rgba(255,255,255,.60);
      height:260px;
      box-shadow: 0 18px 46px rgba(16,24,40,.08);
      overflow:hidden;
      display:flex; align-items:center; justify-content:center;
    }
    .map-dot{position:absolute; width:14px; height:14px; border-radius:6px; background: rgba(32,208,108,.22); border:1px solid rgba(32,208,108,.30); box-shadow:0 0 0 8px rgba(32,208,108,.10)}
    .d1{left:18%; top:44%}
    .d2{left:40%; top:30%}
    .d3{left:64%; top:46%}
    .d4{left:78%; top:30%}
    .map-line{
      position:absolute; inset:-20px;
      background: linear-gradient(115deg, rgba(32,208,108,.0) 0%, rgba(32,208,108,.20) 35%, rgba(9,184,179,.18) 62%, rgba(32,208,108,0) 90%);
      opacity:.35;
      transform: rotate(-8deg);
      mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,0) 70%);
    }
    .map-center{position:relative; z-index:1; text-align:center}
    .map-city{font-weight:980; font-size:20px; letter-spacing:-.2px}
    .map-sub{margin-top:8px; color: rgba(20,23,26,.66); font-size:13.8px; line-height:1.55}
    .network-list{margin-top:12px; display:grid; gap:10px}
    .net-item{display:flex; gap:10px; align-items:center; font-weight:860; color: rgba(20,23,26,.78)}
    .net-ico{
      width:22px; height:22px;
      border-radius:10px;
      background: rgba(32,208,108,.12);
      border:1px solid rgba(32,208,108,.18);
      display:flex; align-items:center; justify-content:center;
      color: rgba(11,124,63,.98);
      flex:0 0 auto;
      font-size:12px;
    }

    .agent-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:12px;
    }
    .agent-item{
      padding:14px 14px;
      border-radius:18px;
      border:1px solid rgba(20,23,26,.10);
      background: rgba(255,255,255,.62);
    }
    .agent-head{font-weight:980; margin-bottom:8px}
    .agent-desc{color: rgba(20,23,26,.66); font-size:13.6px; line-height:1.5}
    .network-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-start}

    .article-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .article-card{
      padding:18px 16px;
      border-radius: var(--radius2);
      border:1px solid rgba(20,23,26,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
      min-height:230px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex; flex-direction:column; gap:10px;
    }
    .article-card:hover{transform: translateY(-2px); border-color: rgba(32,208,108,.22); box-shadow: 0 20px 46px rgba(16,24,40,.10)}
    .article-top{display:flex; align-items:center; justify-content:space-between; gap:10px}
    .article-badge{
      font-size:12.5px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(32,208,108,.18);
      background: rgba(32,208,108,.10);
      font-weight:900;
    }
    .article-time{font-size:12.5px; color: rgba(20,23,26,.60); font-weight:750}
    .article-title{margin:0; font-size:16.4px; letter-spacing:-.2px; line-height:1.25}
    .article-desc{margin:0; color: rgba(20,23,26,.66); font-size:13.8px; line-height:1.6}
    .article-actions{margin-top:auto}

    .articles-links{
      margin-top:14px;
      padding:14px 16px;
      border-radius: var(--radius2);
      border:1px solid rgba(20,23,26,.10);
      background: rgba(255,255,255,.66);
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      flex-wrap:wrap;
    }
    .links-title{font-weight:980}
    .links-list{display:flex; flex-wrap:wrap; gap:12px}
    .text-link{
      color: rgba(13,150,78,.98);
      font-weight:850;
      text-decoration:none;
      border-bottom:1px solid rgba(13,150,78,.22);
      padding-bottom:2px;
    }
    .text-link:hover{color: rgba(9,184,179,.95); border-color: rgba(9,184,179,.35)}

    .wiki-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .wiki-card{
      padding:18px 16px;
      border-radius: var(--radius2);
      border:1px solid rgba(20,23,26,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
      transition: transform .2s ease, border-color .2s ease;
      min-height:180px;
    }
    .wiki-card:hover{transform: translateY(-2px); border-color: rgba(32,208,108,.22)}
    .wiki-head{display:flex; align-items:center; gap:10px; font-weight:980; margin-bottom:10px}
    .wiki-ico{
      width:40px; height:40px;
      border-radius:16px;
      background: rgba(32,208,108,.10);
      border:1px solid rgba(32,208,108,.18);
      display:flex; align-items:center; justify-content:center;
      color: rgba(32,208,108,.95);
    }

    .faq-wrap{
      padding:10px 0 0;
      border-radius: var(--radius2);
      border:1px solid rgba(20,23,26,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
    }
    .faq-item{
      padding:0 16px;
      border-bottom:1px solid rgba(20,23,26,.08);
    }
    .faq-item:last-child{border-bottom:none}
    .faq-summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:14px 0;
      font-weight:900;
      color: rgba(20,23,26,.90);
      font-size:15.2px;
    }
    .faq-summary::-webkit-details-marker{display:none}
    .faq-icon{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(20,23,26,.10);
      background: rgba(255,255,255,.64);
      display:flex; align-items:center; justify-content:center;
      font-size:18px;
      color: rgba(20,23,26,.68);
      flex:0 0 auto;
    }
    details[open] .faq-icon{
      border-color: rgba(32,208,108,.22);
      color: rgba(11,124,63,.98);
      background: rgba(32,208,108,.10);
    }
    .faq-body{
      padding:0 0 16px 0;
      color: rgba(20,23,26,.68);
      line-height:1.75;
      font-size:14.2px;
    }

    .help-quick{
      margin-top:14px;
      padding:18px 18px;
      border-radius: var(--radius2);
      border:1px solid rgba(32,208,108,.20);
      background: linear-gradient(135deg, rgba(32,208,108,.14), rgba(255,255,255,.70));
      display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
    }
    .help-title{font-weight:980; font-size:16.8px}
    .help-desc{margin-top:6px; color: rgba(20,23,26,.66); font-size:13.8px; line-height:1.55}
    .help-right{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}

    .help-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .help-tile{
      padding:18px 16px;
      border-radius: var(--radius2);
      border:1px solid rgba(20,23,26,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
      text-decoration:none;
      color: inherit;
      display:flex; align-items:center; gap:12px;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
      min-height:92px;
    }
    .help-tile:hover{transform: translateY(-2px); border-color: rgba(32,208,108,.22); box-shadow: 0 20px 46px rgba(16,24,40,.10)}
    .help-ico{
      width:44px; height:44px;
      border-radius:18px;
      background: rgba(32,208,108,.10);
      border:1px solid rgba(32,208,108,.18);
      display:flex; align-items:center; justify-content:center;
      color: rgba(32,208,108,.95);
      font-weight:980;
      flex:0 0 auto;
    }
    .help-texts{display:grid; gap:6px}
    .help-title{font-weight:980}
    .help-desc{color: rgba(20,23,26,.66); font-size:13.5px; line-height:1.45}

    .review-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .review-card{
      padding:18px 16px;
      border-radius: var(--radius2);
      border:1px solid rgba(20,23,26,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
      transition: transform .2s ease, border-color .2s ease;
      min-height:220px;
    }
    .review-card:hover{transform: translateY(-2px); border-color: rgba(32,208,108,.22)}
    .review-head{display:flex; align-items:center; gap:12px; margin-bottom:12px}
    .review-avatar{
      width:44px; height:44px;
      border-radius:18px;
      border:1px solid rgba(32,208,108,.18);
      background: rgba(32,208,108,.10);
      display:flex; align-items:center; justify-content:center;
      font-weight:980;
      color: rgba(11,124,63,.98);
      flex:0 0 auto;
    }
    .review-name{font-weight:980}
    .review-meta{margin-top:3px; color: rgba(20,23,26,.62); font-weight:800; font-size:13.2px}
    .review-text{margin:0; color: rgba(20,23,26,.68); line-height:1.75; font-size:14.2px}

    .join-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .join-card{
      padding:18px 18px;
      border-radius: var(--radius2);
      border:1px solid rgba(20,23,26,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
    }
    .join-title{font-weight:980; margin-bottom:12px}
    .join-list{display:grid; gap:10px}
    .join-item{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(20,23,26,.10);
      background: rgba(255,255,255,.62);
      font-weight:860;
      display:flex; align-items:center; gap:10px;
      color: rgba(20,23,26,.86);
    }
    .join-dot{
      width:12px; height:12px;
      border-radius:5px;
      background: rgba(32,208,108,.18);
      border:1px solid rgba(32,208,108,.26);
      box-shadow:0 0 0 6px rgba(32,208,108,.10);
      flex:0 0 auto;
    }
    .join-note{
      margin-top:14px;
      padding:14px 14px;
      border-radius:18px;
      border:1px dashed rgba(32,208,108,.26);
      background: rgba(32,208,108,.08);
      color: rgba(20,23,26,.68);
      line-height:1.55;
      font-size:13.8px;
      display:flex; gap:10px; align-items:flex-start;
    }
    .join-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}
    .value-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:12px;
    }
    .value-item{
      padding:14px 14px;
      border-radius:18px;
      border:1px solid rgba(20,23,26,.10);
      background: rgba(255,255,255,.62);
    }
    .value-head{font-weight:980; margin-bottom:8px}
    .value-desc{color: rgba(20,23,26,.66); font-size:13.6px; line-height:1.5}
    .join-cta{
      margin-top:14px;
      padding-top:14px;
      border-top:1px solid rgba(20,23,26,.08);
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px; flex-wrap:wrap;
    }

    .partners-line{
      margin-top:14px;
      padding:16px 16px;
      border-radius: var(--radius2);
      border:1px solid rgba(20,23,26,.10);
      background: rgba(255,255,255,.66);
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
    }
    .partners-title{font-weight:980; margin-bottom:10px}
    .partners-links{
      display:flex; flex-wrap:wrap; gap:12px;
      margin-bottom:10px;
    }
    .partners-links a{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,23,26,.10);
      background: rgba(255,255,255,.60);
      color: rgba(20,23,26,.84);
      font-weight:850;
      font-size:13.2px;
      transition: transform .15s ease, border-color .15s ease;
    }
    .partners-links a:hover{transform: translateY(-1px); border-color: rgba(32,208,108,.22)}
    .partners-sub{color: rgba(20,23,26,.64); font-weight:780; font-size:13.2px}

    .site-footer{
      background: #0e2a1a;
      color:#eaf7f0;
      border-top:1px solid rgba(255,255,255,.08);
      padding:30px 0 24px;
    }
    .footer-inner{padding:0 var(--pad)}
    .footer-top{
      display:grid;
      grid-template-columns: 1.2fr 1fr 1fr 1fr;
      gap:16px;
      align-items:start;
      margin-bottom:18px;
    }
    .footer-logo-img{max-width:120px; height:auto; display:block; filter: drop-shadow(0 10px 18px rgba(0,0,0,.25))}
    .footer-brand-name{font-weight:980; font-size:18px; margin-top:8px}
    .footer-brand-sub{margin-top:6px; color: rgba(234,247,240,.78); font-weight:780; font-size:13.4px}

    .footer-col{min-width:0}
    .footer-title{font-weight:980; margin-bottom:10px; color:#eaf7f0}
    .footer-links{display:grid; gap:10px}
    .footer-links a{
      text-decoration:none;
      color: rgba(234,247,240,.86);
      font-weight:780;
      font-size:13.8px;
      border-bottom:1px solid transparent;
      padding-bottom:2px;
      transition: color .15s ease, border-color .15s ease;
    }
    .footer-links a:hover{
      color:#ffffff;
      border-color: rgba(32,208,108,.45);
    }

    .footer-bottom{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding-top:16px;
      border-top:1px solid rgba(255,255,255,.10);
      flex-wrap:wrap;
    }
    .copyright{color: rgba(234,247,240,.74); font-weight:760; font-size:13.2px}
    .footer-right{display:flex; align-items:center; gap:10px}
    .dot-sep{
      width:6px; height:6px;
      border-radius:50%;
      background: rgba(32,208,108,.70);
      display:inline-block;
    }
    .ai-page-home-link{
      text-decoration:none;
      color: rgba(234,247,240,.88);
      font-weight:900;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
    }
    .ai-page-home-link:hover{border-color: rgba(32,208,108,.45); background: rgba(32,208,108,.12); color:#fff}
    .back-top{
      text-decoration:none;
      color: rgba(234,247,240,.88);
      font-weight:900;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
    }
    .back-top:hover{border-color: rgba(32,208,108,.45); background: rgba(32,208,108,.12); color:#fff}

    .float-kefu{
      position:fixed;
      right:14px;
      bottom:18px;
      z-index:60;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
      pointer-events:none;
    }
    .float-kefu-btn, .float-quick{
      pointer-events:auto;
    }
    .float-kefu-btn{
      display:flex; align-items:center; gap:10px;
      padding:12px 14px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(14,42,26,.88);
      color:#eaf7f0;
      box-shadow: 0 18px 46px rgba(0,0,0,.18);
      text-decoration:none;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .float-kefu-btn:hover{transform: translateY(-2px); border-color: rgba(32,208,108,.45); box-shadow: 0 22px 60px rgba(0,0,0,.22)}
    .float-kefu-icon{color: #7dffb6}
    .float-kefu-text{font-weight:980}
    .float-quick{
      text-decoration:none;
      padding:10px 12px;
      border-radius:16px;
      background: rgba(255,255,255,.88);
      border:1px solid rgba(32,208,108,.24);
      color: rgba(11,124,63,.98);
      font-weight:980;
      box-shadow: 0 14px 34px rgba(16,24,40,.10);
      transition: transform .15s ease, border-color .15s ease;
      text-align:center;
      width:120px;
    }
    .float-quick:hover{transform: translateY(-2px); border-color: rgba(32,208,108,.35)}

    .to-top{
      position:fixed;
      right:14px;
      bottom:160px;
      width:42px; height:42px;
      border-radius:16px;
      border:1px solid rgba(20,23,26,.12);
      background: rgba(255,255,255,.86);
      box-shadow: 0 16px 38px rgba(16,24,40,.14);
      color: rgba(20,23,26,.84);
      cursor:pointer;
      opacity:0;
      transform: translateY(10px);
      transition: opacity .18s ease, transform .18s ease, border-color .18s ease, background .18s ease;
      z-index:60;
      font-weight:980;
    }
    .to-top:hover{border-color: rgba(32,208,108,.30); background: rgba(32,208,108,.10); color: rgba(11,124,63,.98)}

    @media (max-width: 980px){
      .hero-inner{grid-template-columns: 1fr; gap:14px}
      .hero-metrics{grid-template-columns: 1fr; }
      .service-grid{grid-template-columns: 1fr; }
      .feature-split{grid-template-columns: 1fr; }
      .trust-row{grid-template-columns: 1fr 1fr; }
      .steps-2col{grid-template-columns: 1fr}
      .solution-grid{grid-template-columns: 1fr 1fr}
      .process-grid{grid-template-columns: 1fr 1fr}
      .case-grid{grid-template-columns: 1fr 1fr}
      .compare-grid{grid-template-columns: 1fr}
      .match-grid{grid-template-columns: 1fr}
      .token-grid{grid-template-columns: 1fr}
      .article-grid{grid-template-columns: 1fr 1fr}
      .wiki-grid{grid-template-columns: 1fr 1fr}
      .review-grid{grid-template-columns: 1fr}
      .training-grid{grid-template-columns: 1fr}
      .network-grid{grid-template-columns: 1fr}
      .contact-grid{grid-template-columns: 1fr}
      .help-grid{grid-template-columns: 1fr}
      .join-grid{grid-template-columns: 1fr}
      .footer-top{grid-template-columns: 1fr 1fr; }
      .to-top{bottom:160px}
      .float-kefu{right:10px}
    }

    @media (max-width: 720px){
      .nav-toggle{display:inline-flex}
      .nav-panel{
        display:none;
        position:absolute;
        top:64px;
        left: 0;
        right: 0;
        margin: 0 auto;
        max-width: var(--max);
        padding: 12px var(--pad) 16px;
        justify-content:flex-start;
        flex-direction:column;
        gap:10px;
        background: rgba(255,255,255,.92);
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
        border:1px solid rgba(20,23,26,.10);
        box-shadow: 0 18px 46px rgba(16,24,40,.14);
      }
      .nav-panel.open{display:flex}
      .nav-item{width:100%; border:1px solid rgba(20,23,26,.08); background: rgba(255,255,255,.66)}
      .header-cta{display:none}
      .hero-title{font-size:36px}
      .h2{font-size:26px}
      .hero-actions{gap:10px}
      .form-row{grid-template-columns: 1fr}
      .mini-row{grid-template-columns: 1fr}
      .service-card, .case-card, .article-card, .wiki-card, .review-card{min-height:unset}
      .footer-top{grid-template-columns: 1fr}
    }