:root{
      --bg0:#f7fbf8;
      --bg1:#effbf2;
      --card:#ffffff;
      --text:#0f172a;
      --muted:#475569;
      --muted2:#6b7280;
      --line:rgba(15, 23, 42, .10);
      --shadow:0 18px 55px rgba(16, 185, 129, .10), 0 8px 18px rgba(2, 6, 23, .06);
      --shadow2:0 16px 40px rgba(16, 185, 129, .12), 0 8px 16px rgba(2, 6, 23, .08);
      --green:#16a34a;
      --green2:#22c55e;
      --accent:#00c46a;
      --accent2:#19d37a;
      --accent3:#0bbf67;
      --ink:#052e1a;
      --btn:#0f9d4a;
      --btn2:#16a34a;
      --chip:#eafff2;
      --chipText:#0c6b33;
      --warn:#b45309;
      --radius:18px;
      --radius2:14px;
      --container:1120px;
      --containerPad:20px;
      --focus:0 0 0 4px rgba(34, 197, 94, .18);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans CJK SC", Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      color:var(--text);
      background:
        radial-gradient(1100px 520px at 20% -120px, rgba(16, 185, 129, .18), transparent 60%),
        radial-gradient(850px 420px at 90% 0px, rgba(34, 197, 94, .14), transparent 55%),
        linear-gradient(180deg, var(--bg1), var(--bg0) 55%, #ffffff 100%);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    button, input, select, textarea{font:inherit}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 var(--containerPad);
    }
    .skip{
      position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip:focus{
      left:16px; top:16px; width:auto; height:auto; z-index:9999;
      background:#fff; padding:10px 12px; border:1px solid var(--line); border-radius:10px;
      box-shadow:var(--shadow2);
    }

    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter:saturate(140%) blur(10px);
      background:rgba(247, 251, 248, .72);
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width:220px;
    }
    .brand img{
      width:42px; height:42px; object-fit:contain;
      border-radius:12px;
      background:rgba(34,197,94,.10);
      padding:6px;
      border:1px solid rgba(34,197,94,.22);
    }
    .brand .name{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand strong{
      font-size:14px;
      letter-spacing:.2px;
    }
    .brand span{
      font-size:12px; color:var(--muted2);
      white-space:nowrap;
    }

    nav ul{
      list-style:none; padding:0; margin:0;
      display:flex; gap:18px; align-items:center;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    nav a{
      display:inline-flex; align-items:center; gap:8px;
      color:rgba(15,23,42,.86);
      font-size:13px;
      padding:8px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    nav a:hover{
      background:rgba(34,197,94,.10);
      border-color:rgba(34,197,94,.22);
      transform: translateY(-1px);
    }
    .nav-cta{
      display:flex; gap:10px; align-items:center;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      padding:10px 14px;
      border-radius:14px;
      border:1px solid rgba(34,197,94,.25);
      background:rgba(255,255,255,.78);
      color:rgba(15,23,42,.92);
      box-shadow:0 10px 30px rgba(2,6,23,.05);
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      cursor:pointer;
      user-select:none;
    }
    .btn:hover{
      transform: translateY(-1px);
      box-shadow:0 16px 40px rgba(2,6,23,.08);
      border-color:rgba(34,197,94,.40);
      background:#fff;
    }
    .btn:focus{outline:none; box-shadow: var(--focus), 0 16px 40px rgba(2,6,23,.10)}
    .btn-primary{
      border-color:rgba(16,185,129,.45);
      background: linear-gradient(180deg, rgba(22,163,74,1), rgba(16,185,129,1));
      color:#fff;
      box-shadow: 0 18px 50px rgba(16,185,129,.22), 0 10px 22px rgba(2,6,23,.08);
    }
    .btn-primary:hover{
      box-shadow: 0 22px 65px rgba(16,185,129,.28), 0 10px 26px rgba(2,6,23,.10);
    }
    .btn-ghost{
      background:transparent;
      border-color:rgba(15,23,42,.14);
      box-shadow:none;
    }
    .btn-ghost:hover{
      background:rgba(255,255,255,.65);
      border-color:rgba(34,197,94,.28);
      box-shadow:0 12px 30px rgba(2,6,23,.06);
    }

    .menu-btn{
      display:none;
      padding:10px 12px; border-radius:14px;
      border:1px solid rgba(15,23,42,.14);
      background:#fff;
      cursor:pointer;
      box-shadow:0 12px 28px rgba(2,6,23,.06);
      transition: transform .15s ease, border-color .15s ease;
    }
    .menu-btn:hover{transform: translateY(-1px); border-color:rgba(34,197,94,.30)}
    .menu-icon{
      width:18px; height:12px; position:relative;
    }
    .menu-icon span{
      position:absolute; left:0; right:0;
      height:2px; background:rgba(15,23,42,.85); border-radius:2px;
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .menu-icon span:nth-child(1){top:0}
    .menu-icon span:nth-child(2){top:5px}
    .menu-icon span:nth-child(3){top:10px}
    .menu-btn[aria-expanded="true"] .menu-icon span:nth-child(1){top:5px; transform: rotate(45deg)}
    .menu-btn[aria-expanded="true"] .menu-icon span:nth-child(2){opacity:0}
    .menu-btn[aria-expanded="true"] .menu-icon span:nth-child(3){top:5px; transform: rotate(-45deg)}

    .mobile-panel{
      display:none;
      padding:10px 0 14px;
    }
    .mobile-panel nav{
      border-top:1px dashed rgba(15,23,42,.10);
      padding-top:10px;
    }
    .mobile-panel nav ul{gap:8px; justify-content:flex-start}
    .mobile-panel nav a{padding:10px 12px; background:rgba(255,255,255,.8); border-color:rgba(34,197,94,.18)}
    .mobile-cta{display:flex; gap:10px; padding-top:12px; flex-wrap:wrap}

    @media (max-width: 980px){
      nav{display:none}
      .nav-cta{display:none}
      .menu-btn{display:inline-flex; align-items:center; gap:10px}
      .mobile-panel{display:block}
      header{border-bottom-color:rgba(15,23,42,.10)}
    }

    main{padding:10px 0 20px}
    .hero{
      position:relative;
      padding:34px 0 10px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.12fr .88fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-left{
      background: linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.92));
      border:1px solid rgba(15,23,42,.10);
      border-radius: calc(var(--radius) + 6px);
      box-shadow: var(--shadow);
      overflow:hidden;
      padding:26px;
      position:relative;
    }
    .hero-left::before{
      content:"";
      position:absolute; inset:-2px -2px auto -2px; height:180px;
      background:
        radial-gradient(420px 140px at 20% 10%, rgba(34,197,94,.28), transparent 60%),
        radial-gradient(380px 140px at 80% 0%, rgba(16,185,129,.20), transparent 55%),
        linear-gradient(90deg, rgba(16,185,129,.16), transparent 55%);
      pointer-events:none;
    }
    .hero-topline{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
      position:relative;
    }
    .pill{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px;
      border-radius:999px;
      background: rgba(34,197,94,.12);
      border:1px solid rgba(34,197,94,.22);
      color:var(--chipText);
      font-weight:650;
      font-size:12px;
      letter-spacing:.2px;
    }
    .pill i{
      width:10px; height:10px; border-radius:3px;
      background: linear-gradient(180deg, var(--accent2), var(--green));
      box-shadow:0 10px 18px rgba(16,185,129,.30);
      display:inline-block;
    }
    .hero h1{
      margin:14px 0 8px;
      font-size:34px;
      letter-spacing:-.6px;
      line-height:1.18;
      position:relative;
    }
    .hero p{
      margin:0;
      color:var(--muted);
      font-size:14.5px;
      line-height:1.7;
      max-width:62ch;
      position:relative;
    }
    .hero-actions{
      display:flex; gap:12px; align-items:center; flex-wrap:wrap;
      margin-top:18px;
      position:relative;
    }
    .hero-actions .mini{
      display:flex; gap:14px; align-items:center; flex-wrap:wrap;
      margin-top:6px;
      color:var(--muted2);
      font-size:12.5px;
      position:relative;
    }
    .dot{
      width:5px; height:5px; border-radius:50%;
      background:rgba(34,197,94,.75);
      display:inline-block;
    }
    .hero-badges{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:16px; position:relative;
    }
    .badge{
      padding:9px 11px;
      border-radius:14px;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      display:flex; align-items:center; gap:10px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      box-shadow:0 10px 24px rgba(2,6,23,.04);
    }
    .badge:hover{
      transform: translateY(-2px);
      border-color:rgba(34,197,94,.28);
      box-shadow:0 18px 45px rgba(2,6,23,.06);
    }
    .badge svg{flex:0 0 auto}
    .badge strong{font-size:13px}
    .badge span{color:var(--muted2); font-size:12px; display:block; margin-top:1px}
    .hero-right{
      border-radius: calc(var(--radius) + 6px);
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.60), rgba(255,255,255,.92));
      box-shadow: var(--shadow);
      padding:18px;
      display:flex; flex-direction:column; gap:14px;
      overflow:hidden;
      position:relative;
    }
    .hero-right::after{
      content:"";
      position:absolute;
      inset:auto -40px -80px -40px;
      height:220px;
      background: radial-gradient(260px 120px at 50% 0%, rgba(16,185,129,.22), transparent 60%);
      pointer-events:none;
    }
    .data-title{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      position:relative;
    }
    .data-title strong{font-size:14px}
    .data-title span{color:var(--muted2); font-size:12.5px}
    .metrics{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      position:relative;
    }
    .metric{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:16px;
      padding:14px 12px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .metric:hover{
      transform: translateY(-3px);
      border-color:rgba(34,197,94,.28);
      box-shadow:0 18px 45px rgba(2,6,23,.08);
    }
    .metric .k{
      display:flex; align-items:center; gap:10px;
    }
    .metric .icon{
      width:34px; height:34px; border-radius:12px;
      background:rgba(34,197,94,.12);
      border:1px solid rgba(34,197,94,.20);
      display:flex; align-items:center; justify-content:center;
    }
    .metric .icon svg{opacity:.95}
    .metric b{
      font-size:18px; letter-spacing:-.3px;
      display:block; margin-top:8px;
    }
    .metric small{
      color:var(--muted2);
      font-size:12px; line-height:1.35;
      display:block; margin-top:2px;
    }
    .quick-card{
      background: linear-gradient(180deg, rgba(34,197,94,.12), rgba(255,255,255,.78));
      border:1px solid rgba(34,197,94,.22);
      border-radius:18px;
      padding:14px;
      position:relative;
    }
    .quick-card h3{
      margin:0 0 6px;
      font-size:14px;
    }
    .quick-card p{
      margin:0 0 12px;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
    }
    .quick-row{
      display:flex; gap:10px; align-items:center; justify-content:space-between; flex-wrap:wrap;
    }
    .kpi-row{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
    }
    .chip{
      padding:7px 10px;
      background:rgba(234, 255, 242, .95);
      border:1px solid rgba(16,185,129,.20);
      color:var(--chipText);
      border-radius:999px;
      font-size:12px;
      font-weight:650;
    }
    .link-like{
      display:inline-flex; align-items:center; gap:8px;
      font-size:13px;
      color:rgba(15,23,42,.86);
      padding:9px 10px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background:rgba(255,255,255,.70);
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
      cursor:pointer;
    }
    .link-like:hover{
      transform: translateY(-1px);
      background:#fff;
      border-color:rgba(34,197,94,.28);
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .hero-left{padding:20px}
      .hero h1{font-size:28px}
      .metrics{grid-template-columns: 1fr 1fr}
      .brand{min-width:auto}
    }

    .section{
      padding:18px 0;
    }
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px; flex-wrap:wrap;
      margin-bottom:12px;
    }
    .section-head h2{
      margin:0;
      font-size:20px;
      letter-spacing:-.3px;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
      max-width:62ch;
    }
    .section-divider{
      height:1px;
      background:linear-gradient(90deg, rgba(16,185,129,.22), rgba(15,23,42,.08), rgba(16,185,129,.05));
      margin:14px 0 0;
      border-radius:999px;
    }

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    @media (max-width: 980px){
      .grid-3{grid-template-columns: 1fr}
    }

    .card{
      background:rgba(255,255,255,.84);
      border:1px solid rgba(15,23,42,.10);
      border-radius: var(--radius);
      box-shadow: 0 12px 34px rgba(2,6,23,.05);
      padding:16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-3px);
      border-color:rgba(34,197,94,.26);
      box-shadow: 0 18px 55px rgba(2,6,23,.08);
    }
    .card .card-top{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .card h3{
      margin:0;
      font-size:15.5px;
      letter-spacing:-.2px;
    }
    .tag{
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(34,197,94,.25);
      background: rgba(34,197,94,.10);
      color:var(--chipText);
      font-weight:700;
      white-space:nowrap;
    }
    .card p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
    }
    .card ul{
      margin:12px 0 0;
      padding:0;
      list-style:none;
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .card li{
      font-size:12.5px;
      color:rgba(15,23,42,.86);
      border:1px solid rgba(15,23,42,.12);
      background:rgba(255,255,255,.66);
      padding:8px 10px;
      border-radius:999px;
    }

    .cap-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    @media (max-width: 980px){
      .cap-grid{grid-template-columns: 1fr}
    }
    .workflows{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .step{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px;
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.82);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .step:hover{
      transform: translateY(-2px);
      border-color:rgba(34,197,94,.26);
      box-shadow:0 18px 45px rgba(2,6,23,.07);
    }
    .step .num{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(34,197,94,.24);
      background:rgba(34,197,94,.10);
      display:flex; align-items:center; justify-content:center;
      font-weight:850; color:rgba(12, 107, 51, .95);
      flex:0 0 auto;
      position:relative;
      overflow:hidden;
    }
    .step .num::after{
      content:"";
      position:absolute; inset:-1px;
      background: radial-gradient(18px 18px at 30% 30%, rgba(34,197,94,.35), transparent 60%);
      pointer-events:none;
    }
    .step h3{font-size:14.5px; margin:0 0 4px}
    .step p{margin:0; color:var(--muted); font-size:13.5px; line-height:1.65}

    .compare-wrap{
      background: rgba(255,255,255,.70);
      border:1px solid rgba(15,23,42,.10);
      border-radius: calc(var(--radius) + 6px);
      padding:14px;
      box-shadow: 0 14px 38px rgba(2,6,23,.06);
    }
    .compare-top{
      display:flex; align-items:flex-end; justify-content:space-between; gap:12px; flex-wrap:wrap;
      padding:6px 6px 12px;
    }
    .rating-card{
      display:flex; align-items:center; gap:14px;
    }
    .stars{
      width:54px; height:54px; border-radius:18px;
      border:1px solid rgba(34,197,94,.26);
      background:linear-gradient(180deg, rgba(34,197,94,.14), rgba(255,255,255,.70));
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 16px 45px rgba(16,185,129,.16);
      position:relative;
      overflow:hidden;
    }
    .stars::after{
      content:"";
      position:absolute; inset:-20px;
      background: radial-gradient(70px 30px at 10% 10%, rgba(34,197,94,.30), transparent 55%);
      pointer-events:none;
    }
    .rating-meta b{font-size:18px; letter-spacing:-.2px}
    .rating-meta span{display:block; color:var(--muted2); font-size:12.5px; margin-top:3px}
    .compare-note{
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
      max-width:60ch;
      margin:0;
      padding:0 6px;
    }
    .table-wrap{
      overflow:auto;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
    }
    table{
      width:100%;
      border-collapse:collapse;
      min-width:860px;
    }
    th, td{
      border-bottom:1px solid rgba(15,23,42,.10);
      padding:12px 12px;
      text-align:left;
      vertical-align:top;
      font-size:13px;
    }
    th{
      position:sticky; top:0;
      background: linear-gradient(180deg, rgba(34,197,94,.12), rgba(255,255,255,.92));
      color:rgba(15,23,42,.92);
      font-size:13px;
      z-index:1;
    }
    td{color:rgba(15,23,42,.86)}
    .td-muted{color:var(--muted2)}
    .mark{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(234,255,242,.95);
      border:1px solid rgba(16,185,129,.22);
      color:rgba(12,107,51,.98);
      font-weight:700;
      font-size:12px;
      white-space:nowrap;
    }
    .mark svg{flex:0 0 auto}
    .xmark{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.14);
      color:rgba(71,85,105,.95);
      font-weight:700;
      font-size:12px;
      white-space:nowrap;
    }
    .compare-cta{
      display:flex; gap:10px; align-items:center; justify-content:flex-end; flex-wrap:wrap;
      padding:12px 6px 0;
    }

    .faq-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    @media (max-width: 980px){
      .faq-grid{grid-template-columns: 1fr}
    }
    .accordion{
      border:1px solid rgba(15,23,42,.10);
      border-radius: var(--radius);
      background: rgba(255,255,255,.80);
      overflow:hidden;
      box-shadow:0 12px 34px rgba(2,6,23,.05);
    }
    .acc-item{
      border-top:1px solid rgba(15,23,42,.08);
    }
    .acc-item:first-child{border-top:none}
    .acc-btn{
      width:100%;
      text-align:left;
      padding:14px 14px;
      background:transparent;
      border:none;
      cursor:pointer;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      color:rgba(15,23,42,.92);
      transition: background .15s ease;
    }
    .acc-btn:hover{background: rgba(34,197,94,.06)}
    .acc-q{
      font-weight:800;
      font-size:13.5px;
      line-height:1.45;
      margin-top:2px;
    }
    .acc-ico{
      flex:0 0 auto;
      width:30px; height:30px;
      border-radius:12px;
      border:1px solid rgba(34,197,94,.20);
      background: rgba(34,197,94,.10);
      display:flex; align-items:center; justify-content:center;
      transition: transform .18s ease;
    }
    .acc-item[data-open="true"] .acc-ico{transform: rotate(45deg)}
    .acc-panel{
      max-height:0;
      overflow:hidden;
      transition: max-height .25s ease;
    }
    .acc-item[data-open="true"] .acc-panel{max-height:320px}
    .acc-a{
      padding:0 14px 14px;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
    }

    .comments{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    @media (max-width: 980px){
      .comments{grid-template-columns:1fr}
    }
    .comment{
      padding:16px;
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.82);
      box-shadow:0 12px 34px rgba(2,6,23,.05);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .comment:hover{
      transform: translateY(-3px);
      border-color:rgba(34,197,94,.26);
      box-shadow:0 18px 55px rgba(2,6,23,.08);
    }
    .comment .who{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .avatar{
      width:40px; height:40px; border-radius:16px;
      background:rgba(34,197,94,.12);
      border:1px solid rgba(34,197,94,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      color:rgba(12,107,51,.98);
      letter-spacing:.2px;
    }
    .who b{font-size:13.5px}
    .who span{color:var(--muted2); font-size:12.5px; display:block; margin-top:2px}
    .comment .quote{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.75;
    }
    .starline{
      display:flex; gap:4px; align-items:center;
      color:rgba(15,23,42,.9);
      margin:10px 0 0;
    }
    .star{
      width:14px; height:14px;
      display:inline-block;
    }

    .cases{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    @media (max-width: 980px){
      .cases{grid-template-columns:1fr}
    }
    .case{
      padding:16px;
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.82);
      box-shadow:0 12px 34px rgba(2,6,23,.05);
      overflow:hidden;
      position:relative;
    }
    .case .case-top{
      display:flex; gap:12px; align-items:flex-start; justify-content:space-between; flex-wrap:wrap;
      margin-bottom:10px;
      position:relative;
    }
    .case h3{margin:0; font-size:15.5px}
    .case p{margin:8px 0 0; color:var(--muted); font-size:13.5px; line-height:1.7}
    .case .meta{
      display:flex; gap:8px; flex-wrap:wrap;
      margin-top:12px;
      position:relative;
    }
    .case .meta a, .case .meta span{
      font-size:12.5px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.12);
      background:rgba(255,255,255,.70);
      color:rgba(15,23,42,.86);
    }

    .articles{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    @media (max-width: 980px){
      .articles{grid-template-columns:1fr}
    }
    .list{
      border:1px solid rgba(15,23,42,.10);
      border-radius: var(--radius);
      background: rgba(255,255,255,.82);
      box-shadow:0 12px 34px rgba(2,6,23,.05);
      overflow:hidden;
    }
    .list-head{
      padding:14px 16px;
      border-bottom:1px solid rgba(15,23,42,.08);
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .list-head b{font-size:14px}
    .list-head span{color:var(--muted2); font-size:12.5px}
    .list ul{margin:0; padding:0; list-style:none}
    .list li{
      padding:12px 16px;
      border-top:1px solid rgba(15,23,42,.08);
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
      transition: background .15s ease;
    }
    .list li:first-child{border-top:none}
    .list a{
      display:inline-flex; align-items:center; gap:10px;
      color:rgba(15,23,42,.92);
      font-weight:750;
      font-size:13.5px;
    }
    .list small{
      color:var(--muted2);
      font-size:12.5px;
      line-height:1.4;
      max-width:34ch;
    }
    .list li:hover{background:rgba(34,197,94,.06)}
    .badge-green{
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(16,185,129,.22);
      background:rgba(234,255,242,.95);
      color:rgba(12,107,51,.98);
      font-weight:800;
      white-space:nowrap;
    }

    .timeline{
      border:1px solid rgba(15,23,42,.10);
      border-radius: var(--radius);
      background: rgba(255,255,255,.82);
      box-shadow:0 12px 34px rgba(2,6,23,.05);
      padding:16px;
    }
    .timeline .row{
      display:flex; gap:12px; align-items:flex-start;
      padding:10px 0;
      border-top:1px dashed rgba(15,23,42,.10);
    }
    .timeline .row:first-child{border-top:none; padding-top:0}
    .t-bullet{
      width:14px; height:14px;
      border-radius:5px;
      border:1px solid rgba(34,197,94,.35);
      background:rgba(34,197,94,.12);
      margin-top:4px;
      position:relative;
      flex:0 0 auto;
    }
    .t-bullet::after{
      content:"";
      position:absolute; inset:2px;
      border-radius:4px;
      background:linear-gradient(180deg, rgba(34,197,94,.85), rgba(16,185,129,.60));
    }
    .timeline b{font-size:13.5px}
    .timeline p{margin:4px 0 0; color:var(--muted); font-size:13.5px; line-height:1.65}

    .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    @media (max-width: 980px){
      .form-grid{grid-template-columns:1fr}
    }
    .form-card{
      padding:16px;
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.84);
      box-shadow:0 12px 34px rgba(2,6,23,.05);
      overflow:hidden;
      position:relative;
    }
    .form-card::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(420px 160px at 20% 10%, rgba(34,197,94,.16), transparent 55%),
        radial-gradient(360px 150px at 90% 0%, rgba(16,185,129,.12), transparent 55%);
      pointer-events:none;
    }
    .form-card > *{position:relative}
    .form-card h3{margin:0 0 8px; font-size:15.5px}
    .form-card p{margin:0 0 14px; color:var(--muted); font-size:13.5px; line-height:1.7}

    form{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    form .full{grid-column:1 / -1}
    label{
      display:block;
      font-size:12.5px;
      color:rgba(15,23,42,.85);
      font-weight:750;
      margin-bottom:7px;
    }
    .field{
      width:100%;
      border:1px solid rgba(15,23,42,.14);
      background: rgba(255,255,255,.88);
      padding:11px 12px;
      border-radius:14px;
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease;
    }
    .field:focus{
      border-color:rgba(34,197,94,.45);
      box-shadow: var(--focus);
    }
    textarea.field{min-height:108px; resize:vertical}
    .form-actions{
      display:flex; gap:12px; align-items:center; justify-content:space-between;
      flex-wrap:wrap;
      grid-column:1 / -1;
      margin-top:2px;
    }
    .form-actions .hint{
      color:var(--muted2);
      font-size:12.5px;
      line-height:1.5;
      margin:0;
      max-width:46ch;
    }

    @media (max-width: 540px){
      form{grid-template-columns: 1fr}
      form .full{grid-column:1 / -1}
    }

    .partners{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    @media (max-width: 980px){
      .partners{grid-template-columns:1fr}
    }
    .token-box{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.84);
      border-radius: var(--radius);
      box-shadow:0 12px 34px rgba(2,6,23,.05);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .token-box::after{
      content:"";
      position:absolute; inset:auto -60px -120px -60px;
      height:260px;
      background: radial-gradient(260px 140px at 50% 20%, rgba(34,197,94,.18), transparent 62%);
      pointer-events:none;
    }
    .token-box > *{position:relative}
    .token-box h3{margin:0 0 8px; font-size:15.5px}
    .token-box p{margin:0 0 12px; color:var(--muted); font-size:13.5px; line-height:1.7}
    .token-actions{display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin-top:12px}

    .cloud{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.84);
      border-radius: var(--radius);
      box-shadow:0 12px 34px rgba(2,6,23,.05);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .cloud h3{margin:0 0 10px; font-size:15.5px}
    .cloud .cloud-tags{
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .cloud .ct{
      display:inline-flex; align-items:center; gap:10px;
      padding:9px 11px;
      border-radius:999px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(15,23,42,.12);
      transition: transform .16s ease, border-color .16s ease;
      color:rgba(15,23,42,.86);
      font-weight:720;
      font-size:12.5px;
      cursor:default;
      user-select:none;
    }
    .cloud .ct:hover{transform: translateY(-2px); border-color:rgba(34,197,94,.28)}
    .ct i{
      width:10px; height:10px; border-radius:3px;
      background: linear-gradient(180deg, rgba(34,197,94,.95), rgba(16,185,129,.65));
      box-shadow:0 10px 18px rgba(16,185,129,.28);
      display:inline-block;
    }

    .float-cs{
      position:fixed; right:16px; bottom:16px; z-index:70;
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-end;
    }
    .cs-btn{
      width:48px; height:48px;
      border-radius:18px;
      border:1px solid rgba(34,197,94,.30);
      background: linear-gradient(180deg, rgba(16,185,129,1), rgba(34,197,94,1));
      color:#fff;
      box-shadow:0 22px 70px rgba(16,185,129,.26), 0 12px 24px rgba(2,6,23,.10);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .cs-btn:hover{transform: translateY(-3px); box-shadow:0 26px 85px rgba(16,185,129,.30), 0 12px 28px rgba(2,6,23,.12)}
    .cs-panel{
      width:min(320px, calc(100vw - 32px));
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.92);
      box-shadow: var(--shadow2);
      overflow:hidden;
      transform-origin: right bottom;
      transform: scale(.98);
      opacity:0;
      pointer-events:none;
      transition: opacity .18s ease, transform .18s ease;
    }
    .cs-panel[data-open="true"]{
      opacity:1;
      transform: scale(1);
      pointer-events:auto;
    }
    .cs-head{
      padding:12px 14px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      border-bottom:1px solid rgba(15,23,42,.08);
      background: linear-gradient(180deg, rgba(34,197,94,.12), rgba(255,255,255,.95));
    }
    .cs-head b{font-size:13.5px}
    .cs-close{
      width:30px; height:30px;
      border-radius:12px;
      border:1px solid rgba(15,23,42,.14);
      background:#fff;
      cursor:pointer;
    }
    .cs-body{
      padding:12px 14px 14px;
      display:flex; gap:12px; align-items:center;
    }
    .qr{
      width:74px; height:74px;
      border-radius:18px;
      border:1px solid rgba(34,197,94,.22);
      background:rgba(234,255,242,.95);
      display:flex; align-items:center; justify-content:center;
      overflow:hidden;
      flex:0 0 auto;
    }
    .qr img{
      width:100%; height:auto;
      display:block;
      object-fit:contain;
    }
    .cs-body p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
    }
    .cs-body .cs-actions{
      margin-top:10px; display:flex; gap:10px; flex-wrap:wrap;
    }
    .tiny-link{
      display:inline-flex; align-items:center; gap:8px;
      padding:9px 10px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background:rgba(255,255,255,.80);
      font-weight:780;
      font-size:12.5px;
    }
    .tiny-link:hover{border-color:rgba(34,197,94,.28); background:#fff}

    footer{
      padding:18px 0 26px;
    }
    .footer-card{
      border-radius: calc(var(--radius) + 6px);
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.92));
      box-shadow:0 16px 48px rgba(2,6,23,.06);
      overflow:hidden;
    }
    .footer-top{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      padding:16px;
      border-bottom:1px solid rgba(15,23,42,.08);
      align-items:start;
    }
    @media (max-width: 980px){
      .footer-top{grid-template-columns:1fr}
    }
    .footer-left p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
    }
    .footer-right{
      display:flex; flex-direction:column; gap:10px;
    }
    .foot-links{
      display:flex; gap:12px; flex-wrap:wrap;
      align-items:center;
    }
    .foot-links a{
      font-size:13px;
      padding:9px 11px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background:rgba(255,255,255,.78);
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
      white-space:nowrap;
    }
    .foot-links a:hover{
      transform: translateY(-2px);
      border-color:rgba(34,197,94,.28);
      background:#fff;
    }
    .footer-mid{
      padding:14px 16px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    @media (max-width: 980px){
      .footer-mid{grid-template-columns:1fr}
    }
    .foot-block h3{
      margin:0 0 8px; font-size:14px;
      letter-spacing:-.2px;
    }
    .foot-block p{margin:0; color:var(--muted); font-size:13.5px; line-height:1.7}
    .foot-block .kv{
      margin-top:10px;
      display:flex; flex-direction:column; gap:8px;
    }
    .kv a, .kv span{
      display:flex; align-items:flex-start; gap:10px;
      color:rgba(15,23,42,.88);
      font-weight:720;
      font-size:13px;
    }
    .ico{
      width:22px; height:22px;
      border-radius:9px;
      border:1px solid rgba(34,197,94,.20);
      background:rgba(34,197,94,.10);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .footer-bottom{
      padding:12px 16px 14px;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      color:var(--muted2);
      font-size:12.5px;
    }
    .backtop{
      width:40px; height:40px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.14);
      background:#fff;
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .15s ease, border-color .15s ease;
    }
    .backtop:hover{transform: translateY(-2px); border-color:rgba(34,197,94,.30)}

    .reveal{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.on{
      opacity:1;
      transform: translateY(0);
    }
    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .reveal{transition:none; transform:none; opacity:1}
      .acc-panel{transition:none}
    }