:root{
      --bg0:#f7fbfb;
      --bg1:#ffffff;
      --text:#121826;
      --muted:#5b6b7c;
      --muted2:#7a8aa0;
      --line:rgba(17,24,39,.10);
      --shadow: 0 10px 30px rgba(0,28,55,.10);
      --shadow2: 0 6px 18px rgba(0,28,55,.10);
      --primary:#0aa6a6;
      --primary2:#06b5ff;
      --accent:#1f6feb;
      --good:#16a34a;
      --warn:#f59e0b;
      --chip:rgba(10,166,166,.10);
      --card:#ffffff;
      --card2:rgba(255,255,255,.78);
      --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, "PingFang SC", "Noto Sans SC", "Microsoft YaHei", "Helvetica Neue", Arial, "Apple Color Emoji","Segoe UI Emoji";
      color:var(--text);
      background:
        radial-gradient(1200px 600px at 14% -10%, rgba(6,181,255,.18), rgba(255,255,255,0) 60%),
        radial-gradient(900px 520px at 88% 0%, rgba(10,166,166,.18), rgba(255,255,255,0) 55%),
        linear-gradient(180deg, var(--bg0), #ffffff 40%, #fbfcff);
      line-height:1.6;
      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 18px;
    }

    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(140%) blur(10px);
      background:rgba(255,255,255,.72);
      border-bottom:1px solid rgba(17,24,39,.08);
    }
    .nav-inner{
      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:44px;
      height:44px;
      border-radius:12px;
      background:linear-gradient(135deg, rgba(10,166,166,.16), rgba(6,181,255,.12));
      padding:6px;
      object-fit:contain;
    }
    .brand-meta{ display:flex; flex-direction:column; gap:2px; }
    .brand-name{
      font-weight:800;
      letter-spacing:.2px;
      font-size:14px;
    }
    .brand-sub{
      font-size:12px;
      color:var(--muted);
    }

    .nav-links{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav-links a{
      padding:8px 10px;
      border-radius:12px;
      color:rgba(18,24,38,.84);
      border:1px solid transparent;
      transition:transform .15s ease, background .15s ease, border-color .15s ease;
      font-size:13px;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background:rgba(10,166,166,.08);
      border-color:rgba(10,166,166,.18);
      transform:translateY(-1px);
    }

    .nav-cta{
      display:flex;
      align-items:center;
      gap:10px;
      justify-content:flex-end;
      min-width:220px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:11px 14px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background:#fff;
      box-shadow: 0 1px 0 rgba(17,24,39,.06);
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      cursor:pointer;
      user-select:none;
      font-weight:650;
      font-size:13px;
    }
    .btn:hover{ transform:translateY(-1px); box-shadow:0 10px 18px rgba(10,166,166,.10); border-color:rgba(10,166,166,.22); }
    .btn-primary{
      border-color:transparent;
      background:linear-gradient(135deg, rgba(10,166,166,1), rgba(6,181,255,1));
      color:#fff;
      box-shadow:0 18px 36px rgba(6,181,255,.18);
    }
    .btn-primary:hover{ box-shadow:0 24px 48px rgba(6,181,255,.25); }
    .btn-ghost{
      background:rgba(255,255,255,.7);
    }
    .btn-small{ padding:9px 12px; border-radius:12px; font-size:12.5px; }
    .icon{
      width:18px; height:18px; display:inline-block;
    }

    .mobile-toggle{
      display:none;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.7);
      border-radius:14px;
      padding:10px 12px;
      cursor:pointer;
      transition:transform .15s ease;
    }
    .mobile-toggle:hover{ transform:translateY(-1px); }
    .hamburger{
      width:18px; height:12px; position:relative;
    }
    .hamburger span{
      position:absolute; left:0; right:0; height:2px; border-radius:2px;
      background:rgba(18,24,39,.85);
      transition:transform .2s ease, opacity .2s ease, top .2s ease;
    }
    .hamburger span:nth-child(1){ top:0; }
    .hamburger span:nth-child(2){ top:5px; }
    .hamburger span:nth-child(3){ top:10px; }

    .mobile-panel{
      display:none;
      padding:10px 0 16px;
    }
    .mobile-panel .mobile-links{
      display:flex; flex-direction:column; gap:8px;
    }
    .mobile-panel a{
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.72);
      padding:12px 12px;
      border-radius:14px;
      font-weight:650;
      font-size:14px;
    }
    .mobile-panel .mobile-actions{
      display:flex; gap:10px; margin-top:12px; flex-wrap:wrap;
    }

    .hero{
      position:relative;
      padding:34px 0 20px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.25fr .75fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-left{
      border-radius:26px;
      padding:26px 24px 20px;
      background:
        radial-gradient(900px 420px at 10% 0%, rgba(6,181,255,.30), rgba(255,255,255,0) 55%),
        radial-gradient(800px 360px at 90% 15%, rgba(10,166,166,.26), rgba(255,255,255,0) 55%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
      border:1px solid rgba(17,24,39,.08);
      box-shadow: 0 22px 60px rgba(6,181,255,.12);
      overflow:hidden;
      position:relative;
    }
    .hero-left:before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(420px 160px at 20% 15%, rgba(10,166,166,.18), rgba(255,255,255,0) 60%),
        radial-gradient(420px 160px at 80% 15%, rgba(6,181,255,.18), rgba(255,255,255,0) 60%);
      pointer-events:none;
      opacity:.9;
    }
    .hero-kicker{
      position:relative;
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
      margin-bottom:12px;
    }
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(10,166,166,.20);
      background:rgba(10,166,166,.10);
      color:rgba(9,62,67,.95);
      font-weight:750;
      font-size:12.5px;
    }
    .pill .dot{
      width:8px; height:8px; border-radius:999px;
      background:linear-gradient(135deg, var(--primary), var(--primary2));
      box-shadow:0 0 0 4px rgba(10,166,166,.14);
    }
    .hero-title{
      position:relative;
      margin:0;
      font-size:34px;
      line-height:1.15;
      letter-spacing:-.6px;
      font-weight:900;
    }
    .hero-title span{
      background:linear-gradient(135deg, rgba(10,166,166,1), rgba(6,181,255,1));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      filter:saturate(1.05);
    }
    .hero-desc{
      position:relative;
      margin:12px 0 16px;
      color:rgba(18,24,38,.82);
      font-size:15px;
      max-width:64ch;
    }
    .hero-actions{
      position:relative;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      margin-top:10px;
    }
    .hero-mini{
      position:relative;
      display:flex;
      gap:14px;
      margin-top:18px;
      flex-wrap:wrap;
    }
    .mini-item{
      flex:1;
      min-width:170px;
      padding:12px 14px;
      border-radius:16px;
      background:rgba(255,255,255,.62);
      border:1px solid rgba(17,24,39,.08);
      display:flex;
      gap:10px;
      align-items:flex-start;
      transform:translateY(0);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .mini-item:hover{
      transform:translateY(-2px);
      box-shadow:0 14px 30px rgba(6,181,255,.10);
      border-color:rgba(6,181,255,.20);
    }
    .mini-ic{
      width:34px; height:34px;
      border-radius:12px;
      background:linear-gradient(135deg, rgba(10,166,166,.16), rgba(6,181,255,.16));
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(10,166,166,.18);
      flex:0 0 auto;
    }
    .mini-title{ font-weight:900; font-size:13px; }
    .mini-sub{ color:var(--muted); font-size:12.5px; margin-top:2px; }

    .hero-right{
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .data-card{
      border-radius:24px;
      background:linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.58));
      border:1px solid rgba(17,24,39,.08);
      padding:16px;
      box-shadow: 0 18px 45px rgba(10,166,166,.10);
      position:relative;
      overflow:hidden;
    }
    .data-card:after{
      content:"";
      position:absolute;
      width:260px; height:260px;
      right:-120px; top:-160px;
      background: radial-gradient(circle at 30% 30%, rgba(6,181,255,.25), rgba(255,255,255,0) 60%);
      pointer-events:none;
    }
    .data-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
      position:relative;
    }
    .data-h{
      margin:0;
      font-size:14px;
      font-weight:900;
      color:rgba(18,24,38,.88);
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(6,181,255,.18);
      background:rgba(6,181,255,.10);
      color:rgba(5,56,70,.95);
      font-weight:850;
      font-size:12.5px;
      white-space:nowrap;
    }
    .grid-2{
      margin-top:12px;
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
      position:relative;
    }
    .metric{
      border-radius:18px;
      padding:12px 12px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.62);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .metric:hover{
      transform:translateY(-2px);
      box-shadow:0 16px 30px rgba(6,181,255,.10);
      border-color:rgba(10,166,166,.22);
    }
    .metric .num{
      font-size:18px;
      font-weight:980;
      letter-spacing:-.4px;
    }
    .metric .label{
      margin-top:4px;
      color:var(--muted);
      font-size:12.5px;
      font-weight:650;
    }

    .quick-actions{
      border-radius:24px;
      background:rgba(255,255,255,.68);
      border:1px solid rgba(17,24,39,.08);
      padding:14px;
    }
    .qa-title{
      margin:0 0 10px;
      font-weight:950;
      font-size:14px;
    }
    .qa-list{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .qa-item{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.62);
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .qa-item:hover{
      transform:translateY(-2px);
      box-shadow:0 16px 26px rgba(10,166,166,.10);
      border-color:rgba(6,181,255,.22);
    }
    .qa-left{
      display:flex; align-items:center; gap:10px;
      min-width:0;
    }
    .qa-ic{
      width:34px; height:34px; border-radius:12px;
      border:1px solid rgba(10,166,166,.18);
      background:linear-gradient(135deg, rgba(10,166,166,.14), rgba(6,181,255,.12));
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .qa-txt{ min-width:0; }
    .qa-txt .t{ font-weight:900; font-size:13px; }
    .qa-txt .s{ color:var(--muted); font-size:12.5px; margin-top:2px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:190px; }

    .section{
      padding:34px 0;
    }
    .section-tight{ padding:28px 0; }
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px; flex-wrap:wrap;
      margin-bottom:16px;
    }
    .h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.4px;
      font-weight:950;
    }
    .lead{
      margin:6px 0 0;
      color:var(--muted);
      font-size:14.5px;
      max-width:70ch;
    }
    .section-head .right{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
    }
    .tagline{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(10,166,166,.20);
      background:rgba(10,166,166,.08);
      color:rgba(6,60,72,.95);
      font-weight:850;
      font-size:12.5px;
      white-space:nowrap;
    }

    .cards-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
      align-items:stretch;
    }
    .cards-4{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
      align-items:stretch;
    }
    .card{
      border-radius:20px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.70);
      box-shadow: 0 1px 0 rgba(17,24,39,.04);
      padding: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 18px 45px rgba(6,181,255,.12);
      border-color: rgba(6,181,255,.20);
    }
    .card .k{ display:flex; align-items:center; gap:10px; }
    .card .ic{
      width:40px; height:40px; border-radius:14px;
      border:1px solid rgba(10,166,166,.18);
      background: linear-gradient(135deg, rgba(10,166,166,.14), rgba(6,181,255,.12));
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .card h3{
      margin:0;
      font-size:15px;
      font-weight:980;
      letter-spacing:-.2px;
    }
    .card p{
      margin:10px 0 0;
      color:var(--muted);
      font-size:13.5px;
    }
    .card ul{
      margin:10px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .card li{
      color:rgba(18,24,38,.84);
      font-size:13.2px;
      display:flex; gap:10px; align-items:flex-start;
    }
    .check{
      width:18px; height:18px; border-radius:7px;
      background:rgba(10,166,166,.12);
      border:1px solid rgba(10,166,166,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .check svg{ width:12px; height:12px; }
    .muted{ color:var(--muted); }

    .steps{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .step{
      display:grid;
      grid-template-columns: 64px 1fr auto;
      gap:14px;
      align-items:start;
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.70);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .step:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 40px rgba(6,181,255,.10);
      border-color: rgba(6,181,255,.20);
    }
    .step-num{
      width:54px; height:54px;
      border-radius:18px;
      background:linear-gradient(135deg, rgba(10,166,166,.18), rgba(6,181,255,.14));
      border:1px solid rgba(10,166,166,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:980;
      letter-spacing:-.5px;
      color:rgba(6,60,72,.98);
      position:relative;
    }
    .step-num:after{
      content:"";
      position:absolute;
      inset:-1px;
      border-radius:18px;
      background: radial-gradient(circle at 30% 20%, rgba(6,181,255,.22), rgba(255,255,255,0) 60%);
      pointer-events:none;
      opacity:.8;
    }
    .step h3{
      margin:0;
      font-size:15.5px;
      font-weight:980;
    }
    .step p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:13.6px;
      max-width:78ch;
    }
    .step .step-chip{
      align-self:start;
      padding:10px 12px;
      border-radius:999px;
      background:rgba(10,166,166,.08);
      border:1px solid rgba(10,166,166,.18);
      color:rgba(6,60,72,.95);
      font-weight:900;
      font-size:12.5px;
      white-space:nowrap;
    }

    .two-col{
      display:grid;
      grid-template-columns: 1.02fr .98fr;
      gap:12px;
      align-items:start;
    }
    .panel{
      border-radius:24px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.70);
      padding:18px;
      box-shadow: 0 1px 0 rgba(17,24,39,.04);
    }
    .panel h3{ margin:0; font-size:16px; font-weight:980; letter-spacing:-.2px; }
    .panel p{ margin:10px 0 0; color:var(--muted); font-size:13.8px; }
    .panel .list{
      margin:12px 0 0;
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
    }
    .panel .li{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.62);
      padding:12px 12px;
      display:flex; gap:10px; align-items:flex-start;
    }
    .li .t{ font-weight:950; font-size:13.3px; }
    .li .s{ color:var(--muted); font-size:12.6px; margin-top:2px; }
    .table-wrap{
      overflow:auto;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.62);
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:760px;
    }
    th, td{
      padding:14px 14px;
      border-bottom:1px solid rgba(17,24,39,.08);
      vertical-align:top;
      font-size:13.4px;
    }
    th{
      text-align:left;
      font-weight:980;
      background:linear-gradient(180deg, rgba(6,181,255,.08), rgba(10,166,166,.06));
      color:rgba(18,24,38,.92);
      position:sticky;
      top:0;
      z-index:1;
    }
    td .sub{
      color:var(--muted);
      margin-top:6px;
      font-size:12.7px;
    }
    .starbar{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    }
    .stars{
      display:inline-flex; gap:4px; align-items:center;
    }
    .stars svg{ width:16px; height:16px; }
    .rating{
      font-weight:980;
      font-size:18px;
      letter-spacing:-.3px;
    }
    .hl{
      display:inline-flex;
      align-items:center;
      padding:8px 10px;
      border-radius:999px;
      background:rgba(22,163,74,.10);
      border:1px solid rgba(22,163,74,.22);
      color:rgba(14,116,46,.98);
      font-weight:950;
      font-size:12.5px;
      white-space:nowrap;
    }

    .compare-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:12px;
      align-items:start;
    }
    .compare-card{
      padding:16px;
      border-radius:24px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.70);
      overflow:hidden;
    }
    .compare-card .top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .compare-card h3{
      margin:0;
      font-size:16px;
      font-weight:990;
      letter-spacing:-.2px;
    }
    .compare-card p{ margin:10px 0 0; color:var(--muted); font-size:13.8px; }
    .list-bars{
      margin-top:12px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .bar-row{
      display:grid;
      grid-template-columns: 170px 1fr 120px;
      gap:10px;
      align-items:center;
    }
    .bar-row .name{ font-weight:900; font-size:13.3px; color:rgba(18,24,38,.92); }
    .bar-track{
      height:12px;
      border-radius:999px;
      background:rgba(17,24,39,.08);
      overflow:hidden;
      position:relative;
    }
    .bar-fill{
      height:100%;
      border-radius:999px;
      background:linear-gradient(135deg, rgba(10,166,166,1), rgba(6,181,255,1));
      width:60%;
      transition: width .6s ease;
    }
    .bar-row .val{ text-align:right; font-weight:980; font-size:13.3px; color:rgba(18,24,38,.92); }

    .gallery{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
      align-items:stretch;
    }
    .case-card{
      padding:14px;
      border-radius:22px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.70);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex; flex-direction:column;
    }
    .case-card:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 50px rgba(6,181,255,.10);
      border-color:rgba(6,181,255,.22);
    }
    .case-img{
      border-radius:18px;
      overflow:hidden;
      border:1px solid rgba(17,24,39,.08);
      background:linear-gradient(135deg, rgba(6,181,255,.08), rgba(10,166,166,.06));
      position:relative;
    }
    .case-img .imgbox{
      aspect-ratio: 16 / 10;
      width:100%;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg, rgba(6,181,255,.08), rgba(10,166,166,.06));
    }
    .case-img img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }
    .case-card h3{ margin:12px 0 0; font-size:15px; font-weight:980; letter-spacing:-.2px; }
    .case-card p{ margin:8px 0 0; color:var(--muted); font-size:13.5px; }
    .case-foot{
      margin-top:12px;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
      justify-content:space-between;
    }
    .chip{
      display:inline-flex; align-items:center;
      padding:8px 10px;
      border-radius:999px;
      background:rgba(10,166,166,.10);
      border:1px solid rgba(10,166,166,.18);
      color:rgba(6,60,72,.95);
      font-weight:900;
      font-size:12.5px;
      white-space:nowrap;
    }

    .split{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }

    .article-list{
      display:flex; flex-direction:column; gap:10px;
    }
    .article-item{
      padding:14px;
      border-radius:22px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.70);
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .article-item:hover{
      transform:translateY(-2px);
      box-shadow:0 16px 40px rgba(6,181,255,.10);
      border-color:rgba(6,181,255,.22);
    }
    .article-item .meta{ min-width:0; }
    .article-item .t{
      font-weight:980; letter-spacing:-.2px;
      font-size:14.5px;
      margin:0;
    }
    .article-item .d{
      margin:8px 0 0;
      color:var(--muted);
      font-size:13.2px;
    }
    .article-item .go{
      flex:0 0 auto;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(10,166,166,.18);
      background:rgba(10,166,166,.08);
      color:rgba(6,60,72,.98);
      font-weight:950;
      font-size:12.5px;
      transition:transform .2s ease;
      white-space:nowrap;
    }
    .article-item:hover .go{ transform:translateX(2px); }

    .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .field{
      display:flex; flex-direction:column; gap:8px;
    }
    label{
      font-weight:900;
      font-size:13px;
      color:rgba(18,24,38,.92);
    }
    input, select, textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.78);
      padding:12px 12px;
      color:var(--text);
      outline:none;
      transition:border-color .15s ease, box-shadow .15s ease;
    }
    textarea{ min-height:110px; resize:vertical; }
    input:focus, select:focus, textarea:focus{
      border-color:rgba(6,181,255,.45);
      box-shadow:0 0 0 4px rgba(6,181,255,.14);
    }
    .form-actions{
      grid-column:1 / -1;
      display:flex; gap:12px; flex-wrap:wrap; align-items:center; justify-content:space-between;
      margin-top:6px;
    }
    .form-note{
      color:var(--muted);
      font-size:12.7px;
      max-width:56ch;
    }

    .faq{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    details{
      border-radius:22px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.70);
      padding:12px 12px;
      transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
    }
    details:hover{
      border-color:rgba(6,181,255,.22);
      box-shadow:0 16px 34px rgba(6,181,255,.10);
      transform:translateY(-2px);
    }
    summary{
      cursor:pointer;
      list-style:none;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:6px 6px;
      font-weight:980;
      font-size:14px;
      letter-spacing:-.15px;
    }
    summary::-webkit-details-marker{ display:none; }
    .sum-left{ display:flex; align-items:center; gap:12px; min-width:0; }
    .sum-ic{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(10,166,166,.18);
      background:linear-gradient(135deg, rgba(10,166,166,.14), rgba(6,181,255,.12));
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .sum-text{ min-width:0; }
    .sum-title{
      white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
      max-width:44ch;
    }
    .chev{
      width:18px; height:18px;
      border-radius:10px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.6);
      display:flex; align-items:center; justify-content:center;
      transition: transform .2s ease;
      flex:0 0 auto;
    }
    details[open] .chev{ transform: rotate(180deg); }
    .faq-body{
      padding:0 10px 12px 56px;
      color:var(--muted);
      font-size:13.6px;
    }

    .reviews{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .review{
      border-radius:24px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.70);
      padding:16px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex; flex-direction:column;
    }
    .review:hover{
      transform:translateY(-2px);
      box-shadow:0 16px 42px rgba(6,181,255,.10);
      border-color:rgba(6,181,255,.22);
    }
    .review-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .avatar{
      width:42px; height:42px; border-radius:16px;
      background:linear-gradient(135deg, rgba(10,166,166,.18), rgba(6,181,255,.14));
      border:1px solid rgba(10,166,166,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:980;
      color:rgba(6,60,72,.98);
      flex:0 0 auto;
    }
    .review .role{
      font-weight:980;
      font-size:13.5px;
      margin-top:2px;
    }
    .review .tag{
      margin-top:6px;
      color:var(--muted);
      font-size:12.7px;
      display:flex; gap:8px; flex-wrap:wrap;
      align-items:center;
    }
    .review .tag .dot{
      width:6px; height:6px; border-radius:999px; background:rgba(10,166,166,.55);
    }
    .quote{
      margin:12px 0 0;
      color:rgba(18,24,38,.86);
      font-size:13.6px;
    }

    .token-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .network{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    .network-row{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
    }
    .net-pill{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      font-weight:900;
      font-size:12.7px;
      color:rgba(18,24,38,.88);
      transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .net-pill:hover{
      transform:translateY(-2px);
      border-color:rgba(6,181,255,.22);
      box-shadow:0 14px 30px rgba(6,181,255,.08);
    }

    .timeline{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .t-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px;
      border-radius:22px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.70);
    }
    .t-dot{
      width:18px; height:18px; border-radius:10px;
      background:linear-gradient(135deg, rgba(10,166,166,1), rgba(6,181,255,1));
      box-shadow:0 0 0 4px rgba(6,181,255,.14);
      margin-top:3px;
      flex:0 0 auto;
    }
    .t-content .tt{
      font-weight:980;
      font-size:14.2px;
    }
    .t-content .td{
      margin-top:6px;
      color:var(--muted);
      font-size:13.4px;
    }

    .help-tags{
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .cloud{
      display:flex; flex-wrap:wrap; gap:10px;
      padding:2px 0;
    }
    .cloud .c{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      color:rgba(18,24,38,.86);
      font-weight:900;
      font-size:12.8px;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      cursor:pointer;
      user-select:none;
    }
    .cloud .c:hover{
      transform:translateY(-2px);
      border-color:rgba(6,181,255,.22);
      box-shadow:0 16px 34px rgba(6,181,255,.08);
    }

    .footer{
      padding:22px 0 26px;
      border-top:1px solid rgba(17,24,39,.08);
      background:linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.86));
    }
    .footer-inner{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:12px;
      align-items:start;
    }
    .foot-card{
      border-radius:24px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.70);
      padding:16px;
    }
    .foot-title{
      margin:0;
      font-weight:980;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .foot-desc{
      margin:10px 0 0;
      color:var(--muted);
      font-size:13.6px;
    }
    .links-grid{
      margin-top:12px;
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
    }
    .link-item{
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.62);
      font-weight:900;
      font-size:13px;
      color:rgba(18,24,38,.88);
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .link-item:hover{
      transform:translateY(-2px);
      box-shadow:0 16px 32px rgba(6,181,255,.08);
      border-color:rgba(6,181,255,.22);
    }
    .copyright{
      margin-top:14px;
      color:var(--muted);
      font-size:12.6px;
      display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap;
    }

    .float-contact{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:70;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .float-btn{
      width:52px; height:52px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.76);
      backdrop-filter: blur(10px);
      box-shadow:0 14px 34px rgba(0,28,55,.12);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      position:relative;
      overflow:hidden;
    }
    .float-btn:hover{
      transform:translateY(-3px);
      border-color:rgba(6,181,255,.22);
      box-shadow:0 22px 48px rgba(6,181,255,.16);
    }
    .float-btn .tip{
      position:absolute;
      right:58px;
      top:50%;
      transform:translateY(-50%);
      background:rgba(18,24,38,.92);
      color:#fff;
      padding:10px 12px;
      border-radius:14px;
      font-weight:850;
      font-size:12.5px;
      opacity:0;
      pointer-events:none;
      transition:opacity .15s ease;
      white-space:nowrap;
    }
    .float-btn:hover .tip{ opacity:1; }

    .toast{
      position:fixed;
      left:50%;
      bottom:18px;
      transform:translateX(-50%);
      background:rgba(18,24,38,.95);
      color:#fff;
      padding:12px 14px;
      border-radius:16px;
      font-weight:850;
      font-size:13px;
      box-shadow:0 20px 60px rgba(0,0,0,.25);
      opacity:0;
      pointer-events:none;
      transition:opacity .2s ease, transform .2s ease;
      z-index:90;
    }
    .toast.show{
      opacity:1;
      pointer-events:auto;
      transform:translateX(-50%) translateY(-6px);
    }

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

    @media (max-width: 980px){
      .hero-grid{ grid-template-columns:1fr; }
      .hero-right{ flex-direction:row; }
      .data-card{ flex:1; }
      .quick-actions{ flex:1; }
      .cards-3{ grid-template-columns:1fr; }
      .cards-4{ grid-template-columns:1fr 1fr; }
      .two-col{ grid-template-columns:1fr; }
      .compare-grid{ grid-template-columns:1fr; }
      .gallery{ grid-template-columns:1fr; }
      .reviews{ grid-template-columns:1fr; }
      .faq{ grid-template-columns:1fr; }
      .token-grid{ grid-template-columns:1fr; }
      .split{ grid-template-columns:1fr; }
      .footer-inner{ grid-template-columns:1fr; }
      .hero-title{ font-size:30px; }
      .bar-row{ grid-template-columns: 150px 1fr 110px; }
      .hero-right{ flex-direction:column; }
    }

    @media (max-width: 760px){
      .nav-links{ display:none; }
      .nav-cta{ display:none; }
      .mobile-toggle{ display:inline-flex; align-items:center; gap:10px; }
      .mobile-panel{ display:none; }
      .mobile-panel.show{ display:block; }
      .hero{ padding:22px 0 10px; }
      .hero-left{ padding:22px 16px 16px; }
      .hero-title{ font-size:26px; }
      .mini-item{ min-width:0; }
      .cards-4{ grid-template-columns:1fr; }
      .form-grid{ grid-template-columns:1fr; }
      .faq-body{ padding-left:12px; }
      .faq-body{ padding:0 10px 12px 10px; }
      .sum-title{ max-width:28ch; }
      table{ min-width:680px; }
      .float-contact{ right:10px; bottom:10px; }
      .float-btn{ width:50px; height:50px; border-radius:18px; }
    }