:root{
      --bg0:#0a0f1d;
      --bg1:#070b16;
      --paper:#ffffff;
      --ink:#0f172a;
      --muted:#5b6476;
      --line:rgba(15,23,42,.12);
      --line2:rgba(15,23,42,.08);
      --shadow:0 18px 60px rgba(13, 28, 70, .12);
      --shadow2:0 10px 26px rgba(10, 16, 32, .12);
      --r12:12px;
      --r16:16px;
      --r20:20px;
      --primary:#6d5cff;
      --primary2:#23d5ff;
      --primary3:#00ffa8;
      --accent:#ff3dce;
      --soft:#f3f6ff;
      --focus:rgba(109,92,255,.35);
      --container:1120px;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans SC","PingFang SC","Microsoft YaHei", sans-serif;
      color:var(--ink);
      background:
        radial-gradient(900px 420px at 18% -10%, rgba(109,92,255,.14), transparent 60%),
        radial-gradient(760px 380px at 78% 4%, rgba(35,213,255,.14), transparent 62%),
        radial-gradient(900px 420px at 35% 55%, rgba(0,255,168,.10), transparent 60%),
        linear-gradient(180deg, #fbfcff 0%, #f6f8ff 40%, #ffffff 100%);
      overflow-x:hidden;
    }

    .skip-link{
      position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip-link:focus{
      left:16px; top:16px; width:auto; height:auto;
      z-index:9999; background:#fff; padding:10px 12px; border-radius:10px; border:1px solid var(--line);
      box-shadow:var(--shadow2);
    }

    .container{
      width:100%;
      max-width:var(--container);
      padding:0 18px;
      margin:0 auto;
    }

    .site-header{
      position:sticky; top:0; z-index:50;
      background:rgba(255,255,255,.72);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(15,23,42,.08);
    }

    .nav-wrap{
      height:68px;
      display:flex; align-items:center; justify-content:space-between; gap:16px;
    }

    .brand-link{display:flex; align-items:center; gap:12px; text-decoration:none}
    .brand img{width:170px; max-width:170px}

    .desktop-nav{
      display:flex; align-items:center; gap:18px;
      white-space:nowrap;
      flex:1;
      justify-content:center;
    }
    .desktop-nav a{
      color:rgba(15,23,42,.78);
      text-decoration:none; font-size:14px; padding:8px 10px; border-radius:10px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
    }
    .desktop-nav a:hover{
      background:rgba(109,92,255,.10);
      color:rgba(15,23,42,.95);
      transform: translateY(-1px);
    }

    .nav-actions{display:flex; align-items:center; gap:10px}
    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      padding:10px 14px;
      border-radius:14px;
      text-decoration:none;
      border:1px solid transparent;
      font-weight:650;
      font-size:14px;
      line-height:1;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
      user-select:none;
      will-change: transform;
    }
    .btn:focus{outline:none; box-shadow:0 0 0 4px var(--focus)}
    .btn:hover{transform: translateY(-1px)}
    .btn:active{transform: translateY(0px)}
    .btn-primary{
      background: linear-gradient(135deg, var(--primary) 0%, rgba(109,92,255,.95) 35%, rgba(35,213,255,.92) 100%);
      color:#fff;
      box-shadow: 0 14px 38px rgba(109,92,255,.22);
      border-color: rgba(255,255,255,.12);
    }
    .btn-ghost{
      background: rgba(255,255,255,.7);
      color: rgba(15,23,42,.92);
      border-color: rgba(15,23,42,.12);
      box-shadow: 0 10px 24px rgba(10,16,32,.06);
    }
    .btn-lg{padding:12px 18px; border-radius:16px; font-size:15px}
    .btn-full{width:100%}

    .nav-toggle{
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.8);
      box-shadow: 0 10px 24px rgba(10,16,32,.06);
      display:none;
      align-items:center; justify-content:center;
      flex-direction:column;
      gap:6px;
      cursor:pointer;
    }
    .nav-toggle span{
      display:block; width:18px; height:2px; background: rgba(15,23,42,.78);
      border-radius:2px;
      transition: transform .2s ease, opacity .2s ease;
    }

    .mobile-drawer{
      position:fixed; inset:0;
      z-index:80;
      display:none;
      background: rgba(5,10,20,.46);
      backdrop-filter: blur(6px);
      padding:16px;
    }
    .mobile-drawer.open{display:block}
    .mobile-drawer-inner{
      width:min(520px, 100%);
      margin-left:auto;
      background: rgba(255,255,255,.92);
      border:1px solid rgba(255,255,255,.35);
      border-radius:18px;
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .mobile-drawer-header{
      display:flex; align-items:center; justify-content:space-between; padding:14px 16px;
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .mobile-brand-title{font-weight:850; letter-spacing:.2px}
    .drawer-close{
      width:44px; height:44px; border-radius:14px;
      border:1px solid rgba(15,23,42,.12); background: rgba(255,255,255,.7);
      cursor:pointer; display:flex; align-items:center; justify-content:center;
      font-size:20px; line-height:1;
    }
    .mobile-drawer-content{padding:10px 16px 16px; display:flex; flex-direction:column; gap:6px}
    .mobile-link{
      text-decoration:none; color: rgba(15,23,42,.92);
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.75);
      font-weight:650;
    }
    .mobile-link:hover{background: rgba(109,92,255,.08)}
    .mobile-divider{height:10px}
    
    .hero{
      position:relative;
      padding:40px 0 18px;
      overflow:hidden;
    }
    .bg-neo{
      position:absolute; inset:-160px -160px auto -160px;
      height:820px;
      background:
        radial-gradient(600px 320px at 15% 25%, rgba(109,92,255,.30), transparent 62%),
        radial-gradient(520px 280px at 78% 10%, rgba(35,213,255,.26), transparent 64%),
        radial-gradient(540px 300px at 55% 65%, rgba(0,255,168,.16), transparent 62%),
        linear-gradient(180deg, rgba(255,255,255,.0) 0%, rgba(246,248,255,.65) 40%, rgba(255,255,255,.0) 100%);
      filter: saturate(1.1);
      pointer-events:none;
    }
    .bg-neo:after{
      content:"";
      position:absolute; inset:0;
      background:
        linear-gradient(90deg, rgba(255,61,206,.12), transparent 40%),
        linear-gradient(180deg, rgba(109,92,255,.14), transparent 50%);
      mask-image: radial-gradient(circle at 30% 30%, rgba(0,0,0,1) 0%, rgba(0,0,0,.0) 70%);
      opacity:.7;
    }

    .hero-inner{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:22px;
      align-items:start;
      padding:18px 0 6px;
    }

    .pill-row{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:14px}
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.75);
      border:1px solid rgba(15,23,42,.10);
      color: rgba(15,23,42,.86);
      font-weight:650;
      font-size:13px;
      box-shadow: 0 10px 18px rgba(12,18,40,.05);
    }
    .pill.dark{
      background: rgba(10,16,32,.94);
      color:#fff;
      border-color: rgba(255,255,255,.12);
    }

    .hero-title{
      font-size: clamp(30px, 3.6vw, 46px);
      line-height:1.07;
      margin:0 0 10px;
      letter-spacing:-.6px;
      font-weight:900;
      color: rgba(8,12,24,.98);
    }
    .hero-subtitle{
      margin:0;
      font-size:16px;
      line-height:1.7;
      color: rgba(15,23,42,.76);
      max-width:58ch;
    }
    .hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
    .hero-mini{
      margin-top:22px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .mini-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 12px 24px rgba(10,16,32,.05);
    }
    .mini-icon{
      width:38px; height:38px; border-radius:14px;
      background: linear-gradient(135deg, rgba(109,92,255,.20), rgba(35,213,255,.16));
      display:flex; align-items:center; justify-content:center;
      font-size:18px;
      border:1px solid rgba(109,92,255,.18);
    }
    .mini-title{font-weight:850; color: rgba(15,23,42,.93); font-size:14px}
    .mini-desc{color: rgba(15,23,42,.68); font-size:13px; margin-top:2px; line-height:1.4}

    .hero-side{display:flex; flex-direction:column; gap:14px}
    .side-card{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      box-shadow: 0 18px 56px rgba(13,28,70,.10);
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .side-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(420px 180px at 10% 0%, rgba(109,92,255,.22), transparent 60%),
        radial-gradient(420px 180px at 90% 15%, rgba(35,213,255,.18), transparent 55%);
      pointer-events:none;
    }
    .side-card-top{position:relative}
    .side-label{
      font-size:12px; letter-spacing:.12em; text-transform:uppercase;
      color: rgba(15,23,42,.58);
      font-weight:800;
    }
    .side-title{font-weight:900; font-size:18px; margin-top:8px; color: rgba(15,23,42,.94)}
    .chips{
      display:flex; flex-wrap:wrap; gap:10px;
      position:relative;
      margin-top:12px;
    }
    .chip{
      padding:9px 11px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      font-weight:700;
      font-size:13px;
      color: rgba(15,23,42,.84);
      box-shadow: 0 10px 18px rgba(12,18,40,.05);
    }

    .side-card-bottom{
      margin-top:14px;
      display:flex; align-items:center; gap:12px;
      position:relative;
      border-top:1px dashed rgba(15,23,42,.14);
      padding-top:14px;
    }
    .sparkline{display:flex; gap:6px; align-items:flex-end}
    .sparkline span{
      width:7px; border-radius:6px;
      background: linear-gradient(180deg, rgba(109,92,255,.75), rgba(35,213,255,.55));
      box-shadow: 0 10px 20px rgba(109,92,255,.18);
      animation: bounce 1.6s ease-in-out infinite;
      height: 10px;
    }
    .sparkline span:nth-child(1){height:14px; animation-delay:.0s}
    .sparkline span:nth-child(2){height:22px; animation-delay:.1s}
    .sparkline span:nth-child(3){height:18px; animation-delay:.2s}
    .sparkline span:nth-child(4){height:28px; animation-delay:.3s}
    .sparkline span:nth-child(5){height:16px; animation-delay:.4s}
    @keyframes bounce{0%,100%{transform: translateY(0)}50%{transform: translateY(-6px)}}

    .side-bottom-text .side-bottom-main{font-weight:900; color: rgba(15,23,42,.92)}
    .side-bottom-text .side-bottom-sub{color: rgba(15,23,42,.66); font-size:13px; margin-top:2px}

    .data-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .data-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:18px;
      padding:14px 14px;
      box-shadow: 0 12px 30px rgba(10,16,32,.06);
      position:relative;
      overflow:hidden;
    }
    .data-card:before{
      content:"";
      position:absolute; inset:-1px;
      background: radial-gradient(320px 130px at 20% 0%, rgba(255,61,206,.10), transparent 60%);
      pointer-events:none;
    }
    .data-num{
      font-weight:950;
      font-size:34px;
      letter-spacing:-.6px;
      color: rgba(10,16,32,.94);
      position:relative;
    }
    .data-label{font-weight:850; margin-top:4px; color: rgba(15,23,42,.90); position:relative}
    .data-hint{color: rgba(15,23,42,.62); font-size:13px; margin-top:4px; position:relative}

    .hero-links{
      padding:10px 0 0;
    }
    .trust-row{
      display:flex; align-items:center; justify-content:space-between;
      gap:12px;
      padding:12px;
      border-radius:18px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 12px 30px rgba(10,16,32,.06);
      flex-wrap:wrap;
    }
    .trust-link{
      display:flex; align-items:center; gap:10px;
      text-decoration:none; color: rgba(15,23,42,.86);
      font-weight:800; font-size:13px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.65);
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
    }
    .trust-link:hover{
      transform: translateY(-1px);
      background: rgba(109,92,255,.08);
      border-color: rgba(109,92,255,.22);
    }
    .trust-dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--primary), var(--primary2));
      box-shadow: 0 0 0 4px rgba(109,92,255,.12);
    }

    .section{
      padding:54px 0;
    }
    .section.alt{
      background: linear-gradient(180deg, rgba(243,246,255,.55), rgba(255,255,255,0));
      border-top:1px solid rgba(15,23,42,.05);
      border-bottom:1px solid rgba(15,23,42,.05);
    }
    .section.compact-footer-links{padding:28px 0 34px}

    .section-head{
      text-align:left;
      margin-bottom:22px;
    }
    .eyebrow{
      font-weight:900;
      letter-spacing:.14em;
      text-transform:uppercase;
      font-size:12px;
      color: rgba(109,92,255,.85);
      margin-bottom:10px;
      display:inline-block;
      position:relative;
      padding-left:14px;
    }
    .eyebrow:before{
      content:"";
      position:absolute; left:0; top:50%;
      transform: translateY(-50%);
      width:8px; height:8px; border-radius:50%;
      background: linear-gradient(135deg, var(--primary), var(--primary2));
      box-shadow: 0 0 0 4px rgba(109,92,255,.12);
    }

    .section-head h2{
      margin:0;
      font-size: clamp(22px, 2.6vw, 30px);
      letter-spacing:-.35px;
      font-weight:950;
      color: rgba(8,12,24,.98);
    }
    .lead{
      margin:10px 0 0;
      color: rgba(15,23,42,.72);
      font-size:16px;
      line-height:1.75;
      max-width:70ch;
    }
    .lead-sm{color: rgba(15,23,42,.72); line-height:1.75; margin:10px 0 0; font-size:14px}

    .grid-2{display:grid; grid-template-columns:1fr 1fr; gap:16px}
    .grid-3{display:grid; grid-template-columns:repeat(3, 1fr); gap:16px}
    .grid-4{display:grid; grid-template-columns:repeat(4, 1fr); gap:14px}
    .tight .card-body{padding-top:4px}

    .card{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      box-shadow: 0 16px 46px rgba(13,28,70,.08);
      overflow:hidden;
    }
    .card .card-title{
      padding:16px 16px 0;
      font-weight:950;
      color: rgba(10,16,32,.94);
      font-size:16px;
    }
    .card .card-body{padding:12px 16px 16px}
    .card-highlight{
      background:
        radial-gradient(600px 240px at 30% -10%, rgba(109,92,255,.18), transparent 62%),
        radial-gradient(520px 240px at 90% 10%, rgba(35,213,255,.14), transparent 60%),
        rgba(255,255,255,.88);
      position:relative;
    }
    .card-highlight:after{
      content:"";
      position:absolute; inset:0;
      pointer-events:none;
      background: linear-gradient(135deg, rgba(255,61,206,.10), transparent 55%);
      opacity:.6;
    }

    .list{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px}
    .check{display:inline-flex; width:18px; height:18px; border-radius:8px; align-items:center; justify-content:center;
      background: rgba(0,255,168,.14); color: rgba(0,115,70,.95); font-weight:900; border:1px solid rgba(0,255,168,.22); margin-right:10px;
      font-size:12px;
    }
    .kpi-row{display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:12px; position:relative}
    .kpi{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:18px;
      padding:14px;
      box-shadow: 0 12px 26px rgba(10,16,32,.06);
    }
    .kpi-num{font-weight:950; font-size:18px; color: rgba(10,16,32,.95)}
    .kpi-desc{color: rgba(15,23,42,.68); margin-top:6px; font-weight:800; font-size:13px}
    .card-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; position:relative}

    .platform-intro{
      margin-top:16px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
      align-items:start;
    }
    .platform-right{background: rgba(255,255,255,.86); border:1px solid rgba(15,23,42,.10); border-radius:20px; box-shadow: 0 16px 46px rgba(13,28,70,.08); padding:16px}
    .platform-left{padding-top:4px}
    .cap-grid{display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:12px}
    .cap-item{
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 12px 26px rgba(10,16,32,.05);
    }
    .cap-ico{font-size:18px}
    .cap-title{font-weight:950; margin-top:8px; color: rgba(10,16,32,.95)}
    .cap-desc{color: rgba(15,23,42,.66); margin-top:5px; font-size:13px; line-height:1.45}
    .platform-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

    .grid-2 .card.tight{background: rgba(255,255,255,.86)}

    .card-steps .card-body{padding:0 16px 16px}
    .timeline{padding:12px 0 6px; display:flex; flex-direction:column; gap:12px}
    .time-item{display:flex; gap:12px; align-items:flex-start}
    .time-dot{
      width:12px; height:12px; border-radius:50%;
      background: linear-gradient(135deg, var(--primary), var(--primary2));
      box-shadow: 0 0 0 4px rgba(109,92,255,.12);
      margin-top:6px;
      flex:0 0 auto;
    }
    .time-title{font-weight:950; color: rgba(10,16,32,.95)}
    .time-desc{color: rgba(15,23,42,.66); font-size:13px; margin-top:4px}

    .service-card{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      box-shadow: 0 16px 46px rgba(13,28,70,.08);
      padding:16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .service-card:before{
      content:"";
      position:absolute; inset:-1px;
      background:
        radial-gradient(520px 180px at 25% 0%, rgba(109,92,255,.18), transparent 58%),
        radial-gradient(520px 180px at 85% 10%, rgba(35,213,255,.14), transparent 55%);
      opacity:.8;
      pointer-events:none;
    }
    .service-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 22px 70px rgba(13,28,70,.14);
      border-color: rgba(109,92,255,.22);
    }
    .service-top{display:flex; align-items:center; justify-content:space-between; gap:12px; position:relative}
    .service-ico{
      width:44px; height:44px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,255,255,.74);
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 12px 26px rgba(10,16,32,.05);
      font-size:18px;
    }
    .service-title{font-weight:950; color: rgba(10,16,32,.95); font-size:16px}
    .service-list{list-style:none; padding:0; margin:12px 0 0; display:flex; flex-direction:column; gap:10px; position:relative}
    .service-list li{color: rgba(15,23,42,.72); font-weight:700; font-size:14px; line-height:1.5}
    .service-foot{position:relative; margin-top:14px; display:flex; justify-content:flex-end}
    .text-link{
      color: rgba(109,92,255,.95);
      font-weight:850;
      text-decoration:none;
      padding:8px 10px;
      border-radius:12px;
      border:1px solid rgba(109,92,255,.22);
      background: rgba(109,92,255,.08);
      transition: transform .15s ease, background .15s ease;
      display:inline-flex; align-items:center; gap:8px;
    }
    .text-link:hover{transform: translateY(-1px); background: rgba(109,92,255,.12)}
    
    .mini-service{
      padding:16px;
      border-radius:20px;
      background: rgba(255,255,255,.84);
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 16px 46px rgba(13,28,70,.08);
      transition: transform .18s ease;
    }
    .mini-service:hover{transform: translateY(-3px)}
    .mini-service-top{display:flex; align-items:center; gap:10px}
    .mini-service-ico{
      width:44px; height:44px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 12px 26px rgba(10,16,32,.05);
      font-size:18px;
    }
    .mini-service-title{font-weight:950; color: rgba(10,16,32,.95); font-size:15px}
    .mini-service-desc{margin-top:10px; color: rgba(15,23,42,.68); font-size:13.5px; line-height:1.5}

    .feature-split{display:grid; grid-template-columns: 1.05fr .95fr; gap:16px; margin-top:16px}
    .compare-panel{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      box-shadow: 0 16px 46px rgba(13,28,70,.08);
      padding:16px;
      position:relative; overflow:hidden;
    }
    .compare-panel:before{
      content:"";
      position:absolute; inset:-1px;
      background:
        radial-gradient(520px 180px at 10% 0%, rgba(255,61,206,.12), transparent 58%),
        radial-gradient(520px 180px at 85% 10%, rgba(35,213,255,.12), transparent 55%);
      pointer-events:none;
      opacity:.9;
    }
    .panel-head{position:relative}
    .panel-title{font-weight:950; font-size:16px; color: rgba(10,16,32,.95)}
    .panel-sub{margin-top:6px; color: rgba(15,23,42,.66); font-size:13.5px}
    .price-ref{position:relative; margin-top:14px; display:flex; flex-direction:column; gap:10px}
    .price-row{
      display:flex; justify-content:space-between; align-items:center;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 12px 26px rgba(10,16,32,.05);
    }
    .price-key{font-weight:900; color: rgba(10,16,32,.92)}
    .price-val{color: rgba(15,23,42,.70); font-weight:800; font-size:13.5px}
    .panel-cta{position:relative; margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}

    .steps-compact{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      box-shadow: 0 16px 46px rgba(13,28,70,.08);
      padding:16px;
    }
    .compact-steps{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .cstep{display:flex; gap:12px; align-items:flex-start}
    .cstep-badge{
      min-width:92px;
      padding:10px 10px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(109,92,255,.08);
      color: rgba(109,92,255,.98);
      font-weight:950;
      text-align:center;
    }
    .cstep-title{font-weight:950; color: rgba(10,16,32,.95)}
    .cstep-desc{color: rgba(15,23,42,.66); font-size:13.5px; margin-top:4px; line-height:1.45}
    .notice{
      margin-top:14px;
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 12px 26px rgba(10,16,32,.05);
    }
    .notice-ico{font-size:18px}
    .notice-text{color: rgba(15,23,42,.66); font-weight:750; line-height:1.45}

    .solution-card{
      border-radius:20px;
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 16px 46px rgba(13,28,70,.08);
      padding:16px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .solution-card:hover{
      transform: translateY(-3px);
      border-color: rgba(35,213,255,.22);
      box-shadow: 0 24px 75px rgba(13,28,70,.14);
    }
    .solution-top{display:flex; align-items:center; gap:12px; justify-content:space-between}
    .solution-ico{
      width:44px; height:44px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 12px 26px rgba(10,16,32,.05);
      font-size:18px;
    }
    .solution-title{font-weight:950; color: rgba(10,16,32,.95); font-size:16px}
    .solution-desc{margin-top:10px; color: rgba(15,23,42,.68); line-height:1.6; font-weight:750}
    .solution-list{margin:12px 0 0; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px}
    .solution-list li{color: rgba(15,23,42,.72); font-weight:750; font-size:14px}
    .solution-foot{margin-top:14px}

    .card-map-like{
      background:
        radial-gradient(580px 240px at 20% 0%, rgba(35,213,255,.18), transparent 60%),
        radial-gradient(520px 240px at 90% 10%, rgba(109,92,255,.16), transparent 56%),
        rgba(255,255,255,.88);
    }
    .network-points{display:flex; flex-direction:column; gap:12px; margin-top:8px}
    .net-point{display:flex; gap:12px; align-items:flex-start}
    .net-dot{
      width:12px; height:12px; border-radius:50%;
      background: linear-gradient(135deg, var(--primary2), var(--primary));
      box-shadow: 0 0 0 4px rgba(35,213,255,.14);
      margin-top:6px;
      flex:0 0 auto;
    }
    .net-title{font-weight:950; color: rgba(10,16,32,.95)}
    .net-desc{color: rgba(15,23,42,.66); font-size:13.5px; margin-top:4px; line-height:1.45}

    .map-grid{display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:12px; padding:12px 16px 0}
    .map-block{
      border-radius:18px;
      padding:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 26px rgba(10,16,32,.05);
    }
    .map-k{font-weight:950; color: rgba(10,16,32,.92)}
    .map-v{color: rgba(15,23,42,.68); font-weight:800; margin-top:6px; line-height:1.45; font-size:13.5px}
    .qr-row{padding:14px 16px 0}
    .qr-label{font-weight:950; color: rgba(10,16,32,.94); margin-bottom:10px}
    .qr-box{
      display:flex; gap:14px; align-items:center;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 26px rgba(10,16,32,.05);
    }
    .qr-img{width:86px; height:auto; border-radius:16px; border:1px solid rgba(15,23,42,.10)}
    .qr-tip{color: rgba(15,23,42,.66); font-weight:780; line-height:1.45; font-size:13.5px}

    .card-cta .btn{box-shadow:none}

    .card-cta{margin-top:14px}

    .process-card{
      border-radius:20px;
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 16px 46px rgba(13,28,70,.08);
      padding:16px;
      position:relative;
      overflow:hidden;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .process-card:before{
      content:"";
      position:absolute; inset:-1px;
      background:
        radial-gradient(520px 200px at 0% 0%, rgba(109,92,255,.18), transparent 55%),
        radial-gradient(520px 200px at 100% 20%, rgba(35,213,255,.14), transparent 55%);
      opacity:.9; pointer-events:none;
    }
    .process-card:hover{transform: translateY(-3px); border-color: rgba(109,92,255,.22); box-shadow: 0 24px 75px rgba(13,28,70,.14)}
    .step-badge{
      font-weight:950;
      color: rgba(109,92,255,.98);
      letter-spacing:.06em;
      font-size:12px;
      text-transform:uppercase;
      position:relative;
    }
    .process-title{position:relative; margin-top:10px; font-weight:950; color: rgba(10,16,32,.95); font-size:16px}
    .process-desc{position:relative; margin-top:8px; color: rgba(15,23,42,.68); line-height:1.6; font-weight:760}
    .process-foot{position:relative; margin-top:14px}
    .micro{color: rgba(15,23,42,.56); font-weight:850; font-size:13px}

    .compact-table-wrap{
      margin-top:16px;
      background: rgba(255,255,255,.80);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      box-shadow: 0 16px 46px rgba(13,28,70,.08);
      padding:16px;
    }
    .table-title{font-weight:950; color: rgba(10,16,32,.95); font-size:15px; margin-bottom:10px}
    .table-scroll{overflow:auto; border-radius:14px; border:1px solid rgba(15,23,42,.08)}
    table{width:100%; border-collapse:collapse; min-width:760px; background:#fff}
    th,td{padding:12px 12px; text-align:left; border-bottom:1px solid rgba(15,23,42,.08); vertical-align:top}
    th{background: linear-gradient(180deg, rgba(109,92,255,.10), rgba(35,213,255,.06)); color: rgba(10,16,32,.92); font-weight:950; font-size:13.5px}
    td{color: rgba(15,23,42,.72); font-weight:750; font-size:14px}
    tr:last-child td{border-bottom:none}
    .table-cta{display:flex; gap:10px; justify-content:flex-end; flex-wrap:wrap; margin-top:12px}

    .cases-grid{margin-top:6px}
    .case-card{
      border-radius:20px;
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 16px 46px rgba(13,28,70,.08);
      overflow:hidden;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex; flex-direction:column;
    }
    .case-card:hover{transform: translateY(-3px); border-color: rgba(35,213,255,.22); box-shadow: 0 24px 75px rgba(13,28,70,.14)}
    .case-media{
      position:relative;
      background: rgba(10,16,32,.04);
    }
    .case-media img{
      display:block;
      width:100%;
      height:auto;
      max-width:100%;
      object-fit:cover;
      transform: scale(1.01);
      transition: transform .35s ease;
    }
    .case-card:hover .case-media img{transform: scale(1.04)}
    .case-badge{
      position:absolute; left:14px; top:14px;
      padding:9px 11px;
      border-radius:999px;
      background: rgba(10,16,32,.84);
      color:#fff;
      border:1px solid rgba(255,255,255,.16);
      font-weight:900;
      font-size:13px;
      box-shadow: 0 16px 40px rgba(0,0,0,.18);
    }
    .case-body{padding:14px 14px 16px; display:flex; flex-direction:column; gap:10px; flex:1}
    .case-body h3{margin:0; font-size:16px; font-weight:950; color: rgba(10,16,32,.95)}
    .case-body p{margin:0; color: rgba(15,23,42,.68); line-height:1.65; font-weight:760; font-size:14px}
    .case-foot{display:flex; justify-content:space-between; align-items:center; gap:10px; margin-top:auto}
    .meta{color: rgba(15,23,42,.56); font-weight:860; font-size:13px}

    .compare-top{display:grid; grid-template-columns: 0.98fr 1.02fr; gap:16px; align-items:stretch}
    .rating-card{
      padding:16px;
      border-radius:20px;
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(620px 240px at 10% 0%, rgba(255,61,206,.14), transparent 60%),
        radial-gradient(520px 240px at 90% 20%, rgba(35,213,255,.14), transparent 58%),
        rgba(255,255,255,.88);
      box-shadow: 0 16px 46px rgba(13,28,70,.08);
      display:flex; flex-direction:column; justify-content:center;
    }
    .rating-row{display:flex; gap:14px; align-items:center}
    .stars{font-size:22px; letter-spacing:2px; color: #ffcc33; text-shadow: 0 0 0 rgba(0,0,0,.0)}
    .rating-title{font-weight:950; color: rgba(10,16,32,.95); font-size:15.5px}
    .rating-score{margin-top:6px; font-weight:950; color: rgba(10,16,32,.95); font-size:14.5px}
    .rating-note{margin-top:10px; color: rgba(15,23,42,.66); font-weight:780; line-height:1.5}

    .compare-grid{
      background: rgba(255,255,255,.84);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      padding:16px;
      box-shadow: 0 16px 46px rgba(13,28,70,.08);
      display:grid;
      grid-template-columns:repeat(4, minmax(0, 1fr));
      gap:12px;
      align-content:start;
    }
    .compare-cell{
      padding:14px;
      border-radius:18px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 12px 26px rgba(10,16,32,.05);
    }
    .compare-k{font-weight:950; color: rgba(10,16,32,.92); font-size:13.5px}
    .compare-v{margin-top:8px; color: rgba(15,23,42,.68); font-weight:820; font-size:13.2px; line-height:1.4}

    .compare-table-wrap{
      margin-top:16px;
      background: rgba(255,255,255,.82);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      padding:16px;
      box-shadow: 0 16px 46px rgba(13,28,70,.08);
    }

    .faq-grid{display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:10px}
    .faq-item{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.84);
      box-shadow: 0 12px 30px rgba(10,16,32,.06);
      margin-bottom:12px;
      overflow:hidden;
    }
    .faq-q{
      width:100%;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding:14px 14px;
      border:none; background:transparent;
      cursor:pointer;
      text-align:left;
      font-weight:950;
      color: rgba(10,16,32,.95);
      font-size:14.5px;
    }
    .faq-a{
      max-height:0px;
      overflow:hidden;
      transition:max-height .25s ease;
      padding:0 14px;
      color: rgba(15,23,42,.68);
      line-height:1.75;
      font-weight:760;
      font-size:14px;
    }
    .faq-icon{
      width:12px; height:12px;
      border-radius:4px;
      background: linear-gradient(135deg, rgba(109,92,255,.22), rgba(35,213,255,.20));
      border:1px solid rgba(109,92,255,.22);
      position:relative;
      flex:0 0 auto;
    }
    .faq-icon:before, .faq-icon:after{
      content:"";
      position:absolute; left:50%; top:50%;
      transform: translate(-50%,-50%) rotate(0deg);
      background: rgba(10,16,32,.65);
      border-radius:2px;
    }
    .faq-icon:before{width:10px; height:2px}
    .faq-icon:after{width:2px; height:10px; transition: transform .25s ease, opacity .25s ease}
    .faq-q[aria-expanded="true"] .faq-icon:after{transform: translate(-50%,-50%) rotate(90deg); opacity:0.0}

    .faq-col{padding:2px}
    .faq-bottom-cta{
      margin-top:18px;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      padding:14px 16px;
      border-radius:20px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 16px 46px rgba(13,28,70,.08);
    }
    .faq-badge-line{display:flex; gap:10px; flex-wrap:wrap}
    .badge{
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      color: rgba(10,16,32,.90);
      font-weight:900;
      font-size:13px;
      box-shadow: 0 12px 26px rgba(10,16,32,.05);
    }
    .faq-cta-actions{display:flex; gap:10px; flex-wrap:wrap}

    .tag-cloud{display:flex; flex-wrap:wrap; gap:10px; padding:10px 0 0}
    .tag{
      padding:9px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      font-weight:860;
      color: rgba(15,23,42,.74);
      font-size:13px;
      box-shadow: 0 12px 26px rgba(10,16,32,.05);
    }
    .tag:hover{border-color: rgba(109,92,255,.25)}

    .form-card, .match-card, .token-card, .token-table-card, .contact-card, .join-card, .join-form-card{
      padding:16px;
    }
    .card.form-card{padding:16px}
    .card-title{padding:16px 16px 0}
    .form-card .card-title, .match-card .card-title, .token-card .card-title, .token-table-card .card-title,
    .contact-card .card-title, .join-card .card-title, .join-form-card .card-title{padding:16px 16px 0}

    .form{
      padding:12px 16px 0;
      display:flex; flex-direction:column; gap:12px;
    }
    .form-row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
    .field{display:flex; flex-direction:column; gap:8px}
    .field-label{font-weight:900; color: rgba(10,16,32,.92); font-size:13.5px}
    input,select,textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.85);
      padding:12px 12px;
      font-size:14px;
      color: rgba(15,23,42,.92);
      outline:none;
      box-shadow: 0 12px 26px rgba(10,16,32,.04);
      transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
    }
    input:focus,select:focus,textarea:focus{
      border-color: rgba(109,92,255,.32);
      box-shadow: 0 0 0 4px rgba(109,92,255,.18);
    }
    textarea{resize:vertical; min-height:120px}

    .form-actions{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; margin-top:2px}
    .form-privacy{
      display:flex; align-items:center; gap:8px;
      color: rgba(15,23,42,.62);
      font-weight:800; font-size:13px;
    }
    .lock{font-size:16px}

    .match-card .card-body{padding:0 16px 16px}
    .match-items{display:flex; flex-direction:column; gap:12px; padding:12px 16px 0}
    .match-item{display:flex; gap:12px; align-items:flex-start; padding:12px 12px; border-radius:18px; border:1px solid rgba(15,23,42,.10); background: rgba(255,255,255,.72); box-shadow: 0 12px 26px rgba(10,16,32,.05)}
    .match-ico{width:40px; height:40px; border-radius:16px; display:flex; align-items:center; justify-content:center; border:1px solid rgba(15,23,42,.10); background: rgba(109,92,255,.08); font-size:18px}
    .match-title{font-weight:950; color: rgba(10,16,32,.95)}
    .match-desc{color: rgba(15,23,42,.66); font-weight:780; font-size:13.5px; line-height:1.45; margin-top:4px}
    .match-cta{padding:14px 16px 0; display:flex; gap:10px; flex-wrap:wrap}
    .social-proof{padding:14px 16px 6px}
    .proof-row{display:flex; gap:10px; flex-wrap:wrap}

    .token-steps{padding:12px 0 0}
    .tstep{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 16px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 26px rgba(10,16,32,.05);
      margin:12px 16px 0;
    }
    .tno{
      width:40px; height:40px; border-radius:16px;
      background: linear-gradient(135deg, rgba(109,92,255,.14), rgba(35,213,255,.12));
      border:1px solid rgba(109,92,255,.22);
      color: rgba(109,92,255,.98);
      font-weight:950;
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .t-title{font-weight:950; color: rgba(10,16,32,.95)}
    .t-desc{color: rgba(15,23,42,.66); font-weight:780; font-size:13.5px; line-height:1.45; margin-top:4px}
    .token-foot{padding:14px 16px 16px; display:flex; gap:10px; flex-wrap:wrap}

    .token-table-card{padding:16px}
    .token-table{min-width:680px}
    .token-table th{font-size:13px}
    .callout{
      margin-top:12px;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 26px rgba(10,16,32,.05);
      display:flex; gap:12px; align-items:flex-start;
    }
    .callout-ico{font-size:18px; flex:0 0 auto}
    .callout-text{color: rgba(15,23,42,.66); font-weight:780; line-height:1.55}

    .pill-list{padding:12px 16px 16px; display:flex; flex-wrap:wrap; gap:10px}
    .skills-box{padding:14px 16px 16px}
    .skills-head{font-weight:950; color: rgba(10,16,32,.95)}
    .skills-tags{margin-top:10px; display:flex; flex-wrap:wrap; gap:10px}

    .card-review{padding:0}
    .review-list{padding:12px 16px 0; display:flex; flex-direction:column; gap:12px}
    .review-item{display:flex; gap:12px; align-items:flex-start; padding:12px 12px; border-radius:18px; border:1px solid rgba(15,23,42,.10); background: rgba(255,255,255,.72); box-shadow: 0 12px 26px rgba(10,16,32,.05)}
    .review-ico{width:40px; height:40px; border-radius:16px; display:flex; align-items:center; justify-content:center; border:1px solid rgba(15,23,42,.10); background: rgba(35,213,255,.08); font-size:18px}
    .review-title{font-weight:950; color: rgba(10,16,32,.95)}
    .review-desc{color: rgba(15,23,42,.66); font-weight:780; font-size:13.5px; line-height:1.45; margin-top:4px}

    .help-card{
      padding:16px;
      border-radius:20px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 16px 46px rgba(13,28,70,.08);
      display:flex; flex-direction:column; gap:10px;
      transition: transform .18s ease;
    }
    .help-card:hover{transform: translateY(-3px)}
    .help-title{font-weight:950; color: rgba(10,16,32,.95); font-size:16px}
    .help-desc{color: rgba(15,23,42,.68); line-height:1.6; font-weight:760}
    
    .wiki-card{
      border-radius:20px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 16px 46px rgba(13,28,70,.08);
      padding:16px;
      transition: transform .18s ease;
    }
    .wiki-card:hover{transform: translateY(-3px)}
    .wiki-title{font-weight:950; color: rgba(10,16,32,.95); font-size:16px}
    .wiki-desc{margin-top:8px; color: rgba(15,23,42,.68); font-weight:770; line-height:1.65}
    .wiki-meta{margin-top:12px; display:flex; flex-wrap:wrap; gap:10px}
    .chip-soft{
      background: rgba(109,92,255,.08) !important;
      border-color: rgba(109,92,255,.22) !important;
      color: rgba(109,92,255,.98) !important;
    }

    .article-grid{
      background: rgba(255,255,255,.84);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      box-shadow: 0 16px 46px rgba(13,28,70,.08);
      padding:16px;
    }
    .article-head-row{display:flex; justify-content:space-between; align-items:flex-end; gap:12px; flex-wrap:wrap}
    .article-title{font-weight:950; color: rgba(10,16,32,.95); font-size:16px}
    .article-hint{color: rgba(15,23,42,.62); font-weight:800}
    .article-list{margin-top:12px; display:flex; flex-direction:column; gap:10px}
    .article-item{
      text-decoration:none;
      display:flex; align-items:center; justify-content:space-between;
      gap:12px;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 26px rgba(10,16,32,.05);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .article-item:hover{transform: translateY(-2px); border-color: rgba(109,92,255,.24); background: rgba(109,92,255,.06)}
    .article-dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--primary), var(--primary2));
      box-shadow: 0 0 0 4px rgba(109,92,255,.12);
      flex:0 0 auto;
      margin-left:2px;
    }
    .article-main{flex:1}
    .article-name{font-weight:950; color: rgba(10,16,32,.95); font-size:14.5px}
    .article-desc{margin-top:4px; color: rgba(15,23,42,.66); font-weight:780; font-size:13.5px; line-height:1.45}
    .article-go{color: rgba(109,92,255,.98); font-weight:950; font-size:18px}
    .article-more-row{display:flex; justify-content:flex-end; gap:10px; flex-wrap:wrap; margin-top:14px}

    .quote-card{
      border-radius:20px;
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 16px 46px rgba(13,28,70,.08);
      padding:16px;
      transition: transform .18s ease, border-color .18s ease;
      display:flex; flex-direction:column; gap:12px;
    }
    .quote-card:hover{transform: translateY(-3px); border-color: rgba(255,61,206,.22)}
    .quote-top{display:flex; align-items:center; justify-content:space-between; gap:12px}
    .avatar{
      width:44px; height:44px; border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      font-weight:950; color: rgba(10,16,32,.92);
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(135deg, rgba(109,92,255,.12), rgba(35,213,255,.10));
      box-shadow: 0 12px 26px rgba(10,16,32,.05);
    }
    .quote-name{font-weight:950; color: rgba(10,16,32,.95)}
    .quote-stars{color:#ffcc33; font-weight:950}
    .quote-text{color: rgba(15,23,42,.70); line-height:1.7; font-weight:780}

    .contact-card, .contact-quick, .join-card, .join-form-card{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      box-shadow: 0 16px 46px rgba(13,28,70,.08);
    }
    .contact-grid{padding:12px 16px 0; display:flex; flex-direction:column; gap:12px}
    .contact-item{display:flex; gap:12px; align-items:flex-start; padding:12px; border-radius:18px; border:1px solid rgba(15,23,42,.10); background: rgba(255,255,255,.72); box-shadow: 0 12px 26px rgba(10,16,32,.05)}
    .contact-ico{
      width:40px; height:40px; border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(35,213,255,.08);
      display:flex; align-items:center; justify-content:center;
      font-size:18px; flex:0 0 auto;
    }
    .contact-k{font-weight:950; color: rgba(10,16,32,.92)}
    .contact-v{margin-top:4px; color: rgba(15,23,42,.72); font-weight:850}
    .contact-v a{color: rgba(109,92,255,.98); text-decoration:none}
    .contact-callout{
      margin:14px 16px 0;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 26px rgba(10,16,32,.05);
      display:flex; gap:12px; align-items:flex-start;
    }
    .contact-callout-ico{font-size:18px}
    .contact-callout-text{color: rgba(15,23,42,.66); font-weight:800; line-height:1.55}
    .contact-actions{padding:14px 16px 16px; display:flex; gap:10px; flex-wrap:wrap}

    .quick-list{padding:12px 16px 0; display:flex; flex-direction:column; gap:12px}
    .quick-link{
      text-decoration:none;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 26px rgba(10,16,32,.05);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .quick-link:hover{transform: translateY(-2px); border-color: rgba(109,92,255,.24); background: rgba(109,92,255,.06)}
    .quick-ico{
      width:40px; height:40px; border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(109,92,255,.08);
      display:flex; align-items:center; justify-content:center;
      font-size:18px; flex:0 0 auto;
    }
    .quick-title{font-weight:950; color: rgba(10,16,32,.95)}
    .quick-desc{margin-top:4px; color: rgba(15,23,42,.66); font-weight:780; line-height:1.45; font-size:13.5px}
    .contact-float-card{
      margin:14px 16px 16px;
      border-radius:20px;
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(520px 220px at 10% 0%, rgba(255,61,206,.12), transparent 55%),
        radial-gradient(520px 220px at 90% 10%, rgba(35,213,255,.12), transparent 55%),
        rgba(255,255,255,.72);
      box-shadow: 0 12px 30px rgba(10,16,32,.06);
      padding:12px;
      display:flex; align-items:center; gap:12px;
      justify-content:space-between;
      flex-wrap:wrap;
    }
    .mini-logo{width:82px; height:auto; border-radius:18px; border:1px solid rgba(15,23,42,.10); background:#fff; padding:6px}
    .contact-float-top{display:flex; align-items:center}
    .contact-float-body{flex:1; min-width:210px}
    .contact-float-title{font-weight:950; color: rgba(10,16,32,.95); margin-bottom:10px}

    .join-grid{padding:12px 16px 0; display:flex; flex-direction:column; gap:12px}
    .join-item{display:flex; gap:12px; align-items:flex-start; padding:12px; border-radius:18px; border:1px solid rgba(15,23,42,.10); background: rgba(255,255,255,.72); box-shadow: 0 12px 26px rgba(10,16,32,.05)}
    .join-ico{width:40px; height:40px; border-radius:16px; border:1px solid rgba(15,23,42,.10); background: rgba(0,255,168,.08); display:flex; align-items:center; justify-content:center; font-size:18px; flex:0 0 auto}
    .join-title{font-weight:950; color: rgba(10,16,32,.95)}
    .join-desc{margin-top:4px; color: rgba(15,23,42,.66); font-weight:780; line-height:1.45; font-size:13.5px}
    .join-actions{padding:14px 16px 16px; display:flex; gap:10px; flex-wrap:wrap}
    .join-tip{padding:0 16px 16px; color: rgba(15,23,42,.66); font-weight:800; display:flex; gap:12px; align-items:flex-start}

    .join-tip-ico{font-size:18px}

    .linkbar{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      padding:14px 16px;
      border-radius:20px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 16px 46px rgba(13,28,70,.08);
    }
    .linkbar-title{font-weight:950; color: rgba(10,16,32,.95)}
    .linkbar-items{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
    .linkbar-items a{
      text-decoration:none;
      color: rgba(109,92,255,.98);
      font-weight:850;
      padding:10px 12px;
      border-radius:14px;
      background: rgba(109,92,255,.08);
      border:1px solid rgba(109,92,255,.22);
      transition: transform .15s ease;
    }
    .linkbar-items a:hover{transform: translateY(-1px)}

    .compact-row{
      margin-top:14px;
      display:flex; align-items:center; justify-content:space-between;
      gap:12px; flex-wrap:wrap;
      color: rgba(15,23,42,.62);
      font-weight:800;
    }
    .muted{color: rgba(15,23,42,.62); font-weight:800}

    .site-footer{
      background: #0b1220;
      color:#e5eaf2;
      border-top:1px solid rgba(255,255,255,.08);
      padding:28px 0;
    }
    .footer-inner{max-width:var(--container); margin:0 auto; padding:0 18px}
    .footer-top{display:flex; align-items:flex-start; justify-content:space-between; gap:16px; flex-wrap:wrap}
    .footer-brand{display:flex; align-items:center; gap:12px}
    .footer-logo{width:64px; padding:6px; border-radius:18px; border:1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06)}
    .footer-brand-text{display:flex; flex-direction:column}
    .footer-name{font-weight:950; letter-spacing:.2px}
    .footer-sub{color: rgba(229,234,242,.74); font-weight:800; margin-top:4px; font-size:13.5px}
    .footer-links{display:flex; gap:12px; flex-wrap:wrap; align-items:center; justify-content:center}
    .footer-links a{
      color: rgba(229,234,242,.80);
      text-decoration:none;
      font-weight:850;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
      font-size:13.5px;
    }
    .footer-links a:hover{transform: translateY(-1px); border-color: rgba(35,213,255,.28); background: rgba(35,213,255,.08)}
    .footer-actions{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
    .site-footer .btn-primary{box-shadow: 0 16px 44px rgba(109,92,255,.26)}
    .site-footer .btn-ghost{
      background: rgba(255,255,255,.06);
      color: rgba(229,234,242,.92);
      border-color: rgba(255,255,255,.14);
      box-shadow:none;
    }
    .footer-divider{height:1px; background: rgba(255,255,255,.10); margin:18px 0}
    .footer-bottom{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; align-items:center}
    .copyright{color: rgba(229,234,242,.76); font-weight:850; font-size:13.5px}
    .footer-right{display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end}
    .footer-small{color: rgba(229,234,242,.74); font-weight:820; font-size:13.5px}
    .footer-small a{color: rgba(35,213,255,.92); text-decoration:none}

    .to-top{
      position:fixed;
      right:16px;
      bottom:92px;
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.86);
      box-shadow: 0 16px 46px rgba(13,28,70,.18);
      cursor:pointer;
      font-size:18px;
      font-weight:950;
      color: rgba(15,23,42,.88);
      display:flex; align-items:center; justify-content:center;
      opacity:0; transform: translateY(10px);
      pointer-events:none;
      transition: opacity .18s ease, transform .18s ease;
      z-index:60;
    }
    .to-top.show{opacity:1; transform: translateY(0); pointer-events:auto}

    .float-kefu{
      position:fixed;
      right:16px;
      bottom:32px;
      z-index:65;
      text-decoration:none;
      background: linear-gradient(135deg, rgba(109,92,255,.95), rgba(35,213,255,.90));
      color:#fff;
      border-radius:18px;
      padding:12px 12px;
      border:1px solid rgba(255,255,255,.18);
      box-shadow: 0 18px 60px rgba(109,92,255,.26);
      display:flex; align-items:center; gap:10px;
      transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
    }
    .float-kefu:hover{transform: translateY(-2px); filter: saturate(1.05)}
    .float-kefu-ico{
      width:38px; height:38px;
      border-radius:16px;
      background: rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
    }
    .float-kefu-text{font-weight:950; letter-spacing:.2px}

    @media (max-width: 980px){
      .desktop-nav{display:none}
      .nav-toggle{display:flex}
      .hero-inner{grid-template-columns: 1fr; }
      .hero-mini{grid-template-columns: 1fr 1fr}
      .compare-top{grid-template-columns: 1fr}
      .compare-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
      .grid-3{grid-template-columns:1fr}
      .grid-4{grid-template-columns:repeat(2, minmax(0,1fr))}
      .grid-2{grid-template-columns:1fr}
      .platform-intro{grid-template-columns:1fr}
      .feature-split{grid-template-columns:1fr}
      .faq-grid{grid-template-columns:1fr}
      .form-row{grid-template-columns:1fr}
      .table-scroll .compare-table{min-width:620px}
      .brand img{width:140px; max-width:140px}
    }

    @media (prefers-reduced-motion: reduce){
      *{scroll-behavior:auto !important}
      .sparkline span{animation:none !important}
      .btn, .service-card, .process-card, .case-card, .solution-card, .mini-service, .help-card, .wiki-card, .quote-card{transition:none !important}
    }

    .reveal{opacity:0; transform: translateY(10px); transition: opacity .5s ease, transform .5s ease}
    .reveal.in{opacity:1; transform: translateY(0)}
    html{scroll-behavior:smooth}