:root{
      --bg:#fbfbff;
      --card:#ffffff;
      --text:#1f2937;
      --muted:#5b6475;
      --line:rgba(25, 45, 84, .12);
      --soft:rgba(25, 45, 84, .06);

      --brand:#6d28d9;
      --brand2:#22c55e;
      --brand3:#06b6d4;

      --primary:#5b21b6;
      --primary2:#2563eb;

      --shadow: 0 18px 48px rgba(16,24,40,.10);
      --shadow2: 0 10px 30px rgba(16,24,40,.10);
      --radius: 18px;
      --radius2: 22px;

      --container: 1120px;
      --pad: 18px;
      --gap: 16px;

      --ring: 0 0 0 4px rgba(109,40,217,.14);
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC", "Hiragino Sans GB","Microsoft YaHei", Arial, "Noto Sans", sans-serif;
      color:var(--text);
      background: var(--bg);
      overflow-x:hidden;
    }

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

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

    .sr-only{
      position:absolute !important;
      width:1px;height:1px;overflow:hidden;clip:rect(1px,1px,1px,1px);white-space:nowrap;border:0;padding:0;margin:-1px;
    }

    .bg{
      position:fixed;inset:0;pointer-events:none;z-index:-1;
      background:
        radial-gradient(1200px 700px at 15% 0%, rgba(109,40,217,.14), transparent 55%),
        radial-gradient(900px 540px at 75% 10%, rgba(6,182,212,.12), transparent 52%),
        radial-gradient(1000px 600px at 50% 85%, rgba(34,197,94,.10), transparent 58%),
        linear-gradient(180deg, #fbfbff 0%, #f7f8ff 55%, #fbfbff 100%);
    }
    .bg-grid{
      position:absolute;inset:-40px;
      background-image:
        linear-gradient(to right, rgba(109,40,217,.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(6,182,212,.08) 1px, transparent 1px);
      background-size: 44px 44px;
      opacity:.22;
      transform: translateZ(0);
      mask-image: radial-gradient(circle at 40% 20%, rgba(0,0,0,1), rgba(0,0,0,.2) 55%, rgba(0,0,0,0) 78%);
    }
    .bg-glow{
      position:absolute;inset:0;
      background:
        radial-gradient(420px 250px at 25% 20%, rgba(109,40,217,.20), transparent 60%),
        radial-gradient(420px 250px at 70% 25%, rgba(6,182,212,.18), transparent 60%);
      opacity:.8;
      filter: blur(6px);
      transform: translateZ(0);
      animation: glowFloat 8s ease-in-out infinite;
    }
    @keyframes glowFloat{
      0%,100%{transform: translate3d(0,0,0)}
      50%{transform: translate3d(0,-10px,0)}
    }

    .topbar{
      position:sticky; top:0; z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(251,251,255,.65);
      border-bottom: 1px solid rgba(25,45,84,.08);
      transition: box-shadow .25s ease, background .25s ease, border-color .25s ease;
    }
    .topbar[data-elevate="true"]{
      box-shadow: 0 12px 30px rgba(16,24,40,.10);
      background: rgba(251,251,255,.82);
      border-bottom-color: rgba(25,45,84,.12);
    }
    .nav-wrap{
      height:68px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .brand-link{
      display:flex;align-items:center;gap:12px;text-decoration:none;color:inherit;
      min-width: 220px;
    }
    .ai-page-logo{
      width:42px;height:42px;object-fit:contain;display:block;
      border-radius:12px;
      background: rgba(109,40,217,.08);
      padding:6px;
      box-shadow: 0 10px 22px rgba(109,40,217,.12);
    }
    .brand-text{display:flex;flex-direction:column;line-height:1.1}
    .brand-name{font-weight:860;letter-spacing:.2px}
    .brand-sub{font-size:12px;color:var(--muted);margin-top:4px}

    .nav{display:flex;align-items:center;gap:10px;justify-content:center;flex:1}
    .nav-menu{
      display:flex;align-items:center;gap:14px;flex-wrap:wrap;justify-content:center;
      padding:6px 8px;border-radius:999px;
    }
    .nav-item{
      text-decoration:none;color:var(--muted);
      font-size:14px;
      padding:8px 10px;border-radius:999px;
      transition: transform .18s ease, background .18s ease, color .18s ease;
      border:1px solid transparent;
      white-space:nowrap;
    }
    .nav-item:hover{
      color:var(--text);
      background: rgba(109,40,217,.07);
      border-color: rgba(109,40,217,.12);
      transform: translateY(-1px);
    }

    .nav-cta{
      display:flex;align-items:center;gap:10px;justify-content:flex-end;
      min-width: 250px;
    }

    .btn{
      display:inline-flex;align-items:center;justify-content:center;
      gap:8px;
      padding:10px 14px;
      border-radius: 999px;
      border:1px solid rgba(25,45,84,.12);
      text-decoration:none;
      color: var(--text);
      background: #fff;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
      font-weight:700;
      font-size:14px;
      cursor:pointer;
      user-select:none;
      white-space:nowrap;
    }
    .btn:focus{outline:none; box-shadow: var(--ring)}
    .btn:hover{transform: translateY(-1px); box-shadow: 0 12px 26px rgba(16,24,40,.10)}
    .btn-primary{
      background: linear-gradient(135deg, rgba(91,33,182,1) 0%, rgba(37,99,235,1) 100%);
      border-color: rgba(91,33,182,.35);
      color:#fff;
      box-shadow: 0 16px 30px rgba(91,33,182,.22);
    }
    .btn-primary:hover{box-shadow: 0 22px 44px rgba(91,33,182,.28)}
    .btn-ghost{
      background: rgba(255,255,255,.70);
      border-color: rgba(25,45,84,.14);
      color: var(--text);
    }
    .btn-soft{
      background: rgba(109,40,217,.08);
      border-color: rgba(109,40,217,.16);
      color: var(--primary);
    }
    .btn-lg{padding:12px 18px;font-size:15px}
    .btn:active{transform: translateY(0px); box-shadow:none}

    .nav-toggle{
      display:none;
      width:44px;height:44px;border-radius:14px;
      border:1px solid rgba(25,45,84,.14);
      background:#fff;
      align-items:center;justify-content:center;
      gap:4px;flex-direction:column;cursor:pointer;
    }
    .nav-toggle-bar{
      width:18px;height:2px;background: rgba(31,41,55,.85);
      border-radius:3px;
    }

    .hero{
      padding: 28px 0 24px;
      position:relative;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 18px;
      align-items: start;
    }
    .hero-copy{
      padding: 24px 0 0;
    }
    .pill{
      display:inline-flex;align-items:center;gap:10px;
      padding:8px 12px;border-radius:999px;
      border:1px solid rgba(109,40,217,.18);
      background: rgba(109,40,217,.08);
      color: rgba(91,33,182,1);
      font-weight:750;
      font-size:13px;
    }
    .hero-title{
      margin: 14px 0 10px;
      font-size: clamp(28px, 4.1vw, 44px);
      line-height:1.06;
      letter-spacing: -0.6px;
      font-weight: 930;
      background: linear-gradient(90deg, rgba(91,33,182,1) 0%, rgba(37,99,235,1) 55%, rgba(6,182,212,1) 100%);
      -webkit-background-clip:text;
      background-clip:text;
      color: transparent;
      filter: drop-shadow(0 16px 30px rgba(91,33,182,.18));
    }
    .hero-desc{
      margin:0;
      max-width: 64ch;
      color: var(--muted);
      font-size:16px;
      line-height:1.7;
    }
    .hero-actions{
      margin-top: 18px;
      display:flex;flex-wrap:wrap;gap:12px;
      align-items:center;
    }

    .hero-mini{
      margin-top: 18px;
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 12px;
    }
    .mini{
      display:flex;gap:12px;align-items:center;
      padding:12px 12px;
      border-radius: 16px;
      border:1px solid rgba(25,45,84,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 10px 22px rgba(16,24,40,.06);
      transition: transform .22s ease, box-shadow .22s ease;
    }
    .mini:hover{transform: translateY(-2px); box-shadow: 0 16px 34px rgba(16,24,40,.10)}
    .mini-ico{
      width:40px;height:40px;border-radius:14px;
      display:flex;align-items:center;justify-content:center;
      background: radial-gradient(circle at 25% 20%, rgba(109,40,217,.22), rgba(6,182,212,.10));
      border:1px solid rgba(109,40,217,.16);
      color: rgba(91,33,182,1);
    }
    .mini-title{font-weight:850;font-size:14px}
    .mini-sub{color:var(--muted);font-size:12.5px;margin-top:4px}

    .hero-side{
      padding-top: 14px;
    }
    .data-cards{
      display:flex;flex-direction:column;gap:12px;
    }
    .data-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(25,45,84,.10);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow2);
      padding: 14px 14px;
      overflow:hidden;
      position:relative;
    }
    .data-card.neon{
      background:
        radial-gradient(600px 300px at 20% -10%, rgba(109,40,217,.18), transparent 55%),
        radial-gradient(520px 260px at 90% 20%, rgba(6,182,212,.16), transparent 55%),
        rgba(255,255,255,.82);
      border-color: rgba(109,40,217,.18);
    }
    .data-top{
      display:flex;align-items:center;justify-content:space-between;gap:10px;
      margin-bottom:10px;
    }
    .data-label{font-weight:900}
    .data-tag{
      font-size:12px;color: rgba(91,33,182,1);
      background: rgba(109,40,217,.10);
      border:1px solid rgba(109,40,217,.18);
      padding:6px 10px;border-radius:999px;font-weight:800;
      white-space:nowrap;
    }
    .data-value{
      font-weight:920;
      letter-spacing: -.2px;
      line-height:1.35;
    }
    .data-foot{color:var(--muted);font-size:12.5px;margin-top:6px}

    .quick-actions{
      border-radius: var(--radius2);
      border: 1px solid rgba(25,45,84,.10);
      background: rgba(255,255,255,.70);
      box-shadow: var(--shadow2);
      padding: 14px 14px;
    }
    .quick-title{font-weight:900;margin-bottom:10px}
    .quick-grid{
      display:grid;grid-template-columns:1fr 1fr;gap:10px;
    }
    .qa{
      display:flex;align-items:center;gap:10px;
      padding:12px 12px;border-radius:16px;
      border:1px solid rgba(25,45,84,.10);
      background:#fff;
      text-decoration:none;color:var(--text);
      font-weight:800;
      font-size:13.5px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .qa:hover{transform: translateY(-2px); box-shadow: 0 18px 40px rgba(16,24,40,.12); border-color: rgba(109,40,217,.20)}
    .qa-dot{
      width:10px;height:10px;border-radius:50%;
      background: linear-gradient(180deg, rgba(109,40,217,1), rgba(6,182,212,1));
      box-shadow: 0 0 0 6px rgba(109,40,217,.10);
    }

    .hero-note{
      margin-top:12px;
      display:flex;gap:12px;align-items:flex-start;
      padding: 12px 14px;border-radius: 18px;
      border:1px solid rgba(25,45,84,.10);
      background: rgba(255,255,255,.60);
      box-shadow: 0 14px 30px rgba(16,24,40,.08);
    }
    .note-ico{
      width:40px;height:40px;border-radius:14px;
      display:flex;align-items:center;justify-content:center;
      background: rgba(6,182,212,.10);
      border:1px solid rgba(6,182,212,.18);
      color: rgba(6,182,212,1);
      flex:0 0 auto;
    }
    .note-title{font-weight:900}
    .note-sub{color:var(--muted);font-size:12.7px;margin-top:6px;line-height:1.5}

    .hero-awards{
      margin-top: 18px;
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 12px;
    }
    .award{
      padding: 12px 12px;
      border-radius: 18px;
      border:1px solid rgba(25,45,84,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 14px 30px rgba(16,24,40,.06);
    }
    .award-num{
      font-weight:950;
      letter-spacing:-.2px;
      background: linear-gradient(90deg, rgba(91,33,182,1), rgba(6,182,212,1));
      -webkit-background-clip:text;background-clip:text;color:transparent;
      font-size:16px;
    }
    .award-desc{color:var(--muted);margin-top:8px;font-size:12.6px;line-height:1.4}

    .section{padding: 46px 0 20px;}
    .section-head{
      display:flex;align-items:flex-end;justify-content:space-between;
      gap: 16px;
      margin-bottom: 18px;
    }
    .h2{
      margin:0;
      font-size: 28px;
      letter-spacing:-.4px;
      font-weight: 930;
    }
    .lead{
      margin: 0;
      color: var(--muted);
      line-height:1.7;
      max-width: 68ch;
      font-size: 15.5px;
    }

    .two-col{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .align-top{align-items:start}

    .card{
      border-radius: var(--radius2);
      border: 1px solid rgba(25,45,84,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 18px 48px rgba(16,24,40,.06);
      padding: 16px 16px;
    }
    .card-alt{background:#fff}
    .card-title{font-weight:950;font-size:16px;margin-bottom:10px}
    .card-text{color:var(--muted);line-height:1.7}
    .feature-card{padding:18px}
    .alt-card{
      background:
        radial-gradient(650px 260px at 10% 0%, rgba(109,40,217,.12), transparent 55%),
        radial-gradient(520px 240px at 95% 40%, rgba(6,182,212,.12), transparent 50%),
        rgba(255,255,255,.80);
    }

    .bullets{margin-top:14px; display:flex; flex-direction:column; gap:10px;}
    .bullet{display:flex;gap:10px;align-items:center;color:var(--text);font-weight:800}
    .check{
      width:18px;height:18px;border-radius:6px;
      display:inline-block;
      background: rgba(34,197,94,.12);
      border:1px solid rgba(34,197,94,.22);
      position:relative; flex:0 0 auto;
    }
    .check:after{
      content:"";
      position:absolute;left:4px;top:3px;width:8px;height:5px;
      border-left:2px solid rgba(34,197,94,1);
      border-bottom:2px solid rgba(34,197,94,1);
      transform: rotate(-45deg);
    }

    .problem-grid{
      display:grid;grid-template-columns:1fr;gap:12px;
      margin-top:10px;
    }
    .problem{
      padding: 12px 12px;border-radius:18px;
      border:1px solid rgba(25,45,84,.10);
      background: rgba(255,255,255,.72);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .problem:hover{transform: translateY(-2px); box-shadow: 0 18px 40px rgba(16,24,40,.10)}
    .problem-ico{
      width:40px;height:40px;border-radius:14px;
      display:flex;align-items:center;justify-content:center;
      background: rgba(109,40,217,.10);
      border:1px solid rgba(109,40,217,.18);
      color: rgba(91,33,182,1);
      margin-bottom:10px;
    }
    .problem-title{font-weight:950}
    .problem-desc{color:var(--muted);margin-top:6px;line-height:1.6;font-size:13.5px}

    .split-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}

    .cards-3{display:grid;grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px;}
    .service-card{
      padding: 18px 16px;
      background:
        radial-gradient(520px 200px at 0% 0%, rgba(109,40,217,.12), transparent 55%),
        rgba(255,255,255,.86);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .service-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 26px 60px rgba(16,24,40,.12);
      border-color: rgba(109,40,217,.22);
    }
    .service-top{display:flex;align-items:center;gap:12px; margin-bottom:10px}
    .service-ico{
      width:44px;height:44px;border-radius:16px;
      display:flex;align-items:center;justify-content:center;
      border:1px solid rgba(109,40,217,.18);
      background: rgba(109,40,217,.10);
      color: rgba(91,33,182,1);
      flex: 0 0 auto;
    }
    .service-title{font-weight:950;font-size:16px}
    .service-desc{color:var(--muted);line-height:1.7;margin:0}
    .service-tags{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}
    .tag{
      display:inline-flex;align-items:center;justify-content:center;
      padding:7px 10px;border-radius:999px;
      background: rgba(25,45,84,.06);
      border:1px solid rgba(25,45,84,.10);
      color: var(--muted);
      font-weight:800;font-size:12.5px;
    }
    .tag-invert{
      background: rgba(109,40,217,.12);
      border-color: rgba(109,40,217,.22);
      color: rgba(91,33,182,1);
    }

    .tag-cloud{
      margin-top: 16px;
      border-radius: var(--radius2);
      border: 1px solid rgba(25,45,84,.10);
      background: rgba(255,255,255,.78);
      padding: 14px 16px;
      display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;
    }
    .tag-cloud-title{font-weight:950}
    .tag-cloud-items{display:flex;flex-wrap:wrap;gap:10px}
    .chip{
      border-radius:999px;
      padding:9px 12px;
      border:1px solid rgba(109,40,217,.18);
      background: rgba(109,40,217,.08);
      color: rgba(91,33,182,1);
      font-weight:850;
      cursor:pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .chip:hover{transform: translateY(-2px); box-shadow: 0 18px 36px rgba(91,33,182,.16)}
    .chip:focus{outline:none; box-shadow: var(--ring)}

    .cap-row{margin-top: 14px; display:grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items:start}
    .cap-card{border-radius: var(--radius2); border:1px solid rgba(25,45,84,.10); background: rgba(255,255,255,.78); padding: 16px 16px; box-shadow: 0 18px 48px rgba(16,24,40,.06);}
    .cap-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:10px}
    .cap-title{font-weight:950}
    .cap-note{color:var(--muted);font-size:12.5px}
    .check-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:10px}
    .check-list li{display:flex;align-items:flex-start;gap:10px;color:var(--text);font-weight:800}
    .check-list.compact li{font-weight:750}
    .check-list li:before{
      content:"";
      width:18px;height:18px;border-radius:7px;
      background: rgba(6,182,212,.10);
      border:1px solid rgba(6,182,212,.20);
      position:relative;flex:0 0 auto; margin-top:2px;
    }
    .check-list li:after{
      content:"";
      width:6px;height:11px;
      border-right:2px solid rgba(6,182,212,1);
      border-bottom:2px solid rgba(6,182,212,1);
      position:absolute;
      transform: translate(7px,5px) rotate(45deg);
      opacity:.95;
    }
    .check-list li{position:relative}
    .check-list li:after{right:auto;left:0}
    .check-list li:after{content:"";}

    .model-wrap{display:flex;flex-direction:column;gap:8px}
    .model-line{
      border-radius: 16px;
      padding: 10px 12px;
      border:1px solid rgba(25,45,84,.10);
      background: rgba(255,255,255,.72);
      color: var(--muted);
      font-weight:750;
      line-height:1.45;
    }

    .cap-card .split-actions{margin-top:14px}

    .timeline{
      display:grid;
      grid-template-columns: repeat(5, minmax(0,1fr));
      gap: 12px;
      align-items:stretch;
    }
    .time-item{
      padding: 14px 14px;
      border-radius: 20px;
      border:1px solid rgba(25,45,84,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 48px rgba(16,24,40,.05);
      position:relative;
      overflow:hidden;
      transition: transform .22s ease, box-shadow .22s ease;
    }
    .time-item:hover{transform: translateY(-3px); box-shadow: 0 26px 60px rgba(16,24,40,.10)}
    .time-item:before{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(380px 160px at 10% 0%, rgba(109,40,217,.14), transparent 55%);
      opacity:.8;
      pointer-events:none;
    }
    .time-dot{
      width:12px;height:12px;border-radius:50%;
      background: linear-gradient(180deg, rgba(109,40,217,1), rgba(6,182,212,1));
      box-shadow: 0 0 0 8px rgba(109,40,217,.10);
      margin-bottom:10px;
      position:relative;
    }
    .time-title{font-weight:950; margin-bottom:8px; position:relative}
    .time-desc{color:var(--muted);line-height:1.6; font-size:13.5px; position:relative}

    .cap-row .check-list li:after{transform: translate(6px,5px) rotate(45deg)}
    .cap-row .check-list li:before{margin-top:3px}

    .eval-card{padding: 18px}
    .eval-title{font-weight:980; margin-bottom:12px}
    .eval-grid{
      display:grid;grid-template-columns: repeat(2, minmax(0,1fr));gap:12px;
    }
    .eval-item{
      border-radius: 18px;
      border:1px solid rgba(25,45,84,.10);
      background: rgba(255,255,255,.74);
      padding: 12px 12px;
    }
    .eval-num{font-weight:980; color: rgba(91,33,182,1)}
    .eval-desc{color:var(--muted);margin-top:6px;font-weight:800;line-height:1.4;font-size:13.5px}
    .eval-action{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}

    .photo-card{
      background:
        radial-gradient(680px 300px at 0% 0%, rgba(6,182,212,.14), transparent 55%),
        radial-gradient(520px 240px at 100% 20%, rgba(109,40,217,.14), transparent 55%),
        rgba(255,255,255,.80);
    }
    .photo-head .photo-title{font-weight:980;font-size:16px}
    .photo-sub{color:var(--muted);margin-top:6px;line-height:1.6}
    .pair-grid{margin-top:14px;display:grid;grid-template-columns:1fr 1fr;gap:12px}
    .pair{
      padding: 12px 12px;border-radius:18px;
      border:1px solid rgba(25,45,84,.10);
      background: rgba(255,255,255,.74);
    }
    .pair-k{font-weight:950;color: rgba(31,41,55,.92);margin-bottom:6px}
    .pair-v{color:var(--muted);font-weight:800;line-height:1.5;font-size:13.5px}
    .mini-form-hint{margin-top:14px;border-radius:18px;border:1px dashed rgba(109,40,217,.22);background: rgba(255,255,255,.66);padding:12px 12px}
    .hint-title{font-weight:980}
    .hint-sub{color:var(--muted);margin-top:6px;line-height:1.6;font-size:13.5px}
    .mini-form-hint .btn{margin-top:12px}

    .cards-4{display:grid;grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px;}
    .solution-card{
      padding: 16px 16px;
      background:
        radial-gradient(560px 220px at 0% 0%, rgba(109,40,217,.10), transparent 55%),
        rgba(255,255,255,.82);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .solution-card:hover{transform: translateY(-3px); box-shadow: 0 26px 60px rgba(16,24,40,.10); border-color: rgba(109,40,217,.20)}
    .solution-head{display:flex;align-items:center;gap:12px;margin-bottom:10px}
    .solution-ico{
      width:44px;height:44px;border-radius:16px;
      display:flex;align-items:center;justify-content:center;
      border:1px solid rgba(109,40,217,.18);
      background: rgba(109,40,217,.10);
      color: rgba(91,33,182,1);
      flex:0 0 auto;
    }
    .solution-title{font-weight:980}
    .solution-desc{color:var(--muted);line-height:1.7; margin-bottom:12px; font-size:13.5px}
    .solution-list{display:flex;flex-direction:column;gap:10px}
    .solution-li{display:flex;gap:10px;align-items:flex-start;color:var(--text);font-weight:820}
    .dot{width:10px;height:10px;border-radius:4px; background: rgba(6,182,212,.18); border:1px solid rgba(6,182,212,.28); margin-top:3px; flex: 0 0 auto}

    .steps{display:grid;grid-template-columns: repeat(5, minmax(0,1fr));gap: 12px}
    .step{
      padding: 14px 14px;
      border-radius: 20px;
      border:1px solid rgba(25,45,84,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 48px rgba(16,24,40,.05);
    }
    .step-num{
      width:40px;height:40px;border-radius:16px;
      display:flex;align-items:center;justify-content:center;
      font-weight:980;
      background: rgba(109,40,217,.10);
      border:1px solid rgba(109,40,217,.18);
      color: rgba(91,33,182,1);
      margin-bottom:10px;
    }
    .step-title{font-weight:980;margin-bottom:6px}
    .step-desc{color:var(--muted);line-height:1.6;font-size:13.5px}

    .flow-cta{
      margin-top: 16px;
      border-radius: var(--radius2);
      border: 1px solid rgba(109,40,217,.18);
      background:
        radial-gradient(740px 280px at 20% 0%, rgba(109,40,217,.18), transparent 55%),
        radial-gradient(520px 240px at 90% 40%, rgba(6,182,212,.14), transparent 55%),
        rgba(255,255,255,.78);
      padding: 16px 16px;
      display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;
    }
    .flow-cta-title{font-weight:980;font-size:16px}
    .flow-cta-desc{color:var(--muted);margin-top:6px;line-height:1.6;font-weight:800}
    .flow-cta-actions{display:flex;gap:12px;flex-wrap:wrap}

    .network-grid{
      display:grid;grid-template-columns: 1fr 1fr 1fr;gap: 14px;
      align-items:stretch;
    }
    .network-card{padding: 16px 16px}
    .network-card.accent{
      background:
        radial-gradient(680px 260px at 0% 0%, rgba(109,40,217,.16), transparent 55%),
        radial-gradient(520px 240px at 95% 40%, rgba(6,182,212,.14), transparent 55%),
        rgba(255,255,255,.82);
    }
    .network-title{font-weight:980;font-size:16px;margin-bottom:8px}
    .network-desc{color:var(--muted);line-height:1.7;font-weight:800}
    .network-metrics{display:grid;grid-template-columns:1fr;gap:12px;margin-top:14px}
    .metric{
      padding: 12px 12px;border-radius:18px;border:1px solid rgba(25,45,84,.10);
      background: rgba(255,255,255,.72);
    }
    .metric-num{font-weight:980;color: rgba(91,33,182,1)}
    .metric-sub{color:var(--muted);margin-top:6px;font-weight:800;line-height:1.5;font-size:13.5px}
    .pill-list{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
    .network-action{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}

    .case-grid{display:grid;grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px}
    .case-card{padding: 16px 16px; background: rgba(255,255,255,.82); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease}
    .case-card:hover{transform: translateY(-3px); box-shadow: 0 26px 60px rgba(16,24,40,.10); border-color: rgba(109,40,217,.20)}
    .case-top{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:10px}
    .case-badge{
      padding:7px 10px;border-radius:999px;
      background: rgba(109,40,217,.10);
      border:1px solid rgba(109,40,217,.20);
      color: rgba(91,33,182,1);
      font-weight:900;font-size:12.5px;
      white-space:nowrap;
    }
    .case-rate{color:var(--muted);font-weight:800;font-size:12.5px; white-space:nowrap}
    .case-title{font-weight:980;font-size:16px;margin-bottom:8px}
    .case-desc{color:var(--muted);line-height:1.7;font-weight:800}
    .case-foot{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:14px}
    .case-meta{color:var(--muted);font-weight:800;font-size:12.8px}
    .link{color: rgba(91,33,182,1); text-decoration:none; font-weight:900}
    .link:hover{text-decoration:underline}

    .compare-grid{display:grid;grid-template-columns: .85fr 1.15fr;gap: 14px; align-items:start}
    .rating-card{
      padding: 18px 16px;
      background:
        radial-gradient(740px 280px at 15% -10%, rgba(109,40,217,.20), transparent 55%),
        radial-gradient(520px 240px at 95% 35%, rgba(6,182,212,.16), transparent 55%),
        rgba(255,255,255,.82);
      border:1px solid rgba(109,40,217,.18);
      box-shadow: 0 26px 60px rgba(16,24,40,.08);
      border-radius: var(--radius2);
    }
    .rating-top{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}
    .rating-badge{font-weight:980;color: rgba(91,33,182,1); background: rgba(109,40,217,.10); border:1px solid rgba(109,40,217,.20); padding:7px 10px; border-radius:999px}
    .rating-stars{font-size:16px;letter-spacing:2px;color: #eab308}
    .rating-value{margin-top:14px; display:flex; align-items:baseline;gap:8px}
    .rating-num{
      font-size: 46px; font-weight: 1000; letter-spacing:-1px;
      background: linear-gradient(90deg, rgba(91,33,182,1), rgba(37,99,235,1));
      -webkit-background-clip:text;background-clip:text;color:transparent;
    }
    .rating-suf{color:var(--muted);font-weight:900}
    .rating-desc{color:var(--muted);line-height:1.7;font-weight:800;margin-top:6px}
    .rating-action{margin-top:16px; display:flex; gap:12px; flex-wrap:wrap}

    .compare-table-wrap{padding: 16px 16px}
    .table-head{margin-bottom:12px}
    .table-title{font-weight:980;font-size:16px}
    .table-sub{color:var(--muted);line-height:1.6;font-weight:800;margin-top:6px}
    .table-scroll{overflow:auto; border-radius: 16px; border:1px solid rgba(25,45,84,.10); background: rgba(255,255,255,.74)}
    table.compare-table{width:100%; border-collapse:collapse; min-width: 640px}
    .compare-table th, .compare-table td{
      padding: 12px 12px; border-bottom:1px solid rgba(25,45,84,.08);
      text-align:left; vertical-align:top;
    }
    .compare-table th{
      color: rgba(31,41,55,.92);
      font-weight:980;
      background: rgba(109,40,217,.06);
      position:sticky; top:0; z-index:1;
    }
    .compare-table td{color:var(--muted); font-weight:800}
    .ok{
      color: rgba(16,185,129,1);
      font-weight:1000;
      white-space:nowrap;
      position:relative;
    }
    .ok:before{
      content:"";
      width:10px;height:10px;border-radius:4px;
      background: rgba(16,185,129,.18);
      border:1px solid rgba(16,185,129,.24);
      display:inline-block;
      margin-right:8px;
      transform: translateY(1px);
    }

    .table-foot{
      margin-top:12px; display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;
      padding-top:12px;
      border-top: 1px solid rgba(25,45,84,.08);
    }
    .table-foot-left .foot-label{font-weight:980}
    .table-foot-left .foot-desc{color:var(--muted);margin-top:6px;line-height:1.6;font-weight:800}
    .table-foot-right{flex:0 0 auto}

    .token-grid{display:grid;grid-template-columns: 1fr 1fr; gap: 14px}
    .token-card{padding: 18px 16px}
    .token-card.alt{
      background:
        radial-gradient(700px 260px at 0% 0%, rgba(6,182,212,.14), transparent 55%),
        radial-gradient(520px 240px at 95% 40%, rgba(109,40,217,.14), transparent 55%),
        rgba(255,255,255,.82);
    }
    .token-title{font-weight:980; font-size:16px}
    .token-desc{color:var(--muted); margin-top:6px; line-height:1.7; font-weight:800}
    .token-list{margin-top:14px; display:flex; flex-direction:column; gap:10px}
    .token-row{
      padding: 12px 12px;border-radius:18px;
      border:1px solid rgba(25,45,84,.10);
      background: rgba(255,255,255,.74);
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .token-k{font-weight:980}
    .token-v{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
    .chip-mini{
      padding:7px 10px;border-radius:999px;
      background: rgba(109,40,217,.10);
      border:1px solid rgba(109,40,217,.20);
      color: rgba(91,33,182,1);
      font-weight:950; font-size:12.5px;
      white-space:nowrap;
    }
    .chip-mini.alt{
      background: rgba(6,182,212,.10);
      border-color: rgba(6,182,212,.20);
      color: rgba(6,182,212,1);
    }
    .token-action{margin-top:16px; display:flex; gap:12px; flex-wrap:wrap}
    .how-steps{margin: 14px 0 0; padding: 0 0 0 18px; color:var(--muted); font-weight:850; line-height:1.8}
    .how-steps li{margin:10px 0}
    .token-note{
      margin-top:14px;
      border-radius: 18px;
      border:1px dashed rgba(109,40,217,.24);
      background: rgba(255,255,255,.66);
      padding: 12px 12px;
    }
    .token-note-title{font-weight:980}
    .token-note-desc{color:var(--muted);margin-top:6px;line-height:1.6;font-weight:800}

    .token-mini-form{margin-top:14px}
    .inline-form{
      display:flex; gap:10px; flex-wrap:wrap; align-items:flex-end;
    }
    .field{display:flex;flex-direction:column;gap:8px}
    .field-label{font-weight:900;color:var(--muted);font-size:12.5px}
    .input,.select,.textarea{
      border-radius: 14px;
      border:1px solid rgba(25,45,84,.14);
      background:#fff;
      padding: 11px 12px;
      font-size:14px;
      color: var(--text);
      outline:none;
      transition: box-shadow .2s ease, border-color .2s ease;
    }
    .input:focus,.select:focus,.textarea:focus{
      border-color: rgba(109,40,217,.35);
      box-shadow: var(--ring);
    }
    .select{min-width: 220px}
    .form-actions{margin-left:auto}
    .form-hint{margin-top:10px;color:var(--muted);font-weight:800;font-size:12.8px;line-height:1.6}

    .training-grid{display:grid;grid-template-columns: 1fr 1fr; gap: 14px}
    .train-card{padding: 18px 16px}
    .train-card.alt{
      background:
        radial-gradient(700px 260px at 0% 0%, rgba(109,40,217,.14), transparent 55%),
        radial-gradient(520px 240px at 95% 40%, rgba(6,182,212,.12), transparent 55%),
        rgba(255,255,255,.82);
    }
    .train-title{font-weight:980; font-size:16px}
    .train-desc{color:var(--muted);margin-top:10px;line-height:1.7;font-weight:850}
    .train-action{display:flex;gap:12px;flex-wrap:wrap;margin-top:16px}

    .audience{display:flex;flex-direction:column;gap:12px;margin-top:14px}
    .aud{
      padding: 12px 12px;border-radius:18px;border:1px solid rgba(25,45,84,.10);
      background: rgba(255,255,255,.74);
      display:flex;gap:12px;align-items:flex-start;
    }
    .aud-ico{
      width:42px;height:42px;border-radius:16px;display:flex;align-items:center;justify-content:center;
      border:1px solid rgba(109,40,217,.18);
      background: rgba(109,40,217,.10);
      color: rgba(91,33,182,1); flex:0 0 auto;
    }
    .aud-title{font-weight:980}
    .aud-desc{color:var(--muted);margin-top:6px;line-height:1.6;font-weight:820;font-size:13.5px}
    .train-mini{
      margin-top:14px;
      display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;
      padding: 12px 12px;border-radius:18px;border:1px dashed rgba(109,40,217,.22); background: rgba(255,255,255,.66);
    }
    .train-mini-title{font-weight:980}
    .train-mini-desc{color:var(--muted);margin-top:6px;font-weight:820;line-height:1.6}

    .match-grid{display:grid;grid-template-columns: 1.15fr .85fr; gap: 14px; align-items:start}
    .match-card{padding: 18px 16px}
    .aside-card{padding: 18px 16px}
    .match-title,.aside-title{font-weight:980;font-size:16px}
    .match-sub{color:var(--muted);margin-top:8px;font-weight:850;line-height:1.6}

    .form{margin-top:14px}
    .form-row{display:grid;grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px}
    .textarea{resize:vertical; min-height: 130px}
    .form-bottom{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-top:14px}
    .form-privacy{display:flex;align-items:center;gap:10px;color:var(--muted);font-weight:850}
    .privacy-dot{
      width:12px;height:12px;border-radius:4px;
      background: rgba(6,182,212,.12);
      border:1px solid rgba(6,182,212,.22);
    }

    .aside-box{
      margin-top:14px;
      border-radius: 18px;
      border:1px solid rgba(25,45,84,.10);
      background: rgba(255,255,255,.74);
      padding: 12px 12px;
      display:flex;flex-direction:column;gap:10px;
    }
    .aside-row{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}
    .aside-k{color:rgba(91,33,182,1);font-weight:980}
    .aside-v{color:var(--muted);font-weight:840;line-height:1.5;text-align:right}
    .aside-help{margin-top:14px;border-radius:18px;border:1px dashed rgba(109,40,217,.24);background: rgba(255,255,255,.66);padding:12px 12px}
    .aside-help-title{font-weight:980}
    .aside-help-desc{color:var(--muted);margin-top:6px;line-height:1.6;font-weight:850}
    .aside-cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:12px}

    .articles-grid{display:grid;grid-template-columns: 1fr 1fr; gap: 14px}
    .article-card{padding: 18px 16px}
    .article-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:12px}
    .article-title{font-weight:980;font-size:16px}
    .article-sub{color:var(--muted);font-weight:850;line-height:1.6;margin-top:6px}
    .article-list{display:flex;flex-direction:column;gap:10px}
    .article-item{
      display:flex;align-items:center;justify-content:space-between;gap:12px;
      padding: 12px 12px;border-radius:18px;
      border:1px solid rgba(25,45,84,.10);
      background: rgba(255,255,255,.74);
      text-decoration:none;color:var(--text);
      font-weight:900;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .article-item:hover{transform: translateY(-2px); box-shadow: 0 18px 40px rgba(16,24,40,.10); border-color: rgba(109,40,217,.20)}
    .article-bullet{
      width:10px;height:10px;border-radius:4px;
      background: rgba(109,40,217,.18);
      border:1px solid rgba(109,40,217,.26);
      box-shadow: 0 0 0 6px rgba(109,40,217,.08);
      flex:0 0 auto;
    }
    .article-name{color:var(--muted);font-weight:860;line-height:1.5;flex:1}
    .article-arrow{color: rgba(91,33,182,1);font-weight:980}
    .article-footer{margin-top:14px; display:flex; gap:12px; flex-wrap:wrap}

    .kb-card{padding: 18px 16px; background:
      radial-gradient(700px 260px at 0% 0%, rgba(109,40,217,.12), transparent 55%),
      radial-gradient(520px 240px at 95% 40%, rgba(6,182,212,.12), transparent 55%),
      rgba(255,255,255,.82);
    }
    .kb-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:10px}
    .kb-title{font-weight:980;font-size:16px}
    .kb-sub{color:var(--muted);font-weight:850;line-height:1.6;margin-top:6px}
    .kb-accordion{display:flex;flex-direction:column;gap:10px;margin-top:10px}
    .acc{
      width:100%;
      text-align:left;
      padding: 12px 12px;
      border-radius: 18px;
      border:1px solid rgba(25,45,84,.10);
      background: rgba(255,255,255,.74);
      cursor:pointer;
      display:flex;align-items:center;justify-content:space-between;gap:12px;
      font-weight:950;
      color: var(--text);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .acc:hover{transform: translateY(-2px); box-shadow: 0 18px 40px rgba(16,24,40,.10); border-color: rgba(109,40,217,.20)}
    .acc:focus{outline:none; box-shadow: var(--ring)}
    .acc-ico{
      width:20px;height:20px;border-radius:8px;
      border:1px solid rgba(109,40,217,.18);
      background: rgba(109,40,217,.08);
      position:relative; flex:0 0 auto;
    }
    .acc-ico:before{
      content:"";
      position:absolute;left:4px;top:9px;width:12px;height:2px;background: rgba(91,33,182,1);
      border-radius:3px;
      transform: rotate(0deg);
      transition: transform .2s ease;
    }
    .acc-ico:after{
      content:"";
      position:absolute;left:9px;top:4px;width:2px;height:12px;background: rgba(91,33,182,1);
      border-radius:3px;
      transition: transform .2s ease, opacity .2s ease;
    }
    .acc[aria-expanded="true"] .acc-ico:after{opacity:0}
    .panel{display:none}
    .panel-inner{
      padding: 0 12px 10px;
      color:var(--muted);
      line-height:1.7;
      font-weight:850;
    }
    .kb-tags{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}
    .tag-link{
      text-decoration:none;
      padding: 8px 10px;border-radius:999px;
      border:1px solid rgba(25,45,84,.10);
      background: rgba(255,255,255,.74);
      color: rgba(91,33,182,1);
      font-weight:950;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .tag-link:hover{transform: translateY(-2px); box-shadow: 0 18px 40px rgba(16,24,40,.10)}

    .help-grid{display:grid;grid-template-columns: .92fr 1.08fr;gap: 14px}
    .help-card{padding: 18px 16px}
    .help-title{font-weight:980;font-size:16px}
    .help-links{margin-top:14px; display:grid;grid-template-columns:1fr 1fr;gap:10px}
    .help-link{
      text-decoration:none;
      padding: 12px 12px;border-radius:18px;
      border:1px solid rgba(25,45,84,.10);
      background: rgba(255,255,255,.74);
      color: var(--text);
      font-weight:900;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .help-link:hover{transform: translateY(-2px); box-shadow: 0 18px 40px rgba(16,24,40,.10); border-color: rgba(109,40,217,.20)}
    .help-callout{
      margin-top:14px;
      padding: 12px 12px;border-radius:18px;
      border:1px dashed rgba(109,40,217,.24);
      background: rgba(255,255,255,.66);
    }
    .callout-title{font-weight:980}
    .callout-desc{color:var(--muted);margin-top:6px;line-height:1.6;font-weight:850}

    .faq-card{padding: 18px 16px}
    .faq-top{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:12px}
    .faq-sub{color:var(--muted);font-weight:850;margin-top:6px;line-height:1.6}
    .faq-list{display:flex;flex-direction:column;gap:10px}
    .faq-item{border-radius: 18px; border:1px solid rgba(25,45,84,.10); background: rgba(255,255,255,.74); overflow:hidden}
    .faq-q{
      width:100%; text-align:left;
      padding: 13px 13px;
      background: transparent;
      border:0;
      cursor:pointer;
      display:flex;align-items:center;justify-content:space-between;gap:12px;
      font-weight:980;
      color: var(--text);
    }
    .faq-q:focus{outline:none; box-shadow: var(--ring)}
    .faq-ico{
      width:22px;height:22px;border-radius:10px;
      border:1px solid rgba(109,40,217,.18);
      background: rgba(109,40,217,.08);
      position:relative; flex:0 0 auto;
    }
    .faq-ico:before{
      content:""; position:absolute; left:5px; top:10px;
      width:12px;height:2px;background: rgba(91,33,182,1); border-radius:3px;
    }
    .faq-ico:after{
      content:""; position:absolute; left:10px; top:5px;
      width:2px;height:12px;background: rgba(91,33,182,1); border-radius:3px;
      transition: opacity .18s ease;
    }
    .faq-item[aria-expanded="true"] .faq-ico:after{opacity:0}
    .faq-a{padding: 0 13px 13px}
    .faq-a p{margin:10px 0 0;color:var(--muted);line-height:1.7;font-weight:850}

    .faq-foot{
      margin-top:14px;
      border-top: 1px solid rgba(25,45,84,.08);
      padding-top:14px;
      display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;
    }
    .foot-label{font-weight:980}
    .foot-desc{color:var(--muted);margin-top:6px;line-height:1.6;font-weight:850}
    .faq-foot-right{flex:0 0 auto}

    .review-grid{display:grid;grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px}
    .quote-card{padding: 16px 16px}
    .quote-top{display:flex;align-items:center;gap:12px;margin-bottom:10px}
    .quote-avatar{
      width:44px;height:44px;border-radius:16px;
      display:flex;align-items:center;justify-content:center;
      border:1px solid rgba(109,40,217,.18);
      background: rgba(109,40,217,.10);
      color: rgba(91,33,182,1);
      font-weight:1000;
    }
    .quote-person{font-weight:980}
    .quote-text{color:var(--muted);line-height:1.75;font-weight:850}
    .quote-meta{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
    .meta-pill{
      padding: 7px 10px;border-radius:999px;
      border:1px solid rgba(25,45,84,.10);
      background: rgba(255,255,255,.74);
      color: rgba(91,33,182,1);
      font-weight:980;
      font-size:12.5px;
    }

    .contact-grid{display:grid;grid-template-columns: 1fr 1fr; gap: 14px; align-items:start}
    .contact-card{padding: 18px 16px}
    .contact-card.alt{
      background:
        radial-gradient(760px 280px at 0% 0%, rgba(109,40,217,.14), transparent 55%),
        radial-gradient(520px 240px at 95% 40%, rgba(6,182,212,.14), transparent 55%),
        rgba(255,255,255,.82);
    }
    .contact-title{font-weight:980;font-size:16px}
    .contact-items{margin-top:12px; display:flex;flex-direction:column;gap:10px}
    .contact-item{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}
    .contact-k{color: rgba(91,33,182,1);font-weight:980}
    .contact-v{color:var(--muted);font-weight:850;line-height:1.6;text-align:right}
    .link.footer-link-inline{display:inline}
    .contact-network{margin-top:14px; padding-top:14px; border-top:1px solid rgba(25,45,84,.08)}
    .contact-network-title{font-weight:980;margin-bottom:10px}
    .qr-wrap{display:flex;align-items:center;gap:14px}
    .qr-img{width:96px;height:96px;border-radius:18px;border:1px solid rgba(25,45,84,.10);background:#fff;object-fit:cover}
    .qr-title{font-weight:980}
    .qr-desc{color:var(--muted);margin-top:6px;line-height:1.6;font-weight:850}
    .contact-actions{margin-top:16px; display:flex;gap:12px;flex-wrap:wrap}

    .contact-tips{margin-top:12px; display:flex; flex-direction:column; gap:12px}
    .tip{
      padding: 12px 12px;border-radius:18px;
      border:1px solid rgba(25,45,84,.10);
      background: rgba(255,255,255,.74);
    }
    .tip-title{font-weight:980}
    .tip-desc{color:var(--muted);margin-top:6px;line-height:1.6;font-weight:850}
    .contact-case{margin-top:14px; border-radius:18px; border:1px dashed rgba(109,40,217,.24); background: rgba(255,255,255,.66); padding:12px 12px}
    .contact-case-title{font-weight:980}
    .contact-case-tags{display:flex;flex-wrap:wrap;gap:10px;margin-top:10px}
    .contact-hero{margin-top:16px; padding: 12px 12px;border-radius:18px;border:1px solid rgba(109,40,217,.18); background: rgba(255,255,255,.72)}
    .contact-hero-title{font-weight:980}
    .contact-hero-desc{color:var(--muted);margin-top:6px;font-weight:850;line-height:1.6;margin-bottom:10px}

    .join-grid{display:grid;grid-template-columns: 1fr 1fr; gap: 14px}
    .join-card{padding: 18px 16px}
    .join-card.alt{
      background:
        radial-gradient(760px 280px at 0% 0%, rgba(6,182,212,.14), transparent 55%),
        radial-gradient(520px 240px at 95% 40%, rgba(109,40,217,.14), transparent 55%),
        rgba(255,255,255,.82);
    }
    .join-title{font-weight:980;font-size:16px}
    .join-desc{color:var(--muted);margin-top:10px;line-height:1.7;font-weight:850}
    .join-actions{margin-top:16px; display:flex; gap:12px; flex-wrap:wrap}
    .join-steps{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .join-step{
      display:flex; gap:12px; align-items:flex-start;
      padding: 12px 12px;border-radius:18px;border:1px solid rgba(25,45,84,.10); background: rgba(255,255,255,.74);
    }
    .join-step-num{
      width:42px;height:42px;border-radius:16px;
      display:flex;align-items:center;justify-content:center;
      background: rgba(109,40,217,.10);
      border:1px solid rgba(109,40,217,.18);
      color: rgba(91,33,182,1);
      font-weight:1000;
      flex:0 0 auto;
    }
    .join-step-title{font-weight:980}
    .join-step-desc{color:var(--muted);margin-top:6px;line-height:1.6;font-weight:850}
    .join-note{margin-top:14px; border-radius:18px;border:1px dashed rgba(109,40,217,.24); background: rgba(255,255,255,.66); padding:12px 12px}
    .join-note-title{font-weight:980}
    .join-note-desc{color:var(--muted);margin-top:6px;line-height:1.6;font-weight:850}

    .partner-links{padding-top: 30px}
    .links-grid{
      display:grid;
      grid-template-columns: repeat(6, minmax(0,1fr));
      gap: 10px;
    }
    .partner-link{
      text-decoration:none;
      padding: 12px 10px;border-radius:18px;
      border:1px solid rgba(25,45,84,.10);
      background: rgba(255,255,255,.76);
      color: var(--text);
      font-weight:900;
      text-align:center;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
      font-size:13px;
      line-height:1.3;
    }
    .partner-link:hover{transform: translateY(-2px); box-shadow: 0 18px 40px rgba(16,24,40,.10); border-color: rgba(109,40,217,.20)}

    .footer{
      margin-top: 24px;
      border-top: 1px solid rgba(25,45,84,.10);
      background:
        radial-gradient(900px 360px at 15% 0%, rgba(109,40,217,.14), transparent 55%),
        radial-gradient(620px 280px at 85% 20%, rgba(6,182,212,.12), transparent 55%),
        rgba(248,250,255,.92);
      padding: 26px 0 18px;
    }
    .footer-wrap{display:flex;flex-direction:column;gap:16px}
    .footer-brand{display:flex;align-items:center;gap:12px}
    .footer-logo-img{width:46px;height:46px;border-radius:16px;border:1px solid rgba(25,45,84,.10);background:#fff;padding:7px;object-fit:contain}
    .footer-title{font-weight:1000}
    .footer-desc{color:var(--muted);margin-top:6px;font-weight:850;line-height:1.6}
    .footer-cols{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 14px;
      align-items:start;
    }
    .footer-h{font-weight:1000;margin-bottom:10px}
    .footer-link{
      display:block;
      text-decoration:none;
      color: var(--muted);
      font-weight:900;
      padding: 8px 0;
    }
    .footer-link:hover{color: rgba(91,33,182,1); text-decoration:underline}
    .footer-text{color:var(--muted);font-weight:850;line-height:1.7;margin: 8px 0}
    .footer-link-inline{color: rgba(91,33,182,1); text-decoration:none; font-weight:980}
    .footer-link-inline:hover{text-decoration:underline}
    .footer-btn{width:100%; margin-top:10px}

    .footer-bottom{
      margin-top: 18px;
      border-top: 1px solid rgba(25,45,84,.10);
      padding: 14px 0 0;
    }
    .footer-bottom-wrap{
      display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;
      color: var(--muted);
      font-weight:850;
      font-size:13px;
    }
    .footer-home{
      padding: 8px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(25,45,84,.10);
      color: rgba(91,33,182,1);
      text-decoration:none;
    }
    .to-top{
      border-radius:999px;
      padding: 10px 14px;
      border:1px solid rgba(25,45,84,.12);
      background: rgba(255,255,255,.70);
      color: var(--text);
      font-weight:980;
      cursor:pointer;
    }
    .to-top:hover{box-shadow: 0 18px 40px rgba(16,24,40,.10); transform: translateY(-2px)}
    .to-top:focus{outline:none; box-shadow: var(--ring)}

    .float-chat{
      position:fixed;
      right: 16px;
      bottom: 16px;
      z-index:70;
      display:flex;align-items:center;gap:10px;
      padding: 12px 14px;
      border-radius: 999px;
      border: 1px solid rgba(91,33,182,.22);
      background: rgba(255,255,255,.82);
      color: rgba(91,33,182,1);
      box-shadow: 0 24px 60px rgba(91,33,182,.20);
      cursor:pointer;
      transition: transform .2s ease, box-shadow .2s ease;
      font-weight:980;
    }
    .float-chat:hover{transform: translateY(-3px); box-shadow: 0 28px 72px rgba(91,33,182,.26)}
    .float-ic{
      width:34px;height:34px;border-radius:14px;
      display:flex;align-items:center;justify-content:center;
      background: rgba(91,33,182,.10);
      border:1px solid rgba(91,33,182,.18);
      color: rgba(91,33,182,1);
    }
    .float-txt{font-size:14px}

    .toast{
      position:fixed;left:50%;transform: translateX(-50%);
      bottom: 78px;
      z-index:90;
      padding: 12px 14px;
      border-radius: 16px;
      border: 1px solid rgba(16,185,129,.25);
      background: rgba(255,255,255,.90);
      box-shadow: 0 26px 60px rgba(16,24,40,.18);
      color: rgba(16,185,129,1);
      font-weight:1000;
      text-align:center;
      width: min(560px, calc(100% - 24px));
    }

    [data-animate-in]{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .in-view[data-animate-in]{
      opacity:1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce){
      .bg-glow{animation:none}
      [data-animate-in]{transition:none;opacity:1;transform:none}
      .mini:hover,.service-card:hover,.solution-card:hover,.case-card:hover,.partner-link:hover,.help-link:hover,.qa:hover,.btn:hover,.to-top:hover{transform:none}
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; gap: 14px}
      .hero-side{padding-top:0}
      .hero-mini{grid-template-columns: repeat(2, minmax(0,1fr))}
      .hero-awards{grid-template-columns: repeat(2, minmax(0,1fr))}
      .two-col{grid-template-columns:1fr}
      .cards-3{grid-template-columns:1fr}
      .cap-row{grid-template-columns:1fr}
      .timeline{grid-template-columns: 1fr; }
      .steps{grid-template-columns: 1fr; }
      .cards-4{grid-template-columns:1fr 1fr}
      .network-grid{grid-template-columns:1fr}
      .case-grid{grid-template-columns:1fr 1fr}
      .compare-grid{grid-template-columns:1fr}
      .token-grid{grid-template-columns:1fr}
      .training-grid{grid-template-columns:1fr}
      .match-grid{grid-template-columns:1fr}
      .articles-grid{grid-template-columns:1fr}
      .help-grid{grid-template-columns:1fr}
      .review-grid{grid-template-columns:1fr}
      .contact-grid{grid-template-columns:1fr}
      .join-grid{grid-template-columns:1fr}
      .links-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
      .footer-cols{grid-template-columns:1fr}
      .nav-menu{display:none}
      .nav-toggle{display:flex}
      .nav{justify-content:flex-start}
      .nav-menu{
        position:absolute;
        top: 72px;
        left: 12px;
        right: 12px;
        margin:0;
        background: rgba(255,255,255,.92);
        border:1px solid rgba(25,45,84,.12);
        border-radius: 18px;
        padding: 10px;
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        box-shadow: 0 28px 72px rgba(16,24,40,.14);
      }
      .nav-menu.show{display:flex}
      .nav-item{padding:12px 12px; border-radius:14px; border:1px solid rgba(25,45,84,.08); background: rgba(255,255,255,.78)}
      .nav-cta{min-width:auto}
      .hero{padding-top: 18px}
    }

    @media (max-width: 520px){
      .hero-mini{grid-template-columns:1fr}
      .cards-4{grid-template-columns:1fr}
      .case-grid{grid-template-columns:1fr}
      .form-row{grid-template-columns:1fr}
      .links-grid{grid-template-columns:1fr}
      .float-txt{display:none}
      .float-chat{padding: 12px 12px}
      .nav-wrap{height:64px}
      .brand-link{min-width:auto}
      .brand-sub{display:none}
    }