:root{
      --bg0:#f7fbf8;
      --bg1:#eef6f1;
      --card:#ffffff;
      --text:#15251e;
      --muted:#5c7265;
      --muted2:#7f9786;
      --line:rgba(16,41,28,.12);
      --shadow: 0 10px 30px rgba(16,41,28,.08);
      --shadow2: 0 8px 18px rgba(16,41,28,.10);
      --mint:#36b37e;
      --mint2:#2aa874;
      --mint3:#19a066;
      --mintSoft: rgba(54,179,126,.14);
      --leaf:#b7f7d5;
      --accent:#2d6b58;
      --accent2:#1f5b4a;
      --warning:#0f6b4a;
      --radius:18px;
      --radius2:14px;
      --container:1120px;
      --padX:20px;
      --focus: rgba(54,179,126,.35);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 480px at 10% -10%, rgba(54,179,126,.14), transparent 60%),
        radial-gradient(780px 520px at 95% 0%, rgba(183,247,213,.55), transparent 52%),
        linear-gradient(180deg, var(--bg0), #ffffff 55%, var(--bg1));
      overflow-x:hidden;
    }

    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 var(--padX);
    }

    /* Top bar */
    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(247,251,248,.78);
      border-bottom: 1px solid rgba(16,41,28,.08);
    }
    .topbar-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:12px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 240px;
    }
    .brand img{
      width:42px; height:42px;
      border-radius:12px;
      box-shadow: 0 10px 22px rgba(54,179,126,.22);
      background: #fff;
      object-fit:contain;
    }
    .brand-title{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brand-title strong{
      font-size:14px;
      letter-spacing:.2px;
    }
    .brand-title span{
      font-size:12px;
      color:var(--muted);
      margin-top:4px;
      white-space:nowrap;
    }

    .nav{
      display:flex;
      align-items:center;
      gap:6px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav a{
      font-size:13px;
      color:rgba(21,37,30,.86);
      padding:10px 10px;
      border-radius:12px;
      transition: background .2s ease, transform .2s ease, color .2s ease;
      outline: none;
    }
    .nav a:hover{
      background: rgba(54,179,126,.12);
      color: var(--accent2);
      transform: translateY(-1px);
    }
    .nav a:focus-visible{
      box-shadow: 0 0 0 4px var(--focus);
    }

    .nav-cta{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      border-radius:14px;
      padding:11px 14px;
      border:1px solid rgba(16,41,28,.12);
      background:#fff;
      color:var(--accent2);
      font-weight:650;
      letter-spacing:.2px;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      outline:none;
      white-space:nowrap;
    }
    .btn:hover{transform: translateY(-1px); box-shadow: var(--shadow2); border-color: rgba(54,179,126,.3)}
    .btn:focus-visible{box-shadow: 0 0 0 4px var(--focus)}
    .btn-primary{
      border-color: rgba(54,179,126,.35);
      background: linear-gradient(180deg, rgba(54,179,126,.98), rgba(42,168,116,.98));
      color:#fff;
      box-shadow: 0 14px 26px rgba(54,179,126,.22);
    }
    .btn-primary:hover{
      box-shadow: 0 18px 34px rgba(54,179,126,.28);
      border-color: rgba(54,179,126,.55);
    }
    .btn-ghost{
      background: rgba(54,179,126,.08);
      border-color: rgba(54,179,126,.22);
      color: var(--accent2);
    }

    .menuBtn{
      display:none;
      align-items:center;
      justify-content:center;
      width:42px;
      height:42px;
      border-radius:14px;
      border:1px solid rgba(16,41,28,.12);
      background:#fff;
      cursor:pointer;
      transition: transform .2s ease, box-shadow .2s ease;
      outline:none;
    }
    .menuBtn:hover{transform: translateY(-1px); box-shadow: var(--shadow2)}
    .menuBtn:focus-visible{box-shadow: 0 0 0 4px var(--focus)}
    .hamburger{
      width:18px; height:12px; position:relative;
    }
    .hamburger span{
      position:absolute; left:0; right:0;
      height:2px; background: rgba(21,37,30,.85); border-radius:10px;
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .hamburger span:nth-child(1){top:0}
    .hamburger span:nth-child(2){top:5px}
    .hamburger span:nth-child(3){top:10px}
    .menuBtn[aria-expanded="true"] .hamburger span:nth-child(1){top:5px; transform: rotate(45deg)}
    .menuBtn[aria-expanded="true"] .hamburger span:nth-child(2){opacity:0}
    .menuBtn[aria-expanded="true"] .hamburger span:nth-child(3){top:5px; transform: rotate(-45deg)}

    .mobilePanel{
      display:none;
      padding: 0 0 14px;
    }
    .mobilePanelInner{
      border:1px solid rgba(16,41,28,.12);
      background: rgba(255,255,255,.9);
      border-radius: 16px;
      padding: 10px;
      box-shadow: 0 18px 40px rgba(16,41,28,.10);
    }
    .mobilePanel a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding: 12px 12px;
      border-radius: 14px;
      font-size:14px;
      color: rgba(21,37,30,.88);
      transition: background .2s ease;
    }
    .mobilePanel a:hover{background: rgba(54,179,126,.10)}
    .chev{
      width:8px; height:8px;
      border-right:2px solid rgba(21,37,30,.55);
      border-bottom:2px solid rgba(21,37,30,.55);
      transform: rotate(-45deg);
      opacity:.8;
    }

    /* Hero */
    .hero{
      padding: 28px 0 10px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-left{
      border-radius: calc(var(--radius) + 8px);
      padding: 26px;
      border: 1px solid rgba(16,41,28,.10);
      background:
        radial-gradient(900px 420px at 20% 0%, rgba(54,179,126,.18), transparent 55%),
        radial-gradient(720px 420px at 100% 20%, rgba(183,247,213,.55), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.68));
      box-shadow: 0 20px 60px rgba(16,41,28,.08);
      position:relative;
      overflow:hidden;
      min-height: 320px;
    }
    .hero-left:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(420px 260px at 14% 25%, rgba(54,179,126,.18), transparent 60%),
        radial-gradient(460px 260px at 90% 10%, rgba(183,247,213,.55), transparent 55%);
      pointer-events:none;
      opacity:.9;
    }
    .hero-left > *{position:relative; z-index:1}

    .pill-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom: 14px;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      border:1px solid rgba(54,179,126,.25);
      background: rgba(54,179,126,.08);
      padding: 8px 12px;
      border-radius: 999px;
      color: rgba(31,91,74,.95);
      font-weight:650;
      font-size:13px;
      letter-spacing:.15px;
      white-space:nowrap;
    }
    .dot{
      width:10px; height:10px; border-radius:999px;
      background: linear-gradient(180deg, rgba(54,179,126,1), rgba(42,168,116,1));
      box-shadow: 0 8px 16px rgba(54,179,126,.28);
    }

    h1{
      margin: 0 0 10px;
      font-size: 34px;
      line-height: 1.18;
      letter-spacing: -0.5px;
    }
    .lead{
      margin: 0 0 18px;
      color: rgba(21,37,30,.78);
      font-size: 15px;
      line-height: 1.8;
      max-width: 58ch;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
      margin-top: 10px;
    }
    .micro{
      display:flex;
      gap:14px;
      margin-top: 16px;
      flex-wrap:wrap;
    }
    .micro-item{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding: 10px 12px;
      border-radius: 16px;
      border:1px solid rgba(16,41,28,.10);
      background: rgba(255,255,255,.7);
      min-width: 190px;
    }
    .ic{
      width:22px; height:22px; border-radius:8px;
      background: rgba(54,179,126,.14);
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(54,179,126,.24);
      color: var(--accent2);
      flex: 0 0 auto;
      margin-top:1px;
    }
    .micro-item strong{display:block; font-size:13px}
    .micro-item span{display:block; color:var(--muted); font-size:12px; margin-top:4px; line-height:1.5}

    .hero-right{
      border-radius: calc(var(--radius) + 8px);
      border: 1px solid rgba(16,41,28,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.65));
      box-shadow: 0 18px 50px rgba(16,41,28,.07);
      padding: 18px;
      overflow:hidden;
      position:relative;
      min-height: 320px;
    }
    .hero-right:after{
      content:"";
      position:absolute;
      width: 460px; height: 460px;
      right: -250px; top: -280px;
      background: radial-gradient(circle at 30% 30%, rgba(54,179,126,.24), transparent 55%);
      pointer-events:none;
      opacity:.9;
    }
    .hero-right > *{position:relative; z-index:1}

    .data-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top: 8px;
    }
    .data-card{
      border-radius: 16px;
      border:1px solid rgba(16,41,28,.10);
      background: rgba(255,255,255,.72);
      padding: 14px 14px 12px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      cursor: default;
      transform: translateZ(0);
      will-change: transform;
    }
    .data-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(16,41,28,.10);
      border-color: rgba(54,179,126,.28);
    }
    .data-card .k{
      color: rgba(31,91,74,.92);
      font-weight:800;
      font-size: 18px;
      letter-spacing: -0.3px;
    }
    .data-card .v{
      margin-top: 6px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.5;
    }
    .hero-side{
      margin-top: 14px;
      padding: 14px;
      border-radius: 16px;
      border:1px dashed rgba(54,179,126,.30);
      background: linear-gradient(180deg, rgba(54,179,126,.10), rgba(255,255,255,.55));
    }
    .hero-side h2{
      margin:0;
      font-size: 14px;
      letter-spacing:.2px;
      color: rgba(31,91,74,.95);
    }
    .hero-side p{
      margin:8px 0 0;
      color: rgba(21,37,30,.75);
      font-size: 13px;
      line-height: 1.7;
    }
    .tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top: 10px;
    }
    .tag{
      font-size: 12px;
      color: rgba(31,91,74,.92);
      padding: 8px 10px;
      border-radius: 999px;
      border:1px solid rgba(54,179,126,.22);
      background: rgba(54,179,126,.08);
      white-space:nowrap;
    }

    /* Sections */
    section{
      padding: 28px 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      margin-bottom: 16px;
    }
    .section-title{
      display:flex; flex-direction:column; gap:8px;
    }
    .section-title h2{
      margin:0;
      font-size: 22px;
      letter-spacing: -0.3px;
    }
    .section-title p{
      margin:0;
      color: rgba(21,37,30,.74);
      font-size: 14px;
      line-height: 1.7;
      max-width: 70ch;
    }
    .section-badge{
      display:flex; align-items:center; gap:10px;
      border-radius:999px;
      padding: 10px 12px;
      border:1px solid rgba(16,41,28,.10);
      background: rgba(255,255,255,.65);
      color: rgba(21,37,30,.75);
      font-weight:700;
      font-size: 13px;
      white-space:nowrap;
    }
    .spark{
      width:10px; height:10px;
      border-radius:999px;
      background: rgba(54,179,126,1);
      box-shadow: 0 10px 18px rgba(54,179,126,.28);
    }

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .grid-2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .card{
      border-radius: var(--radius);
      border:1px solid rgba(16,41,28,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 40px rgba(16,41,28,.06);
      padding: 16px;
      position:relative;
      overflow:hidden;
    }
    .card:before{
      content:"";
      position:absolute; inset:-1px;
      background: radial-gradient(600px 220px at 0% 0%, rgba(54,179,126,.16), transparent 55%);
      opacity:.55;
      pointer-events:none;
    }
    .card > *{position:relative; z-index:1}
    .card h3{
      margin:0;
      font-size: 16px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:8px 0 0;
      color: rgba(21,37,30,.74);
      font-size: 13px;
      line-height: 1.75;
    }
    .card .list{
      margin: 10px 0 0;
      padding: 0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .card .list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color: rgba(21,37,30,.78);
      font-size: 13px;
      line-height:1.55;
    }
    .check{
      width:18px; height:18px;
      border-radius:7px;
      background: rgba(54,179,126,.12);
      border:1px solid rgba(54,179,126,.22);
      display:flex; align-items:center; justify-content:center;
      flex: 0 0 auto;
      margin-top:1px;
    }
    .check:before{
      content:"";
      width:8px; height:5px;
      border-left:2px solid rgba(31,91,74,.92);
      border-bottom:2px solid rgba(31,91,74,.92);
      transform: rotate(-45deg);
      margin-top:-1px;
    }

    .steps{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
    }
    .step{
      padding: 14px;
      border-radius: var(--radius);
      border:1px solid rgba(16,41,28,.10);
      background: rgba(255,255,255,.78);
      position:relative;
      overflow:hidden;
      min-height: 164px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .step:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(16,41,28,.10);
      border-color: rgba(54,179,126,.28);
    }
    .step-top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom: 10px;
    }
    .num{
      width:34px; height:34px;
      border-radius: 14px;
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      color: rgba(31,91,74,.98);
      background: rgba(54,179,126,.12);
      border:1px solid rgba(54,179,126,.22);
    }
    .step .cap{
      font-size: 13px;
      color: rgba(21,37,30,.75);
      font-weight:750;
    }
    .step p{
      margin:0;
      color: rgba(21,37,30,.74);
      font-size: 13px;
      line-height: 1.75;
    }

    .compare{
      overflow:auto;
      border-radius: var(--radius);
      border:1px solid rgba(16,41,28,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 40px rgba(16,41,28,.06);
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width: 860px;
    }
    th, td{
      padding: 14px 12px;
      border-bottom:1px solid rgba(16,41,28,.10);
      text-align:left;
      vertical-align:top;
      font-size: 13px;
    }
    th{
      background: linear-gradient(180deg, rgba(54,179,126,.12), rgba(255,255,255,.55));
      color: rgba(21,37,30,.92);
      font-weight:850;
      position:sticky;
      top:0;
      z-index:2;
    }
    tr:last-child td{border-bottom:none}
    .score{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding: 10px 12px;
      border-radius: 14px;
      border:1px solid rgba(54,179,126,.24);
      background: rgba(54,179,126,.10);
      font-weight:900;
      color: rgba(31,91,74,.98);
      white-space:nowrap;
    }
    .stars{
      letter-spacing: 1px;
      font-size: 14px;
      color: rgba(31,91,74,.98);
      text-shadow: 0 10px 20px rgba(54,179,126,.18);
    }

    .bench{
      display:grid;
      grid-template-columns: 1.08fr .92fr;
      gap:14px;
      align-items:start;
    }
    .bench .card{
      padding: 18px;
    }
    .bench h3{
      margin:0;
      font-size: 16px;
      letter-spacing:-.2px;
    }
    .bench p{
      margin:8px 0 0;
      color: rgba(21,37,30,.74);
      font-size: 13px;
      line-height:1.75;
    }

    .review-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .review{
      padding: 16px;
      border-radius: var(--radius);
      border:1px solid rgba(16,41,28,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 40px rgba(16,41,28,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .review:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(16,41,28,.10);
      border-color: rgba(54,179,126,.28);
    }
    .review-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom: 10px;
    }
    .avatar{
      width:38px; height:38px;
      border-radius: 14px;
      background: rgba(54,179,126,.12);
      border:1px solid rgba(54,179,126,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      color: rgba(31,91,74,.98);
      flex: 0 0 auto;
    }
    .who strong{display:block; font-size:14px}
    .who span{display:block; margin-top:4px; font-size:12px; color:var(--muted)}
    .review p{
      margin:0;
      color: rgba(21,37,30,.74);
      font-size: 13px;
      line-height: 1.75;
    }

    .filters{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
      margin: 8px 0 14px;
    }
    .chip{
      border-radius: 999px;
      border:1px solid rgba(16,41,28,.10);
      background: rgba(255,255,255,.7);
      padding: 9px 12px;
      font-size: 13px;
      color: rgba(21,37,30,.80);
      font-weight:700;
      cursor:pointer;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
      outline:none;
    }
    .chip:hover{transform: translateY(-1px); border-color: rgba(54,179,126,.22)}
    .chip[aria-pressed="true"]{
      border-color: rgba(54,179,126,.35);
      background: rgba(54,179,126,.12);
      color: rgba(31,91,74,.98);
    }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .case{
      padding: 16px;
      border-radius: var(--radius);
      border:1px solid rgba(16,41,28,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 40px rgba(16,41,28,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .case:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(16,41,28,.10);
      border-color: rgba(54,179,126,.28);
    }
    .case .top{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom: 10px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding: 8px 10px;
      border-radius: 999px;
      font-size:12px;
      font-weight:850;
      border:1px solid rgba(54,179,126,.24);
      background: rgba(54,179,126,.10);
      color: rgba(31,91,74,.98);
      white-space:nowrap;
    }
    .case h3{
      margin:0;
      font-size: 15px;
      letter-spacing:-.2px;
    }
    .case p{
      margin:8px 0 0;
      color: rgba(21,37,30,.74);
      font-size: 13px;
      line-height: 1.75;
    }
    .case .meta{
      margin-top: 12px;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .meta .m{
      font-size:12px;
      color: var(--muted);
      border:1px solid rgba(16,41,28,.10);
      background: rgba(255,255,255,.66);
      padding: 8px 10px;
      border-radius: 999px;
      white-space:nowrap;
    }

    .article-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .article-list{
      padding: 16px;
      border-radius: var(--radius);
      border:1px solid rgba(16,41,28,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 40px rgba(16,41,28,.06);
    }
    .article-list h3{margin:0; font-size:16px}
    .article-items{
      margin: 10px 0 0;
      padding:0;
      list-style:none;
      display:flex; flex-direction:column; gap:10px;
    }
    .article-items li{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      padding: 10px 10px;
      border-radius: 14px;
      border:1px solid rgba(16,41,28,.08);
      background: rgba(255,255,255,.7);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .article-items li:hover{
      transform: translateY(-1px);
      border-color: rgba(54,179,126,.22);
      background: rgba(54,179,126,.06);
    }
    .article-items a{
      display:flex; gap:10px; align-items:flex-start; color: rgba(21,37,30,.88);
      width:100%;
      outline:none;
    }
    .article-items a:focus-visible{box-shadow: 0 0 0 4px var(--focus)}
    .article-name{
      font-weight:850; font-size: 13px; line-height:1.4;
    }
    .article-dom{
      margin-top:4px;
      font-size:12px;
      color: var(--muted);
      line-height:1.4;
    }
    .open{
      flex:0 0 auto;
      width:34px; height:34px;
      border-radius: 14px;
      border:1px solid rgba(16,41,28,.10);
      background: rgba(255,255,255,.72);
      display:flex; align-items:center; justify-content:center;
      color: rgba(31,91,74,.95);
    }
    .open:before{
      content:"";
      width:10px; height:10px;
      border-right:2px solid rgba(31,91,74,.95);
      border-top:2px solid rgba(31,91,74,.95);
      transform: rotate(45deg);
      margin-left:2px;
    }

    /* FAQ */
    .faq{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .faq-col{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    details.faq-item{
      border-radius: var(--radius);
      border:1px solid rgba(16,41,28,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 12px 32px rgba(16,41,28,.05);
      overflow:hidden;
    }
    details.faq-item[open]{
      border-color: rgba(54,179,126,.26);
      background: rgba(54,179,126,.06);
    }
    summary{
      cursor:pointer;
      list-style:none;
      padding: 14px 16px;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      font-weight:850;
      color: rgba(21,37,30,.92);
      outline:none;
    }
    summary::-webkit-details-marker{display:none}
    .sum-right{
      flex:0 0 auto;
      width:30px; height:30px;
      border-radius: 12px;
      border:1px solid rgba(16,41,28,.10);
      background: rgba(255,255,255,.72);
      display:flex; align-items:center; justify-content:center;
      transition: transform .2s ease, border-color .2s ease;
      margin-top:-2px;
    }
    details[open] .sum-right{transform: rotate(45deg); border-color: rgba(54,179,126,.24)}
    .plus{
      width:12px; height:12px; position:relative;
    }
    .plus:before,.plus:after{
      content:""; position:absolute; background: rgba(31,91,74,.95);
      left:50%; top:50%; transform: translate(-50%,-50%);
      border-radius:10px;
    }
    .plus:before{width:12px; height:2px}
    .plus:after{width:2px; height:12px}

    .faq-answer{
      padding: 0 16px 14px;
      color: rgba(21,37,30,.74);
      font-size: 13px;
      line-height: 1.8;
    }

    /* Form */
    .form-wrap{
      display:grid;
      grid-template-columns: 1fr .95fr;
      gap:14px;
      align-items:start;
    }
    form{
      padding: 16px;
      border-radius: var(--radius);
      border:1px solid rgba(16,41,28,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 40px rgba(16,41,28,.06);
    }
    .form-head h3{margin:0; font-size:16px}
    .form-head p{margin:8px 0 0; color: rgba(21,37,30,.74); font-size:13px; line-height:1.75}
    .fields{
      margin-top: 12px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    label{
      display:flex;
      flex-direction:column;
      gap:8px;
      font-size:12px;
      color: rgba(21,37,30,.78);
      font-weight:800;
    }
    input, select, textarea{
      width:100%;
      padding: 12px 12px;
      border-radius: 14px;
      border:1px solid rgba(16,41,28,.14);
      background: rgba(255,255,255,.9);
      outline:none;
      color: rgba(21,37,30,.92);
      font-size: 14px;
      transition: box-shadow .2s ease, border-color .2s ease;
    }
    textarea{min-height: 112px; resize: vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(54,179,126,.45);
      box-shadow: 0 0 0 4px var(--focus);
    }
    .span2{grid-column: 1 / -1}
    .form-actions{
      margin-top: 12px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      justify-content:space-between;
    }
    .hint{
      color: var(--muted);
      font-size: 12px;
      line-height: 1.6;
      max-width: 44ch;
    }
    .submit{
      border:none;
      cursor:pointer;
    }

    .match-card{
      padding: 16px;
      border-radius: var(--radius);
      border:1px solid rgba(16,41,28,.10);
      background:
        radial-gradient(540px 260px at 20% 0%, rgba(54,179,126,.18), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.64));
      box-shadow: 0 14px 40px rgba(16,41,28,.06);
    }
    .match-card h3{margin:0; font-size:16px}
    .match-card p{margin:8px 0 0; color: rgba(21,37,30,.74); font-size:13px; line-height:1.75}
    .bullets{
      margin: 12px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .bullets li{
      display:flex; gap:10px; align-items:flex-start;
      padding: 10px 10px;
      border-radius: 16px;
      border:1px solid rgba(16,41,28,.08);
      background: rgba(255,255,255,.72);
    }
    .bicon{
      width:32px; height:32px; border-radius: 14px;
      background: rgba(54,179,126,.12);
      border:1px solid rgba(54,179,126,.22);
      display:flex; align-items:center; justify-content:center;
      color: rgba(31,91,74,.98);
      font-weight:900;
      flex:0 0 auto;
    }
    .bullets strong{display:block; font-size:13px}
    .bullets span{display:block; margin-top:4px; color: var(--muted); font-size:12px; line-height:1.55}

    /* Token section */
    .token-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .price-cards{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .price{
      padding: 14px;
      border-radius: var(--radius);
      border:1px solid rgba(16,41,28,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 40px rgba(16,41,28,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .price:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(16,41,28,.10);
      border-color: rgba(54,179,126,.28);
    }
    .price .top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom: 8px;
    }
    .price .t{
      font-size: 13px;
      font-weight:900;
      color: rgba(31,91,74,.98);
    }
    .price .r{
      font-size:12px;
      color: var(--muted);
      border:1px solid rgba(16,41,28,.10);
      background: rgba(255,255,255,.66);
      padding: 8px 10px;
      border-radius: 999px;
      white-space:nowrap;
    }
    .price .n{
      font-size: 26px;
      letter-spacing:-.6px;
      font-weight:1000;
      margin-top: 6px;
    }
    .price .s{
      margin-top: 6px;
      color: rgba(21,37,30,.74);
      font-size: 12px;
      line-height: 1.6;
    }

    .timeline{
      padding: 16px;
      border-radius: var(--radius);
      border:1px solid rgba(16,41,28,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 40px rgba(16,41,28,.06);
      position:relative;
      overflow:hidden;
    }
    .timeline:before{
      content:"";
      position:absolute; inset:-1px;
      background: radial-gradient(520px 220px at 0% 0%, rgba(54,179,126,.16), transparent 56%);
      opacity:.7;
      pointer-events:none;
    }
    .timeline > *{position:relative; z-index:1}
    .timeline h3{margin:0; font-size:16px}
    .tsteps{
      margin-top: 12px;
      display:flex; flex-direction:column; gap:12px;
    }
    .trow{
      display:flex; gap:12px; align-items:flex-start;
      padding: 12px;
      border-radius: 16px;
      border:1px solid rgba(16,41,28,.08);
      background: rgba(255,255,255,.72);
    }
    .tmark{
      width:34px; height:34px;
      border-radius: 14px;
      background: rgba(54,179,126,.12);
      border:1px solid rgba(54,179,126,.22);
      display:flex; align-items:center; justify-content:center;
      color: rgba(31,91,74,.98);
      font-weight:1000;
      flex:0 0 auto;
    }
    .trow strong{display:block; font-size:13px}
    .trow span{display:block; margin-top:4px; color: var(--muted); font-size:12px; line-height:1.6}

    /* Footer */
    footer{
      padding: 24px 0 32px;
    }
    .footer-wrap{
      border-radius: 22px;
      border: 1px solid rgba(16,41,28,.10);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 52px rgba(16,41,28,.06);
      overflow:hidden;
    }
    .footer-top{
      padding: 18px;
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
      background:
        radial-gradient(720px 260px at 10% 0%, rgba(54,179,126,.18), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.6));
    }
    .footer-left h2{
      margin:0;
      font-size: 18px;
      letter-spacing:-.3px;
    }
    .footer-left p{
      margin:8px 0 0;
      color: rgba(21,37,30,.74);
      font-size: 13px;
      line-height: 1.8;
      max-width: 64ch;
    }
    .footer-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top: 12px;
    }
    .footer-right{
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-start;
      padding-left: 6px;
    }
    .contact-row{
      display:flex;
      gap:12px;
      align-items:center;
      flex-wrap:wrap;
    }
    .qr{
      width:120px;
      border-radius: 18px;
      border:1px solid rgba(16,41,28,.10);
      background: rgba(255,255,255,.8);
      padding:8px;
    }
    .qr img{width:100%; height:auto; display:block; border-radius:14px}
    .contact-meta{
      flex:1 1 240px;
      color: rgba(21,37,30,.76);
      font-size: 13px;
      line-height: 1.8;
    }
    .contact-meta a{
      color: rgba(31,91,74,.98);
      font-weight:900;
      border-bottom:1px dashed rgba(54,179,126,.35);
    }
    .footer-links{
      padding: 14px 18px 18px;
      border-top:1px solid rgba(16,41,28,.10);
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .links-block h3{
      margin:0;
      font-size: 14px;
      color: rgba(21,37,30,.9);
    }
    .links-block p{
      margin:8px 0 0;
      color: rgba(21,37,30,.72);
      font-size: 12px;
      line-height:1.8;
    }
    .friendship{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top: 10px;
    }
    .friendship a{
      font-size: 12px;
      border:1px solid rgba(16,41,28,.10);
      background: rgba(255,255,255,.7);
      padding: 9px 10px;
      border-radius: 999px;
      color: rgba(21,37,30,.84);
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
      outline:none;
    }
    .friendship a:hover{
      transform: translateY(-1px);
      border-color: rgba(54,179,126,.22);
      background: rgba(54,179,126,.06);
    }
    .friendship a:focus-visible{box-shadow: 0 0 0 4px var(--focus)}
    .copyright{
      padding: 12px 18px 14px;
      border-top:1px solid rgba(16,41,28,.10);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      flex-wrap:wrap;
      color: rgba(21,37,30,.70);
      font-size: 12px;
      background: rgba(255,255,255,.35);
    }
    .copy-left{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
    }
    .sep{
      width:4px; height:4px; border-radius:999px; background: rgba(54,179,126,.65);
      display:inline-block;
      margin:0 2px;
    }

    /* Floating */
    .floatbar{
      position:fixed;
      right: 14px;
      bottom: 14px;
      z-index:80;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
      pointer-events:none;
    }
    .floatbar .fab{
      pointer-events:auto;
      width:46px; height:46px;
      border-radius: 18px;
      border:1px solid rgba(16,41,28,.10);
      background: rgba(255,255,255,.85);
      box-shadow: 0 16px 40px rgba(16,41,28,.12);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      outline:none;
    }
    .fab:hover{
      transform: translateY(-2px);
      box-shadow: 0 20px 50px rgba(16,41,28,.16);
      border-color: rgba(54,179,126,.28);
    }
    .fab:focus-visible{box-shadow: 0 0 0 4px var(--focus)}
    .fab svg{width:20px; height:20px; color: rgba(31,91,74,.98)}
    .toast{
      pointer-events:none;
      position:fixed;
      left:50%;
      transform: translateX(-50%);
      bottom: 84px;
      z-index:90;
      opacity:0;
      transition: opacity .25s ease, transform .25s ease;
      background: rgba(21,37,30,.92);
      color:#fff;
      padding: 10px 14px;
      border-radius: 999px;
      font-size: 12px;
      letter-spacing:.2px;
      box-shadow: 0 18px 60px rgba(0,0,0,.22);
      max-width: calc(100% - 26px);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .toast.show{
      opacity:1;
      transform: translateX(-50%) translateY(-6px);
    }

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

    /* Responsive */
    @media (max-width: 980px){
      .hero-grid{grid-template-columns:1fr; }
      .hero-right{min-height:unset}
      .steps{grid-template-columns: repeat(2, 1fr)}
      .grid-3{grid-template-columns:1fr}
      .grid-2{grid-template-columns:1fr}
      .review-grid{grid-template-columns:1fr}
      .case-grid{grid-template-columns:1fr}
      .article-grid{grid-template-columns:1fr}
      .faq{grid-template-columns:1fr}
      .bench{grid-template-columns:1fr}
      .token-grid{grid-template-columns:1fr}
      .price-cards{grid-template-columns:1fr}
      .form-wrap{grid-template-columns:1fr}
      .footer-top{grid-template-columns:1fr}
      .footer-links{grid-template-columns:1fr}
      h1{font-size: 30px}
      .data-grid{grid-template-columns:1fr 1fr}
      table{min-width: 760px}
    }
    @media (max-width: 860px){
      .nav{display:none}
      .nav-cta{display:none}
      .menuBtn{display:flex}
      .mobilePanel{display:block}
      .topbar-inner{padding:10px 0}
    }

    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .reveal{transition:none}
      .btn, .data-card, .case, .review, .step, .chip, .fab{transition:none}
      .toast{transition:none}
    }