:root{
      --bg0:#f6fbf7;
      --bg1:#f1fff1;
      --card:#ffffff;
      --text:#0e1a13;
      --muted:#4a5b52;
      --muted2:#6a7a71;
      --line:rgba(12, 28, 19, .10);
      --line2:rgba(12, 28, 19, .14);
      --green:#18c36a;
      --green2:#0fb860;
      --lime:#b8ff4f;
      --mint:#d7ffe3;
      --shadow: 0 14px 40px rgba(10, 60, 33, .12);
      --shadow2: 0 10px 28px rgba(10, 60, 33, .10);
      --radius:18px;
      --radius2:14px;
      --radius3:12px;
      --container: 1120px;
      --headerH: 72px;
      --focus: 0 0 0 4px rgba(24,195,106,.18);
      --btnText:#062114;
      --btnBg: linear-gradient(135deg, #20e07a 0%, #0fb860 55%, #16c86b 100%);
      --chipBg: rgba(24,195,106,.10);
      --chipBorder: rgba(24,195,106,.26);
      --heroEdge: rgba(24,195,106,.34);
      --accentGrad: linear-gradient(90deg, rgba(184,255,79,.24), rgba(24,195,106,.14));
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 700px at 15% 0%, rgba(24,195,106,.16), transparent 60%),
        radial-gradient(900px 520px at 85% 10%, rgba(184,255,79,.16), transparent 55%),
        linear-gradient(180deg, var(--bg0), #ffffff 55%, #f8fff9 100%);
      overflow-x:hidden;
    }

    a{color:inherit; text-decoration:none}
    a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
      outline:none;
      box-shadow: var(--focus);
      border-color: rgba(24,195,106,.55) !important;
    }

    .container{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
    }

    .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; z-index:1000;
      background:#fff; padding:10px 12px; border-radius:10px; border:1px solid var(--line2);
      box-shadow: var(--shadow2);
    }

    header{
      position:sticky; top:0; z-index:50;
      background: rgba(246, 251, 247, .72);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(12,28,19,.08);
    }
    .nav-wrap{
      height: var(--headerH);
      display:flex; align-items:center; justify-content:space-between;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width: 220px;
    }
    .logo{
      width:40px; height:40px; border-radius:12px;
      display:grid; place-items:center;
      background: linear-gradient(135deg, rgba(24,195,106,.18), rgba(184,255,79,.22));
      border:1px solid rgba(24,195,106,.28);
      overflow:hidden;
    }
    .logo img{display:block; width:100%; height:auto}
    .brand-text{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand-text strong{
      font-size:14px;
      letter-spacing:.2px;
    }
    .brand-text span{
      font-size:12px; color:var(--muted2);
      margin-top:4px;
    }

    .nav-right{
      display:flex; align-items:center; gap:10px;
    }

    .nav-links{
      display:flex; align-items:center; gap:14px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(12,28,19,.10);
      background: rgba(255,255,255,.65);
    }
    .nav-links a{
      font-size:13px; color:rgba(14,26,19,.86);
      padding:8px 10px; border-radius:999px;
      transition: transform .15s ease, background .15s ease, color .15s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background: rgba(24,195,106,.10);
      transform: translateY(-1px);
      color:#0a2418;
    }

    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      border-radius:999px;
      padding:11px 14px;
      font-weight:700; font-size:13px;
      border:1px solid rgba(12,28,19,.12);
      background: rgba(255,255,255,.75);
      color:#0d2418;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
      cursor:pointer;
      user-select:none;
    }
    .btn:hover{transform: translateY(-1px); box-shadow: 0 10px 22px rgba(10,60,33,.12); border-color: rgba(24,195,106,.35)}
    .btn:active{transform: translateY(0)}
    .btn-primary{
      background: var(--btnBg);
      border-color: rgba(10,70,36,.22);
      color: var(--btnText);
      box-shadow: 0 14px 30px rgba(24,195,106,.20);
    }
    .btn-primary:hover{box-shadow: 0 18px 44px rgba(24,195,106,.25)}
    .btn-ghost{
      background: rgba(255,255,255,.70);
    }

    .icon{
      width:18px; height:18px; display:inline-block;
    }

    .menu-btn{
      display:none;
      width:44px; height:44px;
      border-radius:12px;
      border:1px solid rgba(12,28,19,.12);
      background: rgba(255,255,255,.75);
      cursor:pointer;
      align-items:center; justify-content:center;
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .menu-btn:hover{transform: translateY(-1px); box-shadow: 0 10px 22px rgba(10,60,33,.12)}
    .menu-btn svg{display:block}
    .mobile-drawer{
      display:none;
      position:fixed; inset:0;
      z-index:80;
      background: rgba(4, 13, 8, .35);
      backdrop-filter: blur(8px);
      padding: 12px;
    }
    .drawer-panel{
      width:min(560px, 100%);
      margin: 0 auto;
      background: #ffffff;
      border-radius: 20px;
      border: 1px solid rgba(12,28,19,.12);
      box-shadow: var(--shadow);
      overflow:hidden;
      transform-origin: top center;
      animation: popIn .18s ease both;
    }
    @keyframes popIn{
      from{transform: translateY(-6px) scale(.98); opacity:.0}
      to{transform: translateY(0) scale(1); opacity:1}
    }
    .drawer-head{
      padding: 14px 16px;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      border-bottom: 1px solid rgba(12,28,19,.08);
      background: linear-gradient(180deg, rgba(24,195,106,.12), rgba(255,255,255,1));
    }
    .drawer-body{
      padding: 12px;
      display:flex; flex-direction:column; gap:10px;
    }
    .drawer-links{
      display:flex; flex-direction:column; gap:8px;
    }
    .drawer-links a{
      padding:12px 12px;
      border-radius:14px;
      border: 1px solid rgba(12,28,19,.10);
      background: rgba(246, 251, 247, .55);
      font-weight:700;
      font-size:14px;
    }
    .drawer-actions{
      display:flex; gap:10px; flex-wrap:wrap;
      padding-top:6px;
    }

    main{
      padding-bottom: 30px;
    }

    .hero{
      position:relative;
      padding: 26px 0 6px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 18px;
      align-items:stretch;
    }
    .hero-card{
      border-radius: var(--radius);
      border: 1px solid rgba(24,195,106,.26);
      background:
        radial-gradient(950px 520px at 0% 0%, rgba(24,195,106,.22), transparent 58%),
        radial-gradient(700px 460px at 75% 10%, rgba(184,255,79,.18), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.76));
      box-shadow: 0 24px 70px rgba(24,195,106,.10);
      overflow:hidden;
      position:relative;
    }
    .hero-card::before{
      content:"";
      position:absolute; inset:-2px;
      background: linear-gradient(135deg, rgba(184,255,79,.45), rgba(24,195,106,.18), rgba(184,255,79,.25));
      opacity:.12;
      pointer-events:none;
    }
    .hero-inner{
      position:relative;
      padding: 22px 22px 18px;
      display:flex; flex-direction:column; gap:14px;
      min-height: 340px;
    }

    .kicker{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
    }
    .chip{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background: var(--chipBg);
      border: 1px solid var(--chipBorder);
      color:#08301b;
      font-weight:800;
      font-size:13px;
      letter-spacing:.2px;
    }
    .chip .dot{
      width:8px; height:8px; border-radius:999px; background: var(--green2);
      box-shadow: 0 0 0 3px rgba(24,195,106,.18);
    }
    .kicker .tag{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(12,28,19,.10);
      color: rgba(14,26,19,.82);
      font-weight:800; font-size:13px;
    }

    .hero h1{
      margin: 2px 0 0;
      font-size: clamp(22px, 3.0vw, 34px);
      letter-spacing: -0.6px;
      line-height:1.16;
    }
    .hero p{
      margin:0;
      color: var(--muted);
      font-size: 15px;
      line-height:1.7;
      max-width: 60ch;
    }
    .hero-actions{
      display:flex; gap:12px; flex-wrap:wrap; align-items:center;
      padding-top:6px;
    }
    .hero-note{
      display:flex; gap:10px; align-items:flex-start;
      padding: 10px 12px;
      border-radius: 14px;
      background: rgba(255,255,255,.70);
      border: 1px solid rgba(12,28,19,.10);
      margin-top: 6px;
      max-width: 520px;
    }
    .hero-note b{display:block; font-size:13px}
    .hero-note span{display:block; margin-top:4px; color:var(--muted2); font-size:12.5px; line-height:1.5}
    .hero-note .badge{
      width:34px; height:34px; border-radius:12px;
      background: rgba(24,195,106,.12);
      border: 1px solid rgba(24,195,106,.26);
      display:grid; place-items:center;
      flex: 0 0 auto;
    }

    .hero-side{
      border-radius: var(--radius);
      border: 1px solid rgba(12,28,19,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.72));
      box-shadow: 0 16px 50px rgba(10,60,33,.08);
      overflow:hidden;
      position:relative;
      min-height: 340px;
    }
    .hero-side::after{
      content:"";
      position:absolute; inset:-40px -60px auto auto;
      width:220px; height:220px;
      background: radial-gradient(circle at 30% 30%, rgba(184,255,79,.42), rgba(24,195,106,.14), transparent 62%);
      pointer-events:none;
      opacity:.9;
      transform: rotate(16deg);
    }
    .side-inner{
      position:relative;
      padding: 18px 18px 16px;
      display:flex; flex-direction:column; gap:14px;
      height:100%;
    }
    .side-title{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .side-title h2{
      margin:0;
      font-size:16px; letter-spacing:-.2px;
    }
    .pulse{
      width:38px; height:38px; border-radius:14px;
      background: rgba(24,195,106,.12);
      border:1px solid rgba(24,195,106,.26);
      position:relative;
      display:grid; place-items:center;
      overflow:hidden;
    }
    .pulse::before{
      content:"";
      position:absolute; inset:0;
      background: radial-gradient(circle at 30% 30%, rgba(184,255,79,.55), transparent 60%);
      animation: glowPulse 2.2s ease-in-out infinite;
      opacity:.75;
    }
    @keyframes glowPulse{
      0%,100%{transform: scale(.96); opacity:.55}
      50%{transform: scale(1.05); opacity:.95}
    }

    .side-stats{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      align-items:stretch;
    }
    .stat{
      border-radius: 16px;
      border: 1px solid rgba(12,28,19,.10);
      background: rgba(246, 251, 247, .65);
      padding: 12px 12px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height: 90px;
      display:flex; flex-direction:column; justify-content:space-between;
    }
    .stat:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 40px rgba(10,60,33,.10);
      border-color: rgba(24,195,106,.30);
    }
    .stat b{
      font-size: 18px; letter-spacing:-.3px;
    }
    .stat span{
      color: var(--muted2);
      font-size: 12.5px;
      line-height:1.4;
      margin-top:6px;
    }
    .side-list{
      border-top: 1px dashed rgba(12,28,19,.14);
      padding-top: 12px;
      margin-top: 2px;
      display:flex; flex-direction:column; gap:10px;
    }
    .mini-row{
      display:flex; align-items:flex-start; gap:10px;
    }
    .mini-ic{
      width:28px; height:28px; border-radius:11px;
      background: rgba(24,195,106,.11);
      border: 1px solid rgba(24,195,106,.25);
      display:grid; place-items:center;
      flex: 0 0 auto;
      margin-top:2px;
    }
    .mini-row b{font-size:13px; display:block}
    .mini-row span{font-size:12.5px; color:var(--muted2); line-height:1.5; display:block; margin-top:4px}

    section{
      padding: 26px 0;
    }
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
      margin-bottom: 14px;
    }
    .section-head h2{
      margin:0;
      font-size: 20px;
      letter-spacing: -.35px;
      line-height:1.25;
    }
    .section-head p{
      margin:0;
      color: var(--muted);
      font-size: 14px;
      line-height:1.7;
      max-width: 60ch;
    }
    .divider{
      height:1px; background: rgba(12,28,19,.10);
      margin-top: 18px;
    }

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      align-items:stretch;
    }
    .grid-2{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      align-items:stretch;
    }

    .card{
      border-radius: var(--radius2);
      border: 1px solid rgba(12,28,19,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 22px rgba(10,60,33,.06);
      padding: 16px 16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(10,60,33,.12);
      border-color: rgba(24,195,106,.30);
    }
    .card h3{
      margin: 0 0 8px;
      font-size: 15px;
      letter-spacing:-.2px;
      line-height:1.3;
    }
    .card p{
      margin:0;
      color: var(--muted);
      font-size: 13.5px;
      line-height:1.65;
    }
    .card .topline{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom: 10px;
    }
    .ic-wrap{
      width:40px; height:40px; border-radius:16px;
      display:grid; place-items:center;
      border:1px solid rgba(24,195,106,.26);
      background: linear-gradient(180deg, rgba(24,195,106,.13), rgba(255,255,255,.75));
    }
    .ic-wrap svg{opacity:.95}

    .list{
      margin: 10px 0 0;
      padding:0;
      list-style:none;
      display:flex; flex-direction:column; gap:10px;
    }
    .list li{
      display:flex; gap:10px; align-items:flex-start;
      color: rgba(14,26,19,.86);
      font-size: 13.5px;
      line-height:1.5;
    }
    .check{
      width:18px; height:18px; flex:0 0 auto;
      border-radius:6px;
      background: rgba(24,195,106,.14);
      border:1px solid rgba(24,195,106,.28);
      display:grid; place-items:center;
      margin-top:1px;
    }

    .timeline{
      border-radius: var(--radius);
      border: 1px solid rgba(12,28,19,.10);
      background: rgba(255,255,255,.72);
      padding: 16px;
      box-shadow: 0 14px 34px rgba(10,60,33,.07);
    }
    .steps{
      display:grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 10px;
    }
    .step{
      border-radius: 16px;
      border: 1px solid rgba(12,28,19,.10);
      background: rgba(246,251,247,.60);
      padding: 12px 12px;
      min-height: 150px;
      display:flex; flex-direction:column; gap:10px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .step:hover{
      transform: translateY(-2px);
      border-color: rgba(24,195,106,.30);
      box-shadow: 0 18px 44px rgba(10,60,33,.10);
    }
    .step .num{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(24,195,106,.28);
      background: rgba(24,195,106,.12);
      display:grid; place-items:center;
      font-weight:900;
    }
    .step b{font-size:14px; letter-spacing:-.2px}
    .step span{font-size:12.8px; color:var(--muted2); line-height:1.55}

    .compare-wrap{
      border-radius: var(--radius);
      border: 1px solid rgba(24,195,106,.22);
      background:
        radial-gradient(850px 420px at 0% 0%, rgba(24,195,106,.16), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.74));
      padding: 16px;
      box-shadow: 0 18px 50px rgba(24,195,106,.08);
    }
    .rating-bar{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      padding: 6px 2px 14px;
    }
    .rating-left{
      display:flex; align-items:center; gap:12px; flex-wrap:wrap;
    }
    .stars{
      display:flex; align-items:center; gap:6px;
    }
    .stars svg{width:18px; height:18px}
    .rating-left .score{
      display:flex; flex-direction:column; gap:4px;
    }
    .rating-left .score b{font-size:20px; letter-spacing:-.3px}
    .rating-left .score span{font-size:13px; color:var(--muted2)}
    .rating-right{
      display:flex; gap:10px; flex-wrap:wrap;
      align-items:center;
    }
    .pill{
      border-radius:999px;
      border:1px solid rgba(12,28,19,.10);
      background: rgba(255,255,255,.70);
      padding:8px 12px;
      font-weight:800;
      font-size:13px;
      color: rgba(14,26,19,.86);
      white-space:nowrap;
    }

    .compare-table{
      width:100%;
      border-collapse: separate;
      border-spacing: 0;
      overflow:hidden;
      border-radius: 16px;
      border:1px solid rgba(12,28,19,.10);
      background: rgba(255,255,255,.78);
    }
    .compare-table thead th{
      text-align:left;
      padding: 12px 12px;
      font-size: 13px;
      color: rgba(14,26,19,.86);
      background: rgba(246,251,247,.70);
      border-bottom: 1px solid rgba(12,28,19,.10);
      position:relative;
    }
    .compare-table thead th:first-child{width: 34%}
    .compare-table tbody td{
      padding: 12px 12px;
      font-size: 13.2px;
      color: rgba(14,26,19,.86);
      border-top: 1px solid rgba(12,28,19,.08);
      vertical-align:top;
      line-height:1.6;
    }
    .badge-good{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      background: rgba(24,195,106,.12);
      border:1px solid rgba(24,195,106,.25);
      font-weight:900;
      font-size:12.8px;
      white-space:nowrap;
    }
    .badge-mid{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      background: rgba(12,28,19,.06);
      border:1px solid rgba(12,28,19,.10);
      font-weight:900;
      font-size:12.8px;
      white-space:nowrap;
    }

    .table-scroll{
      overflow:auto;
      border-radius: 16px;
      padding-bottom: 2px;
    }

    .tabs{
      display:flex; gap:10px; flex-wrap:wrap;
      padding: 8px;
      border-radius: 16px;
      border:1px solid rgba(12,28,19,.10);
      background: rgba(255,255,255,.70);
      margin-bottom: 12px;
    }
    .tab{
      border:1px solid rgba(12,28,19,.10);
      background: rgba(246,251,247,.55);
      padding: 10px 12px;
      border-radius: 999px;
      cursor:pointer;
      font-weight:900;
      font-size:13px;
      color: rgba(14,26,19,.85);
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
      user-select:none;
    }
    .tab:hover{transform: translateY(-1px); border-color: rgba(24,195,106,.30)}
    .tab[aria-selected="true"]{
      background: rgba(24,195,106,.14);
      border-color: rgba(24,195,106,.34);
      color:#062114;
      box-shadow: 0 12px 30px rgba(24,195,106,.12);
    }

    .network-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .network-card{
      border-radius: var(--radius2);
      border:1px solid rgba(12,28,19,.10);
      background: rgba(255,255,255,.78);
      padding: 16px;
      box-shadow: 0 12px 30px rgba(10,60,33,.07);
    }
    .network-card h3{
      margin:0 0 10px; font-size:15px; letter-spacing:-.2px;
    }
    .tag-cloud{
      display:flex; flex-wrap:wrap; gap:8px;
      padding-top:6px;
    }
    .cloud-item{
      padding: 8px 10px;
      border-radius: 999px;
      border:1px solid rgba(12,28,19,.10);
      background: rgba(246,251,247,.62);
      font-weight:800;
      font-size: 12.6px;
      color: rgba(14,26,19,.84);
    }

    .cards-2col{
      display:grid; grid-template-columns: 1fr 1fr; gap: 14px;
    }

    .form-card{
      border-radius: var(--radius);
      border:1px solid rgba(24,195,106,.24);
      background:
        radial-gradient(700px 340px at 0% 0%, rgba(24,195,106,.16), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.76));
      padding: 16px;
      box-shadow: 0 18px 50px rgba(24,195,106,.08);
    }
    form{
      margin-top: 10px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .field{display:flex; flex-direction:column; gap:8px}
    label{
      font-size: 13px;
      font-weight: 900;
      color: rgba(14,26,19,.88);
      letter-spacing: -.1px;
    }
    input, select, textarea{
      width:100%;
      border-radius: 14px;
      border: 1px solid rgba(12,28,19,.12);
      background: rgba(255,255,255,.86);
      padding: 12px 12px;
      font-size: 14px;
      color: var(--text);
      transition: border-color .15s ease, box-shadow .15s ease;
    }
    textarea{min-height: 108px; resize: vertical}
    .full{grid-column: 1 / -1}
    .form-actions{
      grid-column: 1 / -1;
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
      margin-top: 4px;
    }
    .form-hint{
      color: var(--muted2);
      font-size: 12.8px;
      line-height:1.5;
      margin-left:auto;
      display:flex; align-items:center; gap:10px;
    }
    .form-hint .shield{
      width:30px; height:30px; border-radius:12px;
      border:1px solid rgba(12,28,19,.10);
      background: rgba(246,251,247,.65);
      display:grid; place-items:center;
      flex:0 0 auto;
    }

    .faq-wrap{
      border-radius: var(--radius);
      border: 1px solid rgba(12,28,19,.10);
      background: rgba(255,255,255,.74);
      padding: 10px;
      box-shadow: 0 14px 34px rgba(10,60,33,.07);
    }
    details.faq{
      border-radius: 16px;
      border: 1px solid rgba(12,28,19,.10);
      background: rgba(246,251,247,.60);
      margin: 10px 8px;
      padding: 10px 12px;
      overflow:hidden;
      transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
    }
    details.faq[open]{
      border-color: rgba(24,195,106,.32);
      box-shadow: 0 18px 44px rgba(10,60,33,.10);
    }
    summary{
      cursor:pointer;
      list-style:none;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      padding: 6px 2px;
      user-select:none;
    }
    summary::-webkit-details-marker{display:none}
    .q{
      font-weight: 950;
      font-size: 14px;
      letter-spacing: -.15px;
      line-height:1.5;
      padding-right: 6px;
    }
    .caret{
      width:34px; height:34px;
      border-radius: 14px;
      border: 1px solid rgba(12,28,19,.10);
      background: rgba(255,255,255,.68);
      display:grid; place-items:center;
      flex:0 0 auto;
      transition: transform .18s ease, border-color .15s ease;
      margin-top: -2px;
    }
    details[open] .caret{
      transform: rotate(180deg);
      border-color: rgba(24,195,106,.32);
    }
    .a{
      color: var(--muted);
      font-size: 13.6px;
      line-height:1.75;
      padding: 8px 2px 10px;
      border-top: 1px dashed rgba(12,28,19,.14);
      margin-top: 6px;
    }

    .review-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      align-items:stretch;
    }
    .review{
      border-radius: var(--radius2);
      border: 1px solid rgba(12,28,19,.10);
      background: rgba(255,255,255,.78);
      padding: 16px;
      box-shadow: 0 12px 30px rgba(10,60,33,.07);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex; flex-direction:column; gap:10px;
    }
    .review:hover{
      transform: translateY(-2px);
      border-color: rgba(24,195,106,.30);
      box-shadow: 0 18px 44px rgba(10,60,33,.12);
    }
    .review .who{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .avatar{
      width:38px; height:38px; border-radius:14px;
      border:1px solid rgba(24,195,106,.26);
      background: linear-gradient(180deg, rgba(24,195,106,.14), rgba(255,255,255,.78));
      display:grid; place-items:center;
      font-weight:1000;
      letter-spacing:-.3px;
    }
    .role{
      font-weight:950;
      font-size:13px;
      color: rgba(14,26,19,.88);
      margin-top:6px;
    }
    .review .meta{
      color: var(--muted2);
      font-size: 12.5px;
      line-height:1.4;
      white-space:nowrap;
    }
    .review p{
      margin:0;
      color: var(--muted);
      font-size: 13.6px;
      line-height:1.75;
    }

    .articles{
      display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items:stretch;
    }
    .article{
      border-radius: var(--radius2);
      border: 1px solid rgba(12,28,19,.10);
      background: rgba(255,255,255,.78);
      padding: 16px;
      box-shadow: 0 12px 30px rgba(10,60,33,.07);
      display:flex; flex-direction:column; gap:10px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height: 170px;
    }
    .article:hover{
      transform: translateY(-2px);
      border-color: rgba(24,195,106,.30);
      box-shadow: 0 18px 44px rgba(10,60,33,.12);
    }
    .article .date{
      color: var(--muted2);
      font-size: 12.5px;
    }
    .article h3{
      margin:0;
      font-size: 15px;
      line-height:1.4;
      letter-spacing:-.2px;
    }
    .article .desc{
      color: var(--muted);
      font-size: 13.4px;
      line-height:1.7;
    }
    .article a.more{
      margin-top:auto;
      display:inline-flex; align-items:center; gap:8px;
      font-weight:950;
      color:#0a2418;
      font-size:13px;
      padding:10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(12,28,19,.10);
      background: rgba(246,251,247,.60);
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .article a.more:hover{
      transform: translateY(-1px);
      border-color: rgba(24,195,106,.35);
      background: rgba(24,195,106,.10);
    }

    .case-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 14px;
      align-items:stretch;
    }
    .case-main{
      border-radius: var(--radius);
      border: 1px solid rgba(12,28,19,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 14px 34px rgba(10,60,33,.07);
      padding: 16px;
      display:flex; flex-direction:column; gap:12px;
    }
    .case-main .media-row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      align-items:stretch;
    }
    .imgbox{
      border-radius: 16px;
      border: 1px solid rgba(12,28,19,.10);
      background: rgba(246,251,247,.55);
      overflow:hidden;
      display:flex;
      flex-direction:column;
      min-height: 168px;
    }
    .imgbox .imgwrap{
      padding: 10px;
      flex: 1 1 auto;
      display:flex; align-items:center; justify-content:center;
    }
    .imgbox img{
      width:100%;
      height:auto;
      max-width: 100%;
      object-fit: contain;
      display:block;
    }
    .imgbox .cap{
      padding: 10px 12px 12px;
      border-top: 1px dashed rgba(12,28,19,.14);
      color: var(--muted2);
      font-size: 12.8px;
      line-height:1.5;
    }

    .case-side{
      display:flex; flex-direction:column; gap:12px;
    }
    .stepper{
      border-radius: var(--radius);
      border: 1px solid rgba(24,195,106,.22);
      background:
        radial-gradient(650px 320px at 0% 0%, rgba(24,195,106,.14), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.76));
      padding: 16px;
      box-shadow: 0 18px 50px rgba(24,195,106,.08);
    }
    .stepper h3{margin:0 0 10px; font-size:15px}
    .small-steps{
      display:flex; flex-direction:column; gap:10px;
      padding-top:4px;
    }
    .sstep{
      display:flex; gap:10px; align-items:flex-start;
      padding: 10px 12px;
      border-radius: 16px;
      border: 1px solid rgba(12,28,19,.10);
      background: rgba(246,251,247,.60);
      transition: transform .18s ease, border-color .15s ease;
    }
    .sstep:hover{transform: translateY(-2px); border-color: rgba(24,195,106,.30)}
    .sstep .bubble{
      width:30px; height:30px; border-radius:12px;
      border:1px solid rgba(24,195,106,.28);
      background: rgba(24,195,106,.12);
      display:grid; place-items:center;
      font-weight:1000;
      flex:0 0 auto;
    }
    .sstep b{font-size:13.5px}
    .sstep span{display:block; margin-top:4px; color:var(--muted2); font-size:12.8px; line-height:1.5}

    .token-card{
      border-radius: var(--radius);
      border: 1px solid rgba(12,28,19,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.74));
      box-shadow: 0 14px 34px rgba(10,60,33,.07);
      padding: 16px;
      overflow:hidden;
      position:relative;
    }
    .token-card::before{
      content:"";
      position:absolute; inset:auto -120px -140px auto;
      width:320px; height:320px;
      background: radial-gradient(circle at 30% 30%, rgba(184,255,79,.42), rgba(24,195,106,.14), transparent 62%);
      opacity:.9;
      pointer-events:none;
      transform: rotate(-12deg);
    }
    .token-inner{position:relative; display:flex; flex-direction:column; gap:12px}
    .token-head{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .token-head h3{margin:0; font-size:16px}
    .token-head p{margin: 6px 0 0; color:var(--muted); font-size:13.6px; line-height:1.7; max-width: 62ch}
    .price-grid{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 12px;
      align-items:stretch;
    }
    .price-item{
      border-radius: 16px;
      border: 1px solid rgba(12,28,19,.10);
      background: rgba(246,251,247,.60);
      padding: 12px;
      display:flex; flex-direction:column; gap:8px;
      min-height: 132px;
    }
    .price-item b{font-size:14px}
    .price-item .val{
      font-size: 22px; font-weight:1000; letter-spacing:-.5px;
    }
    .price-item span{color:var(--muted2); font-size:12.8px; line-height:1.5}

    .price-actions{
      display:flex; gap:10px; flex-wrap:wrap;
      align-items:center;
      margin-top: 6px;
    }

    .aiwiki-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap: 14px;
      align-items:stretch;
    }
    .wiki-list{
      border-radius: var(--radius);
      border:1px solid rgba(12,28,19,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 14px 34px rgba(10,60,33,.07);
      padding: 16px;
    }
    .wiki-list h3{margin:0 0 10px; font-size:15px}
    .wiki-items{
      margin:0; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px;
    }
    .wiki-items li{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      padding: 12px 12px;
      border-radius: 16px;
      border:1px solid rgba(12,28,19,.10);
      background: rgba(246,251,247,.60);
      transition: transform .18s ease, border-color .15s ease;
    }
    .wiki-items li:hover{transform: translateY(-2px); border-color: rgba(24,195,106,.30)}
    .wiki-items b{font-size:13.5px}
    .wiki-items span{display:block; margin-top:4px; color:var(--muted2); font-size:12.8px; line-height:1.5}
    .wiki-items .type{
      white-space:nowrap;
      padding: 7px 10px;
      border-radius:999px;
      border:1px solid rgba(24,195,106,.22);
      background: rgba(24,195,106,.10);
      font-weight:950;
      font-size:12.6px;
      color:#062114;
      flex: 0 0 auto;
      margin-top: -2px;
    }

    .network-map{
      border-radius: var(--radius);
      border:1px solid rgba(12,28,19,.10);
      background:
        radial-gradient(680px 340px at 30% 0%, rgba(24,195,106,.16), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.74));
      box-shadow: 0 14px 34px rgba(10,60,33,.07);
      padding: 16px;
      position:relative;
      overflow:hidden;
      display:flex; flex-direction:column; gap:12px;
    }
    .map-grid{
      display:grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
    }
    .metro{
      border-radius: 16px;
      border: 1px solid rgba(12,28,19,.10);
      background: rgba(246,251,247,.60);
      padding: 12px;
      min-height: 92px;
      display:flex; flex-direction:column; justify-content:space-between;
      transition: transform .18s ease, border-color .15s ease;
    }
    .metro:hover{transform: translateY(-2px); border-color: rgba(24,195,106,.30)}
    .metro b{font-size:14px}
    .metro span{color:var(--muted2); font-size:12.8px; line-height:1.5}

    .contact-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items:stretch;
    }
    .contact-card{
      border-radius: var(--radius);
      border:1px solid rgba(12,28,19,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 14px 34px rgba(10,60,33,.07);
      padding: 16px;
      display:flex; flex-direction:column; gap:12px;
    }
    .contact-card h3{margin:0; font-size:15px}
    .contact-rows{
      display:flex; flex-direction:column; gap:10px;
      padding-top:2px;
    }
    .contact-row{
      display:flex; gap:10px; align-items:flex-start;
      padding: 10px 12px;
      border-radius: 16px;
      border: 1px solid rgba(12,28,19,.10);
      background: rgba(246,251,247,.60);
    }
    .contact-row .left{
      width:34px; height:34px; border-radius:14px;
      border: 1px solid rgba(24,195,106,.26);
      background: rgba(24,195,106,.12);
      display:grid; place-items:center;
      flex:0 0 auto;
      margin-top: 1px;
    }
    .contact-row b{display:block; font-size:13.5px}
    .contact-row span{display:block; color:var(--muted2); font-size:12.8px; margin-top:4px; line-height:1.5}
    .qr-wrap{
      display:flex; gap:12px; align-items:flex-start; flex-wrap:wrap;
    }
    .qr{
      width:120px; border-radius:16px;
      border: 1px solid rgba(12,28,19,.10);
      background: rgba(246,251,247,.60);
      padding: 10px;
    }
    .qr img{width:100%; height:auto; display:block}
    .qr-meta{
      flex:1 1 220px;
      min-width: 220px;
    }
    .qr-meta p{
      margin:0; color:var(--muted); font-size:13.6px; line-height:1.75;
    }

    .footer{
      margin-top: 6px;
      background: linear-gradient(180deg, rgba(10, 25, 17, .92), rgba(7, 20, 13, .96));
      color: rgba(255,255,255,.88);
      border-top: 1px solid rgba(255,255,255,.10);
    }
    .footer .foot-inner{
      padding: 22px 0 16px;
    }
    .foot-grid{
      display:flex; gap:16px; justify-content:space-between; align-items:flex-start; flex-wrap:wrap;
    }
    .foot-brand{
      width: min(420px, 100%);
    }
    .foot-brand .line{
      display:flex; align-items:center; gap:12px;
    }
    .foot-logo{
      width:44px; height:44px; border-radius:16px;
      border: 1px solid rgba(184,255,79,.35);
      background: rgba(24,195,106,.14);
      display:grid; place-items:center;
      overflow:hidden;
    }
    .foot-logo img{width:100%; height:auto; display:block}
    .foot-brand b{display:block; font-size:16px; letter-spacing:-.2px}
    .foot-brand span{
      display:block; margin-top:8px; color: rgba(255,255,255,.72);
      font-size:13.2px; line-height:1.7;
    }
    .foot-links{
      display:flex; gap:16px; flex-wrap:wrap;
      justify-content:flex-end;
      min-width: 280px;
    }
    .foot-col{
      min-width: 180px;
    }
    .foot-col h4{
      margin: 0 0 10px;
      font-size:13px;
      color: rgba(255,255,255,.92);
      letter-spacing:.2px;
    }
    .foot-col a{
      display:block;
      padding: 8px 0;
      color: rgba(255,255,255,.74);
      font-size:13.2px;
      transition: color .15s ease, transform .15s ease;
      transform-origin:left center;
    }
    .foot-col a:hover{
      color: rgba(184,255,79,.95);
      transform: translateX(2px);
    }

    .foot-bottom{
      padding: 12px 0 20px;
      border-top: 1px solid rgba(255,255,255,.10);
      margin-top: 14px;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .copyright{
      color: rgba(255,255,255,.70);
      font-size:12.8px;
      line-height:1.5;
    }
    .friendship{
      display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;
      max-width: 720px;
    }
    .friendship a{
      padding: 8px 10px;
      border-radius:999px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      color: rgba(255,255,255,.80);
      font-weight:900;
      font-size:12.6px;
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .friendship a:hover{
      transform: translateY(-1px);
      border-color: rgba(184,255,79,.45);
      background: rgba(184,255,79,.08);
      color: rgba(255,255,255,.94);
    }

    .float-customer{
      position:fixed;
      right: 14px;
      bottom: 16px;
      z-index:90;
      display:flex;
      flex-direction:column;
      align-items:flex-end;
      gap:10px;
      pointer-events:none;
    }
    .float-item{
      pointer-events:auto;
      border-radius: 18px;
      border:1px solid rgba(12,28,19,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 50px rgba(10,60,33,.18);
      overflow:hidden;
      transform-origin: bottom right;
    }
    .float-main{
      display:flex; align-items:center; gap:10px;
      padding: 10px 12px;
    }
    .float-main .bubble{
      width:40px; height:40px; border-radius:16px;
      border:1px solid rgba(24,195,106,.26);
      background: rgba(24,195,106,.12);
      display:grid; place-items:center;
      flex:0 0 auto;
    }
    .float-main b{display:block; font-size:13.5px}
    .float-main span{display:block; color:var(--muted2); font-size:12.5px; margin-top:4px; line-height:1.4}
    .float-actions{
      display:flex; gap:10px; align-items:center; padding: 0 12px 12px 12px;
      justify-content:flex-end;
    }
    .mini-link{
      display:inline-flex; align-items:center; gap:8px;
      padding: 10px 12px;
      border-radius: 999px;
      border:1px solid rgba(12,28,19,.10);
      background: rgba(246,251,247,.60);
      font-weight:950;
      font-size:13px;
      cursor:pointer;
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .mini-link:hover{
      transform: translateY(-1px);
      border-color: rgba(24,195,106,.35);
      background: rgba(24,195,106,.10);
    }
    .to-top{
      width:48px; height:48px;
      border-radius:18px;
      border:1px solid rgba(12,28,19,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 50px rgba(10,60,33,.18);
      display:grid; place-items:center;
      cursor:pointer;
      transition: transform .15s ease, border-color .15s ease, opacity .15s ease;
      opacity:.95;
      pointer-events:auto;
    }
    .to-top:hover{transform: translateY(-2px); border-color: rgba(24,195,106,.35)}
    .to-top svg{display:block}

    .fade-in{
      opacity:0; transform: translateY(10px);
      transition: opacity .45s ease, transform .45s ease;
    }
    .fade-in.show{
      opacity:1; transform: translateY(0);
    }

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

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .hero-inner,.hero-side{min-height:auto}
      .nav-links{display:none}
      .menu-btn{display:flex}
      .mobile-drawer{display:block}
      .grid-3{grid-template-columns: 1fr; }
      .grid-2{grid-template-columns: 1fr; }
      .steps{grid-template-columns: 1fr 1fr; }
      .review-grid{grid-template-columns: 1fr; }
      .articles{grid-template-columns: 1fr; }
      .case-grid{grid-template-columns: 1fr; }
      .price-grid{grid-template-columns: 1fr; }
      .aiwiki-grid{grid-template-columns: 1fr; }
      .contact-grid{grid-template-columns: 1fr; }
      .network-grid{grid-template-columns: 1fr; }
      form{grid-template-columns: 1fr; }
      .form-hint{margin-left:0}
      .friendship{justify-content:flex-start}
    }

    @media (prefers-reduced-motion: reduce){
      *{animation:none !important; transition:none !important; scroll-behavior:auto !important}
      .fade-in{opacity:1; transform:none}
    }