:root{
      --bg0:#f7fbf7;
      --bg1:#eef7f1;
      --card:#ffffff;
      --text:#1e2a22;
      --muted:#5b6a60;
      --muted2:#7a8a80;
      --line:rgba(20,40,28,.10);
      --shadow:0 14px 35px rgba(20,40,28,.10);
      --shadow2:0 10px 24px rgba(20,40,28,.10);
      --mint:#2fbf7a;
      --mint2:#66d7a2;
      --teal:#1f9d90;
      --lime:#a7f3c6;
      --accent:#0b3b2a;
      --chip:#e9f8ef;
      --danger:#b42318;
      --radius:18px;
      --radius2:14px;
      --container:1160px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans CJK SC", "Helvetica Neue", Arial, "Apple Color Emoji","Segoe UI Emoji";
      color:var(--text);
      background:
        radial-gradient(900px 420px at 12% 0%, rgba(47,191,122,.14), transparent 55%),
        radial-gradient(650px 360px at 86% 10%, rgba(31,157,144,.14), transparent 60%),
        linear-gradient(180deg, var(--bg0), #ffffff 40%, #fbfffc 100%);
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }
    .skip{
      position:absolute;
      left:-999px;
      top:auto;
      width:1px;
      height:1px;
      overflow:hidden;
    }
    .skip:focus{
      left:16px; top:14px;
      width:auto;height:auto;
      padding:10px 12px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:10px;
      z-index:9999;
      box-shadow:var(--shadow2);
    }

    header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(140%) blur(10px);
      background:rgba(247,251,247,.76);
      border-bottom:1px solid rgba(20,40,28,.08);
    }
    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:12px 0;
      gap:12px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:220px;
    }
    .brand img{
      width:40px; height:40px;
      object-fit:contain;
      background:rgba(47,191,122,.10);
      border:1px solid rgba(47,191,122,.18);
      border-radius:12px;
      padding:6px;
    }
    .brand .name{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brand .name strong{
      font-size:14px;
      letter-spacing:.2px;
    }
    .brand .name span{
      font-size:12px;
      color:var(--muted);
      margin-top:2px;
    }

    .navlinks{
      display:flex;
      align-items:center;
      gap:18px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .navlinks a{
      font-size:13px;
      color:rgba(30,42,34,.86);
      padding:8px 10px;
      border-radius:12px;
      transition:background .2s ease, transform .2s ease;
      outline:none;
    }
    .navlinks a:hover{
      background:rgba(47,191,122,.10);
      transform:translateY(-1px);
    }
    .navlinks a:focus-visible{
      box-shadow:0 0 0 3px rgba(47,191,122,.25);
      background:rgba(47,191,122,.10);
    }
    .nav-cta{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      padding:11px 14px;
      border-radius:14px;
      border:1px solid rgba(20,40,28,.12);
      background:#fff;
      color:rgba(30,42,34,.92);
      font-weight:650;
      font-size:13px;
      transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      cursor:pointer;
      user-select:none;
      white-space:nowrap;
    }
    .btn:hover{ transform:translateY(-1px); box-shadow:0 10px 22px rgba(20,40,28,.10); border-color:rgba(47,191,122,.30); }
    .btn:active{ transform:translateY(0px); }
    .btn-primary{
      background:linear-gradient(135deg, rgba(47,191,122,.95), rgba(31,157,144,.92));
      color:#083021;
      border-color:rgba(47,191,122,.35);
      box-shadow:0 16px 38px rgba(47,191,122,.22);
    }
    .btn-primary:hover{
      box-shadow:0 20px 45px rgba(47,191,122,.26);
    }
    .btn-ghost{
      background:rgba(255,255,255,.65);
    }
    .btn small{opacity:.78; font-weight:600}
    .icon-dot{
      width:10px;height:10px;border-radius:99px;background:rgba(11,59,42,.22);
      box-shadow:inset 0 0 0 2px rgba(47,191,122,.40);
    }

    .mobile-toggle{
      display:none;
      border:1px solid rgba(20,40,28,.12);
      background:rgba(255,255,255,.7);
      width:44px;height:44px;
      border-radius:14px;
      cursor:pointer;
      align-items:center; justify-content:center;
    }
    .mobile-toggle span{
      width:18px;height:2px;background:rgba(30,42,34,.82);
      display:block; position:relative;
    }
    .mobile-toggle span:before,
    .mobile-toggle span:after{
      content:"";
      position:absolute; left:0;
      width:18px;height:2px;background:rgba(30,42,34,.82);
      border-radius:2px;
      transition:transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .mobile-toggle span:before{ top:-6px; }
    .mobile-toggle span:after{ top:6px; }

    .mobile-panel{
      display:none;
      padding:0 0 14px;
    }
    .mobile-panel .panel{
      border:1px solid rgba(20,40,28,.10);
      background:rgba(255,255,255,.78);
      border-radius:18px;
      padding:12px;
      box-shadow:0 18px 40px rgba(20,40,28,.10);
    }
    .mobile-panel .panel a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:12px 12px;
      border-radius:14px;
      font-size:14px;
      color:rgba(30,42,34,.90);
      border:1px solid transparent;
      transition:background .2s ease, transform .2s ease, border-color .2s ease;
    }
    .mobile-panel .panel a:hover{
      background:rgba(47,191,122,.10);
      border-color:rgba(47,191,122,.18);
      transform:translateY(-1px);
    }
    .mobile-panel .panel a:not(:last-child){ margin-bottom:8px; }

    .hero{
      padding:28px 0 10px;
      position:relative;
      overflow:hidden;
    }
    .hero .grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:18px;
      align-items:start;
      padding:18px 0 4px;
    }
    .hero .left{
      padding:20px 0 6px;
    }
    .pill-row{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
      margin-bottom:14px;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 12px;
      border-radius:999px;
      background:rgba(233,248,239,.75);
      border:1px solid rgba(47,191,122,.18);
      color:rgba(11,59,42,.92);
      font-size:13px;
      font-weight:650;
    }
    .pill .spark{
      width:20px;height:20px;border-radius:10px;
      display:inline-flex; align-items:center; justify-content:center;
      background:rgba(47,191,122,.16);
      border:1px solid rgba(47,191,122,.22);
      color:rgba(11,59,42,.9);
      font-size:12px;
    }

    h1{
      margin:0 0 12px;
      font-size:38px;
      letter-spacing:-.7px;
      line-height:1.12;
    }
    .subhead{
      font-size:15px;
      color:rgba(30,42,34,.76);
      line-height:1.7;
      max-width:56ch;
      margin:0 0 18px;
    }
    .hero-ctas{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      margin-top:10px;
      margin-bottom:14px;
    }
    .mini-trust{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:14px;
      align-items:flex-start;
    }
    .trust-item{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(20,40,28,.10);
      background:rgba(255,255,255,.72);
      min-width:210px;
      transition:transform .2s ease, box-shadow .2s ease;
    }
    .trust-item:hover{ transform:translateY(-2px); box-shadow:0 14px 30px rgba(20,40,28,.10); }
    .trust-item .badge{
      width:34px;height:34px;border-radius:14px;
      background:rgba(47,191,122,.14);
      border:1px solid rgba(47,191,122,.20);
      display:flex;align-items:center;justify-content:center;
      color:rgba(11,59,42,.92);
      font-weight:800;
      flex:0 0 auto;
    }
    .trust-item strong{ display:block; font-size:13px; margin-top:1px; }
    .trust-item span{ display:block; font-size:12.5px; color:var(--muted); margin-top:2px; line-height:1.4; }

    .hero .right{
      position:relative;
    }
    .panel{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,40,28,.10);
      border-radius:22px;
      box-shadow:0 22px 55px rgba(20,40,28,.10);
      overflow:hidden;
    }
    .panel .panel-top{
      padding:16px 16px 12px;
      background:
        radial-gradient(700px 220px at 10% 0%, rgba(47,191,122,.20), transparent 52%),
        radial-gradient(520px 220px at 96% 24%, rgba(31,157,144,.18), transparent 60%),
        linear-gradient(180deg, rgba(233,248,239,.60), rgba(255,255,255,.40));
      border-bottom:1px solid rgba(20,40,28,.08);
    }
    .panel .panel-title{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .panel .panel-title h2{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .toggle-hint{
      font-size:12.5px;
      color:var(--muted);
      display:flex; align-items:center; gap:8px;
    }
    .toggle-hint .kbd{
      padding:4px 8px;
      border-radius:10px;
      background:rgba(255,255,255,.7);
      border:1px solid rgba(20,40,28,.10);
      font-weight:700;
      color:rgba(11,59,42,.92);
    }
    .panel .panel-body{
      padding:14px 16px 16px;
    }
    .metrics{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
      margin-bottom:12px;
    }
    .metric{
      padding:12px 12px;
      border-radius:16px;
      background:rgba(255,255,255,.7);
      border:1px solid rgba(20,40,28,.10);
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height:92px;
    }
    .metric:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 40px rgba(20,40,28,.10);
      border-color:rgba(47,191,122,.22);
    }
    .metric .k{
      font-size:20px;
      font-weight:900;
      letter-spacing:-.4px;
      color:rgba(11,59,42,.98);
      margin-bottom:6px;
      display:flex; align-items:baseline; gap:6px;
    }
    .metric .k i{
      font-style:normal;
      font-size:12px;
      padding:3px 8px;
      border-radius:999px;
      background:rgba(47,191,122,.12);
      border:1px solid rgba(47,191,122,.20);
      color:rgba(11,59,42,.90);
      font-weight:800;
    }
    .metric .v{
      font-size:12.5px;
      color:var(--muted);
      line-height:1.5;
      margin:0;
    }

    .capabilities{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:12px;
    }
    .chip{
      font-size:12.5px;
      padding:8px 10px;
      border-radius:999px;
      background:var(--chip);
      border:1px solid rgba(47,191,122,.18);
      color:rgba(11,59,42,.92);
      font-weight:650;
      transition:transform .18s ease, background .18s ease;
    }
    .chip:hover{ transform:translateY(-1px); background:rgba(233,248,239,.95); }

    .section{
      padding:38px 0;
    }
    .section h2{
      font-size:26px;
      letter-spacing:-.6px;
      margin:0 0 10px;
    }
    .section .lead{
      color:rgba(30,42,34,.72);
      line-height:1.7;
      margin:0 0 18px;
      max-width:70ch;
      font-size:14.5px;
    }
    .section .head-row{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      margin-bottom:16px;
    }
    .anchor-card{
      display:flex; align-items:center; gap:12px;
      padding:12px 14px;
      border-radius:18px;
      border:1px solid rgba(20,40,28,.10);
      background:rgba(255,255,255,.70);
      box-shadow:0 14px 30px rgba(20,40,28,.07);
    }
    .anchor-card .ring{
      width:40px;height:40px;border-radius:16px;
      background:rgba(47,191,122,.14);
      border:1px solid rgba(47,191,122,.20);
      display:flex;align-items:center;justify-content:center;
      color:rgba(11,59,42,.92);
      font-weight:900;
      letter-spacing:-.2px;
    }
    .anchor-card strong{ display:block; font-size:13.5px; }
    .anchor-card span{ display:block; font-size:12.5px; color:var(--muted); margin-top:2px; line-height:1.35; }

    .feature-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
      margin-top:14px;
    }
    .card{
      border-radius:20px;
      border:1px solid rgba(20,40,28,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 16px 36px rgba(20,40,28,.07);
      padding:16px 16px;
      position:relative;
      overflow:hidden;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .card:hover{
      transform:translateY(-3px);
      box-shadow:0 24px 55px rgba(20,40,28,.10);
      border-color:rgba(47,191,122,.22);
    }
    .card .card-head{
      display:flex; align-items:flex-start; gap:12px;
      margin-bottom:10px;
    }
    .card .card-icon{
      width:44px;height:44px;border-radius:18px;
      background:linear-gradient(135deg, rgba(47,191,122,.20), rgba(31,157,144,.14));
      border:1px solid rgba(47,191,122,.22);
      display:flex; align-items:center; justify-content:center;
      color:rgba(11,59,42,.92);
      font-weight:900;
      flex:0 0 auto;
    }
    .card h3{
      margin:0;
      font-size:15.5px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color:rgba(30,42,34,.72);
      line-height:1.7;
      font-size:13.5px;
    }
    .card .list{
      margin:10px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .card .list li{
      display:flex; align-items:flex-start; gap:10px;
      color:rgba(30,42,34,.74);
      font-size:13.2px;
      line-height:1.5;
    }
    .tick{
      width:18px;height:18px;border-radius:8px;
      background:rgba(47,191,122,.14);
      border:1px solid rgba(47,191,122,.20);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
      color:rgba(11,59,42,.92);
      font-size:12px;
      font-weight:900;
    }

    .steps{
      display:grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap:12px;
      margin-top:14px;
    }
    .step{
      padding:16px 14px;
      border-radius:20px;
      border:1px solid rgba(20,40,28,.10);
      background:rgba(255,255,255,.76);
      box-shadow:0 14px 30px rgba(20,40,28,.06);
      position:relative;
      overflow:hidden;
      transition:transform .2s ease, box-shadow .2s ease;
    }
    .step:hover{ transform:translateY(-3px); box-shadow:0 22px 48px rgba(20,40,28,.10); }
    .step:before{
      content:"";
      position:absolute;
      inset:auto -60px -60px auto;
      width:140px;height:140px;
      border-radius:50%;
      background:radial-gradient(circle at 30% 30%, rgba(47,191,122,.26), transparent 55%);
      pointer-events:none;
    }
    .step .num{
      width:40px;height:40px;border-radius:16px;
      background:rgba(47,191,122,.14);
      border:1px solid rgba(47,191,122,.20);
      display:flex;align-items:center;justify-content:center;
      font-weight:950;
      color:rgba(11,59,42,.95);
      margin-bottom:10px;
    }
    .step h3{ margin:0 0 8px; font-size:15px; letter-spacing:-.2px; }
    .step p{ margin:0; color:rgba(30,42,34,.72); line-height:1.7; font-size:13.4px; }

    .split{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
      margin-top:14px;
    }
    .soft-bg{
      background:
        radial-gradient(900px 280px at 0% 0%, rgba(47,191,122,.18), transparent 55%),
        radial-gradient(560px 260px at 100% 10%, rgba(31,157,144,.16), transparent 60%),
        rgba(255,255,255,.74);
      border:1px solid rgba(20,40,28,.10);
      border-radius:22px;
      box-shadow:0 18px 45px rgba(20,40,28,.07);
      padding:16px;
      overflow:hidden;
    }
    .subgrid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap:12px;
      margin-top:12px;
    }
    .mini-card{
      padding:14px 14px;
      border-radius:18px;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(20,40,28,.10);
      transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .mini-card:hover{
      transform:translateY(-2px);
      border-color:rgba(47,191,122,.22);
      box-shadow:0 20px 45px rgba(20,40,28,.08);
    }
    .mini-card .t{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:8px;
    }
    .mini-card strong{ font-size:14px; letter-spacing:-.2px; }
    .mini-card .tag{
      font-size:12px;
      padding:4px 10px;
      border-radius:999px;
      background:rgba(47,191,122,.14);
      border:1px solid rgba(47,191,122,.20);
      color:rgba(11,59,42,.92);
      font-weight:800;
      white-space:nowrap;
    }
    .mini-card p{
      margin:0;
      font-size:13.2px;
      color:rgba(30,42,34,.72);
      line-height:1.65;
    }

    .table-wrap{
      border-radius:22px;
      overflow:hidden;
      border:1px solid rgba(20,40,28,.10);
      background:rgba(255,255,255,.76);
      box-shadow:0 18px 45px rgba(20,40,28,.07);
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:720px;
    }
    th, td{
      padding:14px 12px;
      border-bottom:1px solid rgba(20,40,28,.08);
      text-align:left;
      vertical-align:top;
      font-size:13.5px;
      color:rgba(30,42,34,.84);
    }
    th{
      background:rgba(233,248,239,.75);
      font-weight:900;
      color:rgba(11,59,42,.95);
    }
    tr:last-child td{ border-bottom:none; }
    .score{
      display:inline-flex; align-items:center; gap:10px;
      font-weight:950;
      color:rgba(11,59,42,.98);
    }
    .star{
      width:26px;height:26px;border-radius:12px;
      background:rgba(47,191,122,.16);
      border:1px solid rgba(47,191,122,.22);
      display:inline-flex;align-items:center;justify-content:center;
      font-size:13px;
    }
    .delta{
      display:inline-flex;
      align-items:center;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(47,191,122,.14);
      border:1px solid rgba(47,191,122,.20);
      color:rgba(11,59,42,.92);
      font-weight:850;
      white-space:nowrap;
      margin-top:2px;
    }
    .muted{
      color:var(--muted);
      font-size:12.8px;
      line-height:1.55;
      margin-top:6px;
    }
    .hscroll{
      overflow:auto;
      -webkit-overflow-scrolling:touch;
    }

    .timeline{
      display:flex;
      flex-direction:column;
      gap:12px;
      margin-top:14px;
    }
    .titem{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px 14px;
      border-radius:20px;
      border:1px solid rgba(20,40,28,.10);
      background:rgba(255,255,255,.76);
      box-shadow:0 14px 32px rgba(20,40,28,.06);
      transition:transform .2s ease, box-shadow .2s ease;
    }
    .titem:hover{ transform:translateY(-2px); box-shadow:0 22px 48px rgba(20,40,28,.10); }
    .titem .dot{
      width:42px;height:42px;border-radius:18px;
      background:rgba(47,191,122,.14);
      border:1px solid rgba(47,191,122,.20);
      display:flex; align-items:center; justify-content:center;
      color:rgba(11,59,42,.92);
      font-weight:950;
      flex:0 0 auto;
      margin-top:2px;
    }
    .titem strong{ display:block; font-size:14.5px; letter-spacing:-.2px; }
    .titem p{ margin:6px 0 0; color:rgba(30,42,34,.72); line-height:1.7; font-size:13.4px; }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
      margin-top:14px;
    }
    .case{
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(20,40,28,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 16px 36px rgba(20,40,28,.07);
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      position:relative;
      overflow:hidden;
    }
    .case:hover{ transform:translateY(-3px); box-shadow:0 24px 55px rgba(20,40,28,.10); border-color:rgba(47,191,122,.22); }
    .case .thumb{
      border-radius:18px;
      border:1px solid rgba(20,40,28,.10);
      background:linear-gradient(135deg, rgba(47,191,122,.18), rgba(31,157,144,.10));
      padding:12px;
      margin-bottom:12px;
      display:flex; align-items:center; justify-content:center;
      height:140px;
    }
    .case .thumb .mark{
      width:100%; height:100%;
      background:
        radial-gradient(220px 100px at 10% 20%, rgba(255,255,255,.70), transparent 60%),
        radial-gradient(240px 120px at 90% 0%, rgba(255,255,255,.55), transparent 60%);
      border-radius:14px;
      border:1px dashed rgba(47,191,122,.25);
      display:flex; align-items:center; justify-content:center;
      color:rgba(11,59,42,.80);
      font-weight:900;
      letter-spacing:-.3px;
      text-align:center;
      padding:10px;
      font-size:14px;
      line-height:1.4;
    }
    .case h3{ margin:0 0 8px; font-size:15.5px; letter-spacing:-.2px; }
    .case p{ margin:0; color:rgba(30,42,34,.72); line-height:1.7; font-size:13.4px; }
    .case .meta{
      display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; align-items:center;
    }
    .case .meta .mchip{
      font-size:12.5px;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(233,248,239,.85);
      border:1px solid rgba(47,191,122,.18);
      color:rgba(11,59,42,.92);
      font-weight:800;
    }

    .articles{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      margin-top:14px;
      align-items:start;
    }
    .article-list{
      display:flex; flex-direction:column; gap:12px;
    }
    .post{
      display:flex; gap:12px;
      padding:14px;
      border-radius:22px;
      border:1px solid rgba(20,40,28,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 14px 32px rgba(20,40,28,.06);
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .post:hover{ transform:translateY(-2px); box-shadow:0 22px 48px rgba(20,40,28,.10); border-color:rgba(47,191,122,.22); }
    .post .leftthumb{
      width:70px; height:70px;
      border-radius:18px;
      background:rgba(47,191,122,.14);
      border:1px solid rgba(47,191,122,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:rgba(11,59,42,.92);
      flex:0 0 auto;
    }
    .post .content strong{
      display:block;
      font-size:14.8px;
      letter-spacing:-.2px;
      margin-bottom:6px;
    }
    .post .content span{
      display:block;
      color:rgba(30,42,34,.72);
      font-size:13.2px;
      line-height:1.6;
      margin-bottom:10px;
    }
    .post .content .links{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
    }
    .linktag{
      font-size:12.5px;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.75);
      border:1px solid rgba(20,40,28,.10);
      color:rgba(30,42,34,.86);
      font-weight:800;
      transition:transform .18s ease, background .18s ease;
      cursor:pointer;
    }
    .linktag:hover{ transform:translateY(-1px); background:rgba(233,248,239,.85); }

    .sidebox{
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(20,40,28,.10);
      background:
        radial-gradient(720px 260px at 0% 0%, rgba(47,191,122,.18), transparent 55%),
        radial-gradient(480px 240px at 100% 0%, rgba(31,157,144,.14), transparent 55%),
        rgba(255,255,255,.76);
      box-shadow:0 18px 45px rgba(20,40,28,.07);
      position:sticky;
      top:86px;
    }
    .sidebox h3{ margin:0 0 10px; font-size:15.8px; letter-spacing:-.2px; }
    .sidebox p{ margin:0 0 12px; color:rgba(30,42,34,.72); line-height:1.7; font-size:13.5px; }
    .sidebox .tagcloud{
      display:flex; flex-wrap:wrap; gap:8px;
      margin-top:10px;
    }
    .tagcloud a{
      font-size:12.5px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,40,28,.10);
      background:rgba(255,255,255,.70);
      color:rgba(30,42,34,.84);
      font-weight:800;
      transition:transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .tagcloud a:hover{
      transform:translateY(-1px);
      border-color:rgba(47,191,122,.22);
      background:rgba(233,248,239,.85);
    }

    .form-grid{
      display:grid;
      grid-template-columns: 1fr .9fr;
      gap:14px;
      margin-top:14px;
      align-items:start;
    }
    form{
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(20,40,28,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 18px 45px rgba(20,40,28,.07);
    }
    .form-grid .aside{
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(20,40,28,.10);
      background:
        radial-gradient(680px 260px at 0% 0%, rgba(47,191,122,.18), transparent 55%),
        rgba(255,255,255,.76);
      box-shadow:0 18px 45px rgba(20,40,28,.07);
    }
    label{
      display:block;
      font-weight:900;
      font-size:13px;
      margin:12px 0 7px;
      color:rgba(11,59,42,.95);
    }
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(20,40,28,.12);
      background:rgba(255,255,255,.85);
      color:rgba(30,42,34,.92);
      outline:none;
      transition:border-color .2s ease, box-shadow .2s ease, transform .15s ease;
      font-size:14px;
    }
    textarea{ min-height:110px; resize:vertical; }
    input:focus, select:focus, textarea:focus{
      border-color:rgba(47,191,122,.40);
      box-shadow:0 0 0 4px rgba(47,191,122,.18);
    }
    .form-row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .form-actions{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-top:14px;
      flex-wrap:wrap;
    }
    .helptext{
      font-size:12.8px;
      color:rgba(30,42,34,.70);
      line-height:1.5;
      max-width:44ch;
    }
    .helper-bullets{
      margin:10px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .helper-bullets li{
      display:flex; gap:10px; align-items:flex-start;
      color:rgba(30,42,34,.72);
      font-size:13.2px;
      line-height:1.6;
    }

    .faq{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:14px;
    }
    details{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,40,28,.10);
      border-radius:20px;
      padding:14px 14px;
      box-shadow:0 14px 32px rgba(20,40,28,.06);
      transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    details:hover{
      transform:translateY(-2px);
      border-color:rgba(47,191,122,.22);
      box-shadow:0 22px 48px rgba(20,40,28,.10);
    }
    summary{
      cursor:pointer;
      list-style:none;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      font-weight:900;
      color:rgba(11,59,42,.95);
      font-size:14px;
      letter-spacing:-.1px;
      outline:none;
    }
    summary::-webkit-details-marker{ display:none; }
    .sum-right{
      display:flex; align-items:center; gap:10px; flex:0 0 auto;
      color:rgba(30,42,34,.70);
      font-weight:900;
      font-size:12.5px;
    }
    .plus{
      width:26px;height:26px;border-radius:12px;
      background:rgba(47,191,122,.14);
      border:1px solid rgba(47,191,122,.20);
      display:flex; align-items:center; justify-content:center;
      transition:transform .2s ease;
      color:rgba(11,59,42,.92);
      font-weight:950;
      line-height:1;
    }
    details[open] .plus{ transform:rotate(45deg); }
    .faq p{
      margin:12px 0 0;
      color:rgba(30,42,34,.72);
      line-height:1.7;
      font-size:13.5px;
    }

    .review-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
      margin-top:14px;
    }
    .review{
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(20,40,28,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 16px 36px rgba(20,40,28,.07);
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .review:hover{ transform:translateY(-3px); box-shadow:0 24px 55px rgba(20,40,28,.10); border-color:rgba(47,191,122,.22); }
    .review .top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .review .person{
      display:flex; align-items:center; gap:10px;
      min-width:0;
    }
    .avatar{
      width:40px;height:40px;border-radius:18px;
      background:rgba(47,191,122,.14);
      border:1px solid rgba(47,191,122,.20);
      display:flex;align-items:center;justify-content:center;
      font-weight:950; color:rgba(11,59,42,.92);
      flex:0 0 auto;
    }
    .review .person strong{
      display:block;
      font-size:14px;
      letter-spacing:-.2px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:18ch;
    }
    .review .person span{
      display:block;
      font-size:12.5px;
      color:var(--muted);
      margin-top:2px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:20ch;
    }
    .stars{
      display:flex; gap:4px; align-items:center;
      color:rgba(11,59,42,.92);
      font-weight:950;
      font-size:12.5px;
      flex:0 0 auto;
    }
    .quote{
      margin:0;
      color:rgba(30,42,34,.72);
      line-height:1.75;
      font-size:13.6px;
    }

    .logos{
      display:grid;
      grid-template-columns: repeat(6, minmax(0,1fr));
      gap:10px;
      margin-top:14px;
    }
    .logo-pill{
      padding:10px 10px;
      border-radius:18px;
      border:1px solid rgba(20,40,28,.10);
      background:rgba(255,255,255,.74);
      text-align:center;
      font-size:12.8px;
      color:rgba(30,42,34,.82);
      font-weight:900;
      letter-spacing:-.1px;
      transition:transform .2s ease, border-color .2s ease;
      white-space:nowrap;
    }
    .logo-pill:hover{ transform:translateY(-2px); border-color:rgba(47,191,122,.22); }

    footer{
      margin-top:10px;
      background:
        radial-gradient(900px 260px at 12% 0%, rgba(47,191,122,.20), transparent 55%),
        radial-gradient(620px 260px at 88% 20%, rgba(31,157,144,.18), transparent 60%),
        linear-gradient(180deg, rgba(233,248,239,.85), rgba(255,255,255,.92));
      border-top:1px solid rgba(20,40,28,.10);
      padding:26px 0 18px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .footer-card{
      border-radius:22px;
      border:1px solid rgba(20,40,28,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 18px 45px rgba(20,40,28,.07);
      padding:16px;
    }
    .footer-card .row{
      display:flex; align-items:center; gap:12px; justify-content:space-between; flex-wrap:wrap;
      margin-bottom:10px;
    }
    .footer-card .row .leftrow{
      display:flex; align-items:center; gap:12px;
      min-width:0;
    }
    .footer-card .row img{
      width:44px;height:44px;border-radius:18px;
      object-fit:contain;
      background:rgba(47,191,122,.14);
      border:1px solid rgba(47,191,122,.20);
      padding:6px;
    }
    .footer-card .row strong{ display:block; font-size:15px; letter-spacing:-.2px; }
    .footer-card .row span{ display:block; font-size:12.8px; color:var(--muted); margin-top:2px; line-height:1.4; }
    .footer-links{
      display:flex; gap:12px; flex-wrap:wrap;
      margin-top:10px;
    }
    .footer-links a{
      font-size:13px;
      font-weight:850;
      color:rgba(30,42,34,.86);
      padding:8px 10px;
      border-radius:14px;
      border:1px solid rgba(20,40,28,.10);
      background:rgba(255,255,255,.70);
      transition:transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .footer-links a:hover{
      transform:translateY(-1px);
      border-color:rgba(47,191,122,.22);
      background:rgba(233,248,239,.88);
    }
    .copyright{
      text-align:center;
      margin-top:14px;
      color:rgba(30,42,34,.66);
      font-size:12.8px;
      line-height:1.6;
    }

    .floating{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:60;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .float-btn{
      width:52px;height:52px;border-radius:18px;
      border:1px solid rgba(20,40,28,.12);
      background:rgba(255,255,255,.82);
      box-shadow:0 18px 45px rgba(20,40,28,.12);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      user-select:none;
    }
    .float-btn:hover{
      transform:translateY(-2px);
      box-shadow:0 24px 60px rgba(20,40,28,.16);
      border-color:rgba(47,191,122,.24);
    }
    .float-card{
      width:260px;
      border-radius:22px;
      border:1px solid rgba(20,40,28,.10);
      background:rgba(255,255,255,.88);
      box-shadow:0 24px 60px rgba(20,40,28,.14);
      overflow:hidden;
      transform-origin:100% 100%;
      animation:popIn .22s ease both;
    }
    @keyframes popIn{
      from{ transform:scale(.98) translateY(4px); opacity:.0; }
      to{ transform:scale(1) translateY(0); opacity:1; }
    }
    .float-card .top{
      padding:12px 12px 10px;
      background:
        radial-gradient(420px 160px at 0% 0%, rgba(47,191,122,.22), transparent 55%),
        rgba(233,248,239,.76);
      border-bottom:1px solid rgba(20,40,28,.08);
    }
    .float-card .top strong{ display:block; font-size:13.6px; letter-spacing:-.2px; }
    .float-card .top span{ display:block; margin-top:3px; color:var(--muted); font-size:12.5px; line-height:1.4; }
    .float-card .body{
      padding:12px;
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .float-card img{
      width:86px;height:86px;
      border-radius:18px;
      border:1px solid rgba(20,40,28,.10);
      background:#fff;
      object-fit:cover;
    }
    .float-card .body .text{
      flex:1;
      min-width:0;
    }
    .float-card .body .text p{
      margin:0 0 10px;
      color:rgba(30,42,34,.74);
      font-size:13px;
      line-height:1.6;
    }
    .float-card .body .actions{
      display:flex; gap:10px; flex-wrap:wrap;
      align-items:center;
    }
    .smallbtn{
      padding:9px 10px;
      border-radius:14px;
      border:1px solid rgba(20,40,28,.12);
      background:rgba(255,255,255,.85);
      font-weight:900;
      font-size:12.8px;
      cursor:pointer;
      transition:transform .18s ease, background .18s ease, border-color .18s ease;
      white-space:nowrap;
    }
    .smallbtn:hover{ transform:translateY(-1px); border-color:rgba(47,191,122,.24); background:rgba(233,248,239,.88); }

    .reveal{
      opacity:0;
      transform:translateY(10px);
      transition:opacity .6s ease, transform .6s ease;
    }
    .reveal.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; }
      h1{ font-size:32px; }
      .feature-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .steps{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .split{ grid-template-columns: 1fr; }
      .articles{ grid-template-columns: 1fr; }
      .sidebox{ position:relative; top:auto; }
      .form-grid{ grid-template-columns: 1fr; }
      .faq{ grid-template-columns: 1fr; }
      .review-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .case-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .logos{ grid-template-columns: repeat(3, minmax(0,1fr)); }
      .footer-grid{ grid-template-columns: 1fr; }
    }
    @media (max-width: 720px){
      .navlinks{ display:none; }
      .nav-cta{ display:none; }
      .mobile-toggle{ display:flex; }
      .mobile-panel{ display:block; }
      .mobile-panel[aria-hidden="true"]{ display:none; }
      .feature-grid{ grid-template-columns: 1fr; }
      .steps{ grid-template-columns: 1fr; }
      .review-grid{ grid-template-columns: 1fr; }
      .case-grid{ grid-template-columns: 1fr; }
      h1{ font-size:30px; }
      .metrics{ grid-template-columns: 1fr; }
      .form-row{ grid-template-columns: 1fr; }
      .logos{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .floating{ right:12px; bottom:12px; }
      .float-card{ width:240px; }
      table{ min-width:680px; }
    }