:root{
      --bg0:#fbfbfe;
      --bg1:#f6f7ff;
      --card:#ffffff;
      --text:#1f2430;
      --muted:#5b6476;
      --muted2:#7a8497;
      --line:rgba(20,26,35,.10);
      --line2:rgba(20,26,35,.08);
      --shadow: 0 18px 45px rgba(10,20,40,.08);
      --shadow2: 0 10px 28px rgba(10,20,40,.10);
      --radius:18px;
      --radius2:14px;
      --glowA: rgba(120, 84, 255, .18);
      --glowB: rgba(0, 193, 255, .16);
      --primary:#5a35ff;
      --primary2:#00c1ff;
      --primary3:#ff3ea5;
      --good:#0ea76b;
      --warn:#ffb020;
      --btnText:#ffffff;
      --focus: rgba(90,53,255,.35);
      --container: 1160px;
    }
    *{ box-sizing:border-box; }
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", sans-serif;
      color:var(--text);
      background: linear-gradient(180deg, var(--bg0) 0%, #ffffff 40%, var(--bg1) 100%);
      overflow-x:hidden;
    }
    .sr-only{
      position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
    }
    .page-bg{
      position:fixed; inset:0; pointer-events:none; z-index:-1;
      background:
        radial-gradient(900px 500px at 15% 10%, var(--glowA), transparent 60%),
        radial-gradient(800px 520px at 80% 15%, var(--glowB), transparent 60%),
        radial-gradient(900px 600px at 50% 80%, rgba(255,62,165,.12), transparent 55%);
      filter:saturate(110%);
    }

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

    .site-header{
      position:sticky; top:0; z-index:50;
      background: rgba(255,255,255,.72);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(20,26,35,.07);
    }
    .nav-container{
      display:flex; align-items:center; justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex; align-items:center; gap:10px;
      text-decoration:none; color:inherit;
      min-width:160px;
    }
    .ai-page-logo{ width:150px; }
    .primary-nav{
      display:flex; align-items:center; gap:18px;
      flex-wrap:nowrap;
    }
    .nav-link{
      text-decoration:none; color:var(--muted);
      font-weight:650; font-size:14px;
      padding:10px 0; position:relative;
      transition: color .2s ease;
      white-space:nowrap;
    }
    .nav-link:hover{ color:var(--text); }
    .nav-cta{ display:flex; align-items:center; gap:10px; }
    .nav-toggle{
      display:none;
      width:44px; height:44px;
      border-radius:12px;
      border:1px solid rgba(20,26,35,.10);
      background:rgba(255,255,255,.8);
      color:var(--text);
      align-items:center; justify-content:center;
      gap:4px;
      padding:0;
    }
    .nav-toggle__bar{
      width:18px; height:2px; background: currentColor; border-radius:2px; display:block;
    }

    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      border-radius:12px;
      text-decoration:none;
      padding:10px 14px;
      font-weight:760;
      font-size:14px;
      border:1px solid transparent;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:focus{ outline:none; box-shadow: 0 0 0 4px var(--focus); }
    .btn-primary{
      background: linear-gradient(135deg, var(--primary) 0%, #7b5cff 30%, var(--primary2) 100%);
      color:var(--btnText);
      box-shadow: 0 12px 30px rgba(90,53,255,.20);
      border-color: rgba(255,255,255,.25);
    }
    .btn-primary:hover{
      transform: translateY(-1px);
      box-shadow: 0 16px 40px rgba(90,53,255,.24);
    }
    .btn-ghost{
      background: rgba(255,255,255,.72);
      border-color: rgba(20,26,35,.12);
      color:var(--text);
    }
    .btn-ghost:hover{
      transform: translateY(-1px);
      box-shadow: 0 12px 28px rgba(10,20,40,.08);
      border-color: rgba(90,53,255,.25);
    }
    .btn-lg{ padding:12px 18px; font-size:15px; border-radius:14px; }
    .btn-sm{ padding:8px 12px; font-size:13px; border-radius:12px; }
    .btn-quiet{
      background: rgba(255,255,255,.5);
      border-color: rgba(20,26,35,.10);
      color: var(--muted);
    }
    .btn-quiet:hover{ transform: translateY(-1px); border-color: rgba(20,26,35,.18); color:var(--text); }

    .hero{
      position:relative;
      padding:34px 0 22px;
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute; inset:-2px -2px auto -2px;
      height: 520px;
      background:
        radial-gradient(900px 350px at 20% 0%, rgba(90,53,255,.28), transparent 58%),
        radial-gradient(750px 320px at 85% 15%, rgba(0,193,255,.22), transparent 60%),
        radial-gradient(800px 420px at 50% 40%, rgba(255,62,165,.15), transparent 62%);
      filter:saturate(115%);
      z-index:-1;
    }

    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:18px;
      align-items:start;
      padding:10px 0 6px;
    }
    .hero-left{ padding:10px 0; }
    .hero-badge{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.70);
      border: 1px solid rgba(20,26,35,.10);
      box-shadow: 0 10px 24px rgba(10,20,40,.06);
      color: var(--muted);
      font-weight:720;
      font-size:13px;
      margin-bottom:14px;
    }
    .hero-badge .dot{
      width:10px;height:10px;border-radius:50%;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%);
      box-shadow: 0 0 0 4px rgba(90,53,255,.12);
      animation: pulse 2.2s ease-in-out infinite;
    }
    @keyframes pulse{
      0%,100%{ transform: scale(1); opacity:.9;}
      50%{ transform: scale(1.12); opacity:1;}
    }

    .hero-title{
      margin:0;
      font-size:46px;
      line-height:1.08;
      letter-spacing:-.02em;
      font-weight:860;
      color: #141a28;
    }
    .hero-subtitle{
      margin:14px 0 0;
      max-width: 620px;
      color: var(--muted);
      font-size:16px;
      line-height:1.7;
      font-weight:620;
    }
    .hero-actions{ display:flex; gap:12px; margin-top:18px; flex-wrap:wrap; }
    .hero-quick{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
      margin-top:18px;
    }
    .quick-item{
      background: rgba(255,255,255,.66);
      border:1px solid rgba(20,26,35,.10);
      border-radius:16px;
      padding:12px 12px;
      box-shadow: 0 10px 26px rgba(10,20,40,.06);
      display:flex; gap:10px;
      align-items:flex-start;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .quick-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(10,20,40,.10);
      border-color: rgba(90,53,255,.22);
    }
    .quick-icon{
      width:36px; height:36px;
      border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      color: #3b2b8a;
      background: linear-gradient(135deg, rgba(90,53,255,.10), rgba(0,193,255,.10));
      border: 1px solid rgba(90,53,255,.14);
      flex:0 0 auto;
    }
    .quick-title{ font-weight:850; font-size:13.5px; color:#141a28; }
    .quick-desc{ font-size:12.5px; color:var(--muted); margin-top:4px; line-height:1.45; font-weight:620; }

    .hero-right{ padding:10px 0; }
    .hero-panel{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,35,.10);
      border-radius:var(--radius);
      box-shadow: var(--shadow2);
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .hero-panel::after{
      content:"";
      position:absolute; inset:-60px -40px auto -40px;
      height:160px;
      background: radial-gradient(220px 120px at 40% 40%, rgba(90,53,255,.22), transparent 65%),
                  radial-gradient(200px 130px at 70% 30%, rgba(0,193,255,.18), transparent 62%);
      filter:saturate(120%);
      pointer-events:none;
    }
    .panel-head{ position:relative; z-index:1; }
    .panel-title{ font-weight:900; font-size:15px; color:#141a28; }
    .panel-sub{ margin-top:6px; color:var(--muted); font-weight:650; font-size:13px; }
    .metric-grid{
      position:relative; z-index:1;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:14px;
    }
    .metric-card{
      background: rgba(255,255,255,.68);
      border:1px solid rgba(20,26,35,.10);
      border-radius:16px;
      padding:12px 12px;
      transition: transform .16s ease, border-color .16s ease;
      min-height:88px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      gap:6px;
    }
    .metric-card:hover{
      transform: translateY(-2px);
      border-color: rgba(90,53,255,.22);
    }
    .metric-number{
      font-weight:950; font-size:22px;
      color:#141a28;
      letter-spacing:-.02em;
    }
    .spark{ color: #ff4fb6; }
    .metric-label{
      color:var(--muted);
      font-weight:650;
      font-size:12.5px;
      line-height:1.35;
    }
    .panel-cta{
      position:relative; z-index:1;
      display:flex; gap:10px; margin-top:14px; flex-wrap:wrap;
    }
    .panel-foot{
      position:relative; z-index:1;
      margin-top:14px;
      padding-top:12px;
      border-top:1px solid rgba(20,26,35,.08);
      display:flex; gap:10px; align-items:flex-start;
    }
    .foot-dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary3) 100%);
      margin-top:4px;
      box-shadow: 0 0 0 4px rgba(255,62,165,.12);
    }
    .foot-text{
      color:var(--muted);
      font-weight:650; font-size:13px; line-height:1.55;
    }

    .section{
      padding:54px 0;
      position:relative;
    }
    .section-soft{
      background: linear-gradient(180deg, rgba(90,53,255,.06), rgba(0,193,255,.03)) ;
      border-top: 1px solid rgba(20,26,35,.06);
      border-bottom: 1px solid rgba(20,26,35,.06);
    }
    .section-head{
      display:flex; flex-direction:column; gap:10px;
      margin-bottom:18px;
    }
    .section-head-tight{ margin-bottom:12px; }
    .h2{
      margin:0;
      font-size:30px;
      line-height:1.2;
      font-weight:920;
      letter-spacing:-.02em;
    }
    .h2-small{ font-size:24px; }
    .h2 + .lead{ margin-top:6px; }
    .lead{
      margin:0;
      color:var(--muted);
      font-weight:650;
      font-size:15.5px;
      line-height:1.75;
      max-width: 820px;
    }
    .h3{
      margin:0;
      font-size:17px;
      font-weight:900;
      letter-spacing:-.01em;
      color:#141a28;
      line-height:1.35;
    }
    .p{
      margin:10px 0 0;
      color:var(--muted);
      font-weight:620;
      line-height:1.7;
      font-size:14.6px;
    }
    .p + .tag-row{ margin-top:12px; }

    .about-grid{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:14px;
      align-items:stretch;
      margin-top:10px;
    }
    .about-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,35,.10);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 12px 28px rgba(10,20,40,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .about-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(10,20,40,.10);
      border-color: rgba(90,53,255,.20);
    }
    .about-card.accent{
      background:
        linear-gradient(180deg, rgba(90,53,255,.09), rgba(0,193,255,.06)),
        rgba(255,255,255,.75);
      border-color: rgba(90,53,255,.18);
    }
    .card-kicker{
      color:#4a3aa7;
      font-weight:900;
      font-size:12.5px;
      letter-spacing:.08em;
      text-transform:uppercase;
      margin-bottom:8px;
    }
    .tag-row{
      display:flex; gap:8px; flex-wrap:wrap;
      margin-top:12px;
    }
    .tag{
      padding:7px 10px;
      border-radius:999px;
      background: rgba(90,53,255,.08);
      border:1px solid rgba(90,53,255,.14);
      color:#3c2b8a;
      font-weight:760;
      font-size:12.5px;
    }
    .about-cta{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
    .check-list{ margin-top:12px; display:flex; flex-direction:column; gap:10px; }
    .check-item{ display:flex; gap:10px; align-items:flex-start; color:var(--muted); font-weight:650; font-size:14px; }
    .check-icon{ width:22px;height:22px; border-radius:7px; display:flex; align-items:center; justify-content:center;
      background: rgba(14,167,107,.10);
      border:1px solid rgba(14,167,107,.18);
      color: #0ea76b;
      font-weight:950;
      flex:0 0 auto;
    }

    .service-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
      margin-top:10px;
    }
    .svc-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,35,.10);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 10px 24px rgba(10,20,40,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height: 175px;
      display:flex; flex-direction:column;
    }
    .svc-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(10,20,40,.10);
      border-color: rgba(90,53,255,.20);
    }
    .svc-top{ display:flex; gap:12px; align-items:flex-start; }
    .svc-icon{
      width:42px;height:42px;
      border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      color:#3b2b8a;
      background: linear-gradient(135deg, rgba(90,53,255,.10), rgba(0,193,255,.10));
      border:1px solid rgba(90,53,255,.14);
      flex: 0 0 auto;
    }
    .link-more{
      margin-top:auto;
      text-decoration:none;
      color:#3c2b8a;
      font-weight:850;
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding-top:12px;
    }
    .link-more::after{
      content:"";
      width:9px;height:9px;
      border-right:2px solid currentColor;
      border-top:2px solid currentColor;
      transform: rotate(45deg);
      margin-top:2px;
      opacity:.85;
    }
    .link-more:hover{ text-decoration:underline; }

    .timeline{
      position:relative;
      margin-top:14px;
      padding:16px 0 8px;
      display:flex;
      flex-wrap:wrap;
      gap:14px;
    }
    .timeline-line{
      position:absolute; left:50%; top:22px; bottom:18px;
      width:2px;
      background: linear-gradient(180deg, rgba(90,53,255,.35), rgba(0,193,255,.25));
      transform: translateX(-50%);
      border-radius:2px;
      opacity:.9;
    }
    .timeline-item{
      position:relative;
      flex:1 1 320px;
      display:flex; gap:14px;
      padding:14px;
      background: rgba(255,255,255,.65);
      border:1px solid rgba(20,26,35,.10);
      border-radius: var(--radius);
      box-shadow: 0 10px 24px rgba(10,20,40,.06);
      align-items:flex-start;
      transition: transform .18s ease, border-color .18s ease;
    }
    .timeline-item:hover{
      transform: translateY(-2px);
      border-color: rgba(90,53,255,.22);
    }
    .timeline-step{
      width:44px;height:44px;border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(90,53,255,.14), rgba(0,193,255,.10));
      border:1px solid rgba(90,53,255,.18);
      font-weight:950;
      color:#2e1f7b;
      flex:0 0 auto;
      box-shadow: 0 10px 24px rgba(90,53,255,.10);
    }
    .timeline-body{ padding-top:2px; }

    .inline-cta{
      margin-top:18px;
      border-radius: var(--radius);
      border:1px solid rgba(20,26,35,.10);
      background:
        radial-gradient(600px 160px at 20% 30%, rgba(90,53,255,.16), transparent 60%),
        radial-gradient(500px 160px at 85% 20%, rgba(0,193,255,.13), transparent 60%),
        rgba(255,255,255,.7);
      box-shadow: 0 18px 45px rgba(10,20,40,.07);
      padding:16px;
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      flex-wrap:wrap;
    }
    .inline-cta__title{ font-weight:920; font-size:16px; }
    .inline-cta__sub{ margin-top:6px; color:var(--muted); font-weight:650; }

    .industry-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
      margin-top:10px;
    }
    .industry-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,35,.10);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 10px 24px rgba(10,20,40,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex; flex-direction:column;
      min-height: 240px;
    }
    .industry-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(10,20,40,.10);
      border-color: rgba(0,193,255,.22);
    }
    .industry-head{ display:flex; gap:10px; align-items:center; }
    .industry-icon{
      width:42px; height:42px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(0,193,255,.12), rgba(255,62,165,.08));
      border:1px solid rgba(0,193,255,.16);
      font-size:18px;
      flex:0 0 auto;
    }
    .list{
      margin:12px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:10px;
      color:var(--muted);
      font-weight:650;
      line-height:1.5;
      font-size:14.2px;
    }
    .list-check li{
      display:flex; gap:10px; align-items:flex-start;
    }
    .list-check li::before{
      content:"✓";
      color:#0ea76b;
      font-weight:950;
      width:18px;height:18px;
      display:flex; align-items:center; justify-content:center;
      border-radius:6px;
      background: rgba(14,167,107,.10);
      border:1px solid rgba(14,167,107,.16);
      flex:0 0 auto;
      margin-top:2px;
    }
    .industry-card .link-more{ margin-top:auto; }

    .process-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
      margin-top:10px;
    }
    .process-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,35,.10);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 10px 24px rgba(10,20,40,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex; gap:12px;
      align-items:flex-start;
      min-height: 200px;
    }
    .process-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(10,20,40,.10);
      border-color: rgba(90,53,255,.22);
    }
    .process-num{
      width:46px; height:46px;
      border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      font-weight:980;
      background: linear-gradient(135deg, rgba(90,53,255,.16), rgba(0,193,255,.12));
      border:1px solid rgba(90,53,255,.18);
      color:#2e1f7b;
      flex: 0 0 auto;
      box-shadow: 0 14px 30px rgba(90,53,255,.12);
    }
    .mini-stats{
      margin-top:12px;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .mini-stat{
      padding:7px 10px;
      border-radius:999px;
      background: rgba(20,26,35,.03);
      border:1px solid rgba(20,26,35,.08);
      color:var(--muted);
      font-weight:700;
      font-size:12.5px;
    }

    .callout{
      margin-top:18px;
      border-radius: var(--radius);
      border:1px solid rgba(20,26,35,.10);
      background:
        radial-gradient(700px 220px at 15% 20%, rgba(90,53,255,.18), transparent 62%),
        radial-gradient(540px 200px at 85% 20%, rgba(0,193,255,.14), transparent 62%),
        rgba(255,255,255,.72);
      box-shadow: 0 18px 45px rgba(10,20,40,.07);
      padding:16px;
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      flex-wrap:wrap;
    }
    .callout-title{ font-weight:950; font-size:16px; }
    .callout-sub{ margin-top:6px; color:var(--muted); font-weight:650; }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
      margin-top:10px;
    }
    .case-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,35,.10);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 10px 24px rgba(10,20,40,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height: 240px;
      display:flex; flex-direction:column;
    }
    .case-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(10,20,40,.10);
      border-color: rgba(0,193,255,.20);
    }
    .case-top{
      display:flex; gap:10px; align-items:center; justify-content:space-between;
      margin-bottom:8px;
    }
    .case-pill{
      padding:7px 10px;
      border-radius:999px;
      background: rgba(90,53,255,.08);
      border:1px solid rgba(90,53,255,.14);
      color:#3c2b8a;
      font-weight:880;
      font-size:12.5px;
      white-space:nowrap;
    }
    .case-time{
      color:var(--muted2);
      font-weight:740;
      font-size:12.5px;
      white-space:nowrap;
    }
    .case-actions{ display:flex; gap:10px; margin-top:14px; flex-wrap:wrap; }

    .case-foot{
      margin-top:16px;
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      flex-wrap:wrap;
      border-radius: var(--radius);
      padding:16px;
      background:
        radial-gradient(600px 180px at 20% 30%, rgba(0,193,255,.14), transparent 62%),
        radial-gradient(520px 180px at 80% 20%, rgba(90,53,255,.14), transparent 62%),
        rgba(255,255,255,.72);
      border:1px solid rgba(20,26,35,.10);
      box-shadow: 0 18px 45px rgba(10,20,40,.07);
    }
    .case-foot__title{ font-weight:980; font-size:16px; }
    .case-foot__sub{ margin-top:6px; color:var(--muted); font-weight:650; }

    .rating-row{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:14px;
      margin-top:10px;
      align-items:start;
    }
    .rating-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,35,.10);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 12px 28px rgba(10,20,40,.06);
    }
    .rating-top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      flex-wrap:wrap;
    }
    .stars{ font-size:18px; color:#ffb020; letter-spacing:2px; }
    .rating-score{
      font-weight:980;
      color:#2e1f7b;
      background: rgba(90,53,255,.10);
      border:1px solid rgba(90,53,255,.16);
      padding:8px 10px;
      border-radius:999px;
    }
    .rating-mid{
      display:flex; align-items:baseline; gap:8px;
      margin-top:16px;
    }
    .rating-num{
      font-size:52px; font-weight:1000; letter-spacing:-.04em; line-height:1;
      color:#141a28;
    }
    .rating-max{ font-weight:850; color:var(--muted); font-size:18px; }
    .rating-foot{
      margin-top:10px;
      color:var(--muted);
      font-weight:700;
      line-height:1.5;
    }

    .compare-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,35,.10);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 12px 28px rgba(10,20,40,.06);
    }
    .compare-head{ display:flex; flex-direction:column; gap:6px; }
    .compare-title{ font-weight:980; font-size:16px; }
    .compare-sub{ color:var(--muted); font-weight:650; font-size:13.5px; }
    .table-wrap{
      margin-top:12px;
      border-radius:14px;
      overflow:auto;
      border:1px solid rgba(20,26,35,.08);
      background: rgba(255,255,255,.75);
    }
    table{
      width:100%;
      border-collapse:collapse;
      min-width: 680px;
    }
    th, td{
      padding:12px 12px;
      text-align:left;
      border-bottom:1px solid rgba(20,26,35,.07);
      vertical-align:top;
      font-size:14px;
    }
    th{
      color:var(--muted2);
      font-weight:900;
      background: rgba(20,26,35,.02);
      position:sticky; top:0;
      z-index:1;
    }
    .cell-good{ color:#0d7a52; font-weight:950; }
    .cell-mid{ color:#9a6a06; font-weight:900; }
    .compare-actions{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:14px;
    }

    .section .match-grid{ margin-top:10px; }

    .match-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .form-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,35,.10);
      border-radius: var(--radius);
      box-shadow: 0 12px 28px rgba(10,20,40,.06);
      padding:16px;
    }
    .form-head{ display:flex; flex-direction:column; gap:6px; margin-bottom:12px; }
    .form-title{ font-weight:1000; font-size:16px; }
    .form-sub{ color:var(--muted); font-weight:650; font-size:13.5px; }
    .form{ 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{ color:var(--muted2); font-weight:800; font-size:13px; }
    input, select, textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(20,26,35,.12);
      background: rgba(255,255,255,.85);
      padding:12px 12px;
      font-size:14.5px;
      color:var(--text);
      outline:none;
      transition: border-color .2s ease, box-shadow .2s ease;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.0);
    }
    input:focus, select:focus, textarea:focus{
      border-color: rgba(90,53,255,.35);
      box-shadow: 0 0 0 4px rgba(90,53,255,.18);
    }
    textarea{ resize: vertical; min-height: 120px; }
    .form-foot{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      flex-wrap:wrap;
    }
    .form-hint{ color:var(--muted); font-weight:650; font-size:13px; line-height:1.5; max-width: 320px; padding-top:10px; }

    .match-signal{
      margin-top:14px;
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,26,35,.10);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 10px 24px rgba(10,20,40,.05);
    }
    .signal-title{ font-weight:980; margin-bottom:12px; }
    .signal-chips{ display:flex; gap:10px; flex-wrap:wrap; }
    .chip{
      padding:9px 12px;
      border-radius:999px;
      background: rgba(0,193,255,.08);
      border:1px solid rgba(0,193,255,.14);
      color:#0b4a5a;
      font-weight:820;
      font-size:12.8px;
    }

    .side-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,35,.10);
      border-radius: var(--radius);
      box-shadow: 0 12px 28px rgba(10,20,40,.06);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .side-card::after{
      content:"";
      position:absolute; inset:auto -120px -120px auto;
      width: 280px; height: 280px;
      background: radial-gradient(circle at 30% 30%, rgba(90,53,255,.18), transparent 60%),
                  radial-gradient(circle at 60% 40%, rgba(0,193,255,.14), transparent 60%);
      transform: rotate(18deg);
      pointer-events:none;
    }
    .side-card__head{ position:relative; z-index:1; }
    .side-kicker{
      color:#2e1f7b;
      font-weight:980;
      font-size:12.5px;
      letter-spacing:.08em;
      text-transform:uppercase;
      margin-bottom:8px;
    }
    .side-title{
      font-weight:1000;
      font-size:18px;
      line-height:1.35;
    }
    .side-list{
      position:relative; z-index:1;
      margin-top:14px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .side-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px;
      border-radius:16px;
      background: rgba(255,255,255,.66);
      border:1px solid rgba(20,26,35,.09);
      transition: transform .18s ease, border-color .18s ease;
    }
    .side-item:hover{
      transform: translateY(-2px);
      border-color: rgba(90,53,255,.22);
    }
    .side-icon{
      width:30px; height:30px;
      border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(90,53,255,.14), rgba(0,193,255,.10));
      border:1px solid rgba(90,53,255,.18);
      color:#2e1f7b;
      font-weight:980;
      flex:0 0 auto;
    }
    .side-item-title{ font-weight:980; font-size:14.3px; }
    .side-item-desc{ margin-top:6px; color:var(--muted); font-weight:650; line-height:1.6; font-size:13.8px; }
    .side-card__cta{
      position:relative; z-index:1;
      margin-top:14px;
      display:flex; gap:10px; flex-wrap:wrap;
    }

    .token-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      margin-top:10px;
      align-items:start;
    }
    .token-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,35,.10);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 12px 28px rgba(10,20,40,.06);
    }
    .token-card.outline{
      background:
        radial-gradient(620px 200px at 15% 20%, rgba(90,53,255,.14), transparent 60%),
        rgba(255,255,255,.72);
      border-color: rgba(90,53,255,.16);
    }
    .token-head{ display:flex; flex-direction:column; gap:8px; }
    .token-badge{
      font-weight:980;
      font-size:12.5px;
      letter-spacing:.08em;
      text-transform:uppercase;
      color:#2e1f7b;
    }
    .token-title{ font-weight:1000; font-size:18px; }
    .token-actions{
      margin-top:14px;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .table-wrap:focus, .price-table-wrap:focus{ outline: none; box-shadow: 0 0 0 4px var(--focus); }

    .price-table-wrap{
      margin-top:12px;
      border-radius:14px;
      overflow:auto;
      border:1px solid rgba(20,26,35,.08);
      background: rgba(255,255,255,.78);
    }
    .price-table{
      min-width: 620px;
    }
    .pill{
      display:inline-flex;
      padding:7px 10px;
      border-radius:999px;
      background: rgba(90,53,255,.08);
      border:1px solid rgba(90,53,255,.14);
      color:#3c2b8a;
      font-weight:900;
      font-size:12.7px;
      white-space:nowrap;
    }
    .price-foot{
      margin-top:12px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      flex-wrap:wrap;
    }
    .small-note{
      color:var(--muted);
      font-weight:650;
      font-size:13px;
      line-height:1.55;
      max-width: 420px;
    }

    .training-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      margin-top:10px;
      align-items:start;
    }
    .training-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,35,.10);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 12px 28px rgba(10,20,40,.06);
    }
    .training-card.outline{
      background:
        radial-gradient(560px 210px at 10% 10%, rgba(0,193,255,.14), transparent 58%),
        rgba(255,255,255,.72);
      border-color: rgba(0,193,255,.16);
    }
    .training-head{ display:flex; flex-direction:column; gap:8px; margin-bottom:12px; }
    .training-kicker{
      color:#2e1f7b;
      font-weight:980;
      font-size:12.5px;
      letter-spacing:.08em;
      text-transform:uppercase;
    }
    .training-title{ font-weight:1000; font-size:18px; }
    .train-list{ display:flex; flex-direction:column; gap:12px; }
    .train-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px;
      border-radius:16px;
      background: rgba(255,255,255,.66);
      border:1px solid rgba(20,26,35,.09);
      transition: transform .18s ease, border-color .18s ease;
    }
    .train-item:hover{
      transform: translateY(-2px);
      border-color: rgba(90,53,255,.22);
    }
    .train-dot{
      width:12px; height:12px; border-radius:50%;
      margin-top:5px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%);
      box-shadow: 0 0 0 4px rgba(90,53,255,.12);
      flex:0 0 auto;
    }
    .train-name{ font-weight:980; font-size:14.4px; }
    .train-desc{ margin-top:6px; color:var(--muted); font-weight:650; line-height:1.6; font-size:13.8px; }

    .audience-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
    }
    .aud-item{
      padding:12px;
      border-radius:16px;
      background: rgba(255,255,255,.66);
      border:1px solid rgba(20,26,35,.09);
      transition: transform .18s ease, border-color .18s ease;
    }
    .aud-item:hover{ transform: translateY(-2px); border-color: rgba(0,193,255,.22); }
    .aud-icon{ font-size:18px; }
    .aud-title{ margin-top:10px; font-weight:980; }
    .aud-desc{ margin-top:6px; color:var(--muted); font-weight:650; line-height:1.6; font-size:13.5px; }
    .training-actions{ margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; }

    .help-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      margin-top:10px;
    }
    .help-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,35,.10);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 12px 28px rgba(10,20,40,.06);
    }
    .help-card.outline{
      background:
        radial-gradient(560px 210px at 10% 10%, rgba(255,62,165,.14), transparent 58%),
        rgba(255,255,255,.72);
      border-color: rgba(255,62,165,.16);
    }
    .help-top{ display:flex; gap:12px; align-items:center; }
    .help-icon{
      width:44px; height:44px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(90,53,255,.12), rgba(0,193,255,.10));
      border:1px solid rgba(90,53,255,.14);
      color:#2e1f7b;
      flex:0 0 auto;
    }
    .help-net{
      display:grid; grid-template-columns: 1fr; gap:10px;
      margin-top:12px;
    }
    .net-item{
      padding:12px;
      border-radius:16px;
      background: rgba(255,255,255,.66);
      border:1px solid rgba(20,26,35,.09);
    }
    .net-title{ font-weight:980; }
    .net-sub{ margin-top:6px; color:var(--muted); font-weight:650; line-height:1.6; }

    .faq-grid{
      display:grid;
      grid-template-columns: .85fr 1.15fr;
      gap:14px;
      margin-top:10px;
      align-items:start;
    }
    .faq-intro-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,35,.10);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 12px 28px rgba(10,20,40,.06);
      position:sticky;
      top: 90px;
    }
    .faq-intro-title{ font-weight:1000; font-size:16px; }
    .faq-bullets{ margin-top:12px; display:flex; flex-direction:column; gap:10px; }
    .faq-bullet{
      padding:10px 12px;
      border-radius:14px;
      background: rgba(90,53,255,.06);
      border:1px solid rgba(90,53,255,.12);
      color:#3c2b8a;
      font-weight:850;
      line-height:1.4;
    }

    .faq-accordion{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,35,.10);
      border-radius: var(--radius);
      padding:6px;
      box-shadow: 0 12px 28px rgba(10,20,40,.06);
    }
    .faq-item{
      border-radius:14px;
      margin:8px;
      border:1px solid rgba(20,26,35,.08);
      background: rgba(255,255,255,.75);
      overflow:hidden;
      transition: border-color .18s ease, transform .18s ease;
    }
    .faq-item[open]{ border-color: rgba(90,53,255,.22); box-shadow: 0 12px 28px rgba(90,53,255,.10); }
    .faq-item summary{
      list-style:none;
      cursor:pointer;
      padding:14px 14px;
      font-weight:900;
      color:#141a28;
      display:flex;
      justify-content:space-between;
      gap:14px;
      align-items:center;
    }
    .faq-item summary::-webkit-details-marker{ display:none; }
    .faq-chevron{
      width:10px;height:10px;
      border-right:2px solid var(--muted2);
      border-bottom:2px solid var(--muted2);
      transform: rotate(45deg);
      transition: transform .18s ease;
      flex:0 0 auto;
      margin-left:10px;
    }
    .faq-item[open] .faq-chevron{ transform: rotate(-135deg); }
    .faq-content{
      padding:0 14px 14px 14px;
      color:var(--muted);
      font-weight:650;
      line-height:1.7;
      font-size:14px;
      animation: fadeIn .18s ease;
    }
    @keyframes fadeIn{
      from{ opacity:0; transform: translateY(-2px); }
      to{ opacity:1; transform: translateY(0); }
    }

    .wiki-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
      margin-top:10px;
    }
    .wiki-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,35,.10);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 12px 28px rgba(10,20,40,.06);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-height: 190px;
      display:flex; flex-direction:column;
    }
    .wiki-card:hover{
      transform: translateY(-2px);
      border-color: rgba(0,193,255,.22);
      box-shadow: 0 18px 40px rgba(10,20,40,.10);
    }
    .wiki-top{ display:flex; flex-direction:column; gap:10px; }
    .wiki-icon{
      width:44px; height:44px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(0,193,255,.12), rgba(90,53,255,.10));
      border:1px solid rgba(0,193,255,.16);
      color:#0b4a5a;
      font-size:18px;
    }
    .wiki-title{ font-weight:980; font-size:15.5px; }
    .wiki-card .link-more{ margin-top:auto; }

    .news-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      margin-top:10px;
      align-items:start;
    }
    .news-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,35,.10);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 12px 28px rgba(10,20,40,.06);
    }
    .news-head{ display:flex; flex-direction:column; gap:6px; margin-bottom:12px; }
    .news-kicker{
      color:#2e1f7b;
      font-weight:980;
      font-size:12.5px;
      letter-spacing:.08em;
      text-transform:uppercase;
    }
    .news-title{ font-weight:1000; font-size:18px; }
    .news-list{
      list-style:none; padding:0; margin:0;
      display:flex; flex-direction:column; gap:10px;
    }
    .news-list li{
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(20,26,35,.08);
      background: rgba(255,255,255,.78);
      transition: transform .18s ease, border-color .18s ease;
      display:flex; flex-direction:column; gap:6px;
    }
    .news-list li:hover{ transform: translateY(-2px); border-color: rgba(90,53,255,.22); }
    .news-list a{
      color:#141a28; text-decoration:none; font-weight:900; line-height:1.4;
    }
    .news-list a:hover{ text-decoration:underline; }
    .news-meta{
      color:var(--muted); font-weight:700; font-size:12.8px;
    }
    .news-more{ margin-top:14px; display:flex; justify-content:flex-start; }

    .latest-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,35,.10);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 12px 28px rgba(10,20,40,.06);
    }
    .latest-title{ font-weight:1000; font-size:16px; }
    .latest-sub{ margin-top:6px; color:var(--muted); font-weight:650; font-size:13.5px; }
    .resource-links{
      margin-top:12px;
      display:grid; grid-template-columns: 1fr; gap:10px;
    }
    .resource-link{
      text-decoration:none;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(20,26,35,.08);
      background: rgba(255,255,255,.78);
      color:#141a28;
      font-weight:900;
      transition: transform .18s ease, border-color .18s ease;
      line-height:1.4;
    }
    .resource-link:hover{ transform: translateY(-2px); border-color: rgba(0,193,255,.22); }

    .latest-actions{ margin-top:14px; }

    .review-wrap{ margin-top:14px; }
    .review-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
      margin-top:12px;
    }
    .review-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,35,.10);
      border-radius: var(--radius);
      padding:14px;
      box-shadow: 0 10px 24px rgba(10,20,40,.06);
      transition: transform .18s ease, border-color .18s ease;
      min-height: 160px;
    }
    .review-card:hover{ transform: translateY(-2px); border-color: rgba(90,53,255,.22); }
    .review-top{ display:flex; align-items:flex-start; gap:12px; }
    .review-avatar{
      width:42px; height:42px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      font-weight:980;
      background: linear-gradient(135deg, rgba(90,53,255,.14), rgba(0,193,255,.10));
      border:1px solid rgba(90,53,255,.18);
      color:#2e1f7b;
      flex:0 0 auto;
    }
    .review-role{ font-weight:980; }
    .review-stars{ margin-top:4px; color:#ffb020; letter-spacing:1px; font-size:13px; }
    .review-text{
      margin-top:10px;
      color:var(--muted);
      font-weight:650;
      line-height:1.7;
      font-size:13.8px;
    }

    .network-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
      margin-top:10px;
    }
    .network-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,35,.10);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 12px 28px rgba(10,20,40,.06);
      transition: transform .18s ease, border-color .18s ease;
      min-height: 160px;
      display:flex; flex-direction:column;
      justify-content:space-between;
    }
    .network-card:hover{ transform: translateY(-2px); border-color: rgba(0,193,255,.22); }
    .network-title{ font-weight:1000; font-size:16px; }
    .network-desc{ margin-top:8px; color:var(--muted); font-weight:650; line-height:1.6; }
    .network-actions{ margin-top:14px; }

    .contact-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      margin-top:10px;
      align-items:start;
    }
    .contact-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,35,.10);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 12px 28px rgba(10,20,40,.06);
    }
    .contact-card.outline{
      background:
        radial-gradient(560px 210px at 15% 20%, rgba(0,193,255,.14), transparent 58%),
        rgba(255,255,255,.72);
      border-color: rgba(0,193,255,.16);
    }
    .contact-head{ display:flex; flex-direction:column; gap:6px; margin-bottom:12px; }
    .contact-title{ font-weight:1000; font-size:18px; }
    .contact-sub{ color:var(--muted); font-weight:650; font-size:13.5px; }
    .contact-info{
      display:flex; flex-direction:column; gap:10px;
      margin-top:4px;
    }
    .contact-item{
      display:flex; align-items:baseline; justify-content:space-between; gap:12px;
      padding:12px;
      border-radius:16px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,26,35,.08);
    }
    .contact-label{ color:var(--muted2); font-weight:900; }
    .contact-value{ font-weight:850; color:#141a28; }
    .contact-link{ color:#141a28; text-decoration:none; }
    .contact-link:hover{ text-decoration:underline; }
    .contact-actions{ margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; }

    .qrcode-wrap{
      display:flex; align-items:center; justify-content:flex-start;
      padding:12px;
      border-radius:18px;
      border:1px dashed rgba(20,26,35,.14);
      background: rgba(255,255,255,.78);
    }
    .qrcode-img{
      width: 168px;
      max-width: 100%;
      height:auto;
      display:block;
      border-radius:14px;
    }
    .contact-note{ margin-top:14px; }
    .note-title{ font-weight:1000; margin-bottom:8px; }

    .join-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      margin-top:10px;
      align-items:start;
    }
    .join-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,35,.10);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 12px 28px rgba(10,20,40,.06);
    }
    .join-card.outline{
      background:
        radial-gradient(650px 240px at 80% 15%, rgba(90,53,255,.14), transparent 60%),
        rgba(255,255,255,.72);
      border-color: rgba(90,53,255,.16);
    }
    .join-kicker{
      color:#2e1f7b;
      font-weight:980;
      font-size:12.5px;
      letter-spacing:.08em;
      text-transform:uppercase;
      margin-bottom:8px;
    }
    .join-points{
      margin-top:12px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .join-point{
      display:flex; gap:10px; align-items:flex-start;
      color:var(--muted);
      font-weight:700;
      line-height:1.6;
      font-size:14px;
    }
    .join-dot{
      width:10px; height:10px; border-radius:50%;
      margin-top:6px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%);
      box-shadow: 0 0 0 4px rgba(90,53,255,.12);
      flex:0 0 auto;
    }
    .join-actions{
      margin-top:14px;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .friend-links{
      margin-top:12px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .friend-links a{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,26,35,.10);
      background: rgba(255,255,255,.80);
      color:#141a28;
      font-weight:850;
      font-size:13px;
      transition: transform .18s ease, border-color .18s ease;
    }
    .friend-links a:hover{
      transform: translateY(-2px);
      border-color: rgba(0,193,255,.22);
    }
    .join-bottom{
      margin-top:14px;
      padding-top:12px;
      border-top:1px solid rgba(20,26,35,.08);
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      flex-wrap:wrap;
    }
    .join-small{ color:var(--muted); font-weight:650; line-height:1.6; }

    .site-footer{
      margin-top:20px;
      background: #0f1423;
      color:#e9edf6;
      border-top: 1px solid rgba(255,255,255,.10);
    }
    .footer-inner{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      padding:26px 0 18px;
      align-items:start;
    }
    .footer-left{ display:flex; flex-direction:column; gap:14px; }
    .footer-brand{
      display:flex; gap:12px; align-items:flex-start;
    }
    .footer-brand img{ width:130px; }
    .footer-name{ font-weight:1000; font-size:16px; margin-top:3px; }
    .footer-sub{ margin-top:6px; color:rgba(233,237,246,.78); font-weight:650; font-size:13.5px; line-height:1.6; }
    .footer-links{
      display:flex; flex-wrap:wrap; gap:12px;
    }
    .footer-links a{
      color:rgba(233,237,246,.90);
      text-decoration:none;
      font-weight:850;
      font-size:13.5px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }
    .footer-links a:hover{
      transform: translateY(-2px);
      background: rgba(255,255,255,.10);
      border-color: rgba(0,193,255,.35);
    }

    .footer-right{ display:flex; flex-direction:column; gap:14px; }
    .footer-cta-title{ font-weight:1000; font-size:16px; }
    .footer-cta-sub{ margin-top:8px; color:rgba(233,237,246,.78); font-weight:650; line-height:1.6; }
    .footer-actions{ display:flex; gap:10px; flex-wrap:wrap; }
    .site-footer .btn-primary{
      box-shadow: 0 16px 40px rgba(90,53,255,.22);
    }
    .site-footer .btn-ghost{
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.18);
      color:#eef2ff;
    }
    .site-footer .btn-ghost:hover{
      background: rgba(255,255,255,.12);
      border-color: rgba(255,255,255,.28);
    }
    .footer-meta{
      color:rgba(233,237,246,.78);
      font-weight:650;
      line-height:1.7;
      font-size:13.2px;
      display:flex;
      flex-direction:column;
      gap:6px;
    }
    .footer-link{ color:#eef2ff; text-decoration:none; }
    .footer-link:hover{ text-decoration:underline; }

    .footer-bottom{
      display:flex; align-items:center; justify-content:space-between;
      padding: 14px 0 22px;
      border-top: 1px solid rgba(255,255,255,.10);
      color: rgba(233,237,246,.70);
      font-weight:650;
      gap:10px;
      flex-wrap:wrap;
    }
    .footer-copy{ font-size:13px; }
    .footer-mini-link{
      color: rgba(233,237,246,.90);
      text-decoration:none;
      border:1px solid rgba(255,255,255,.14);
      border-radius:999px;
      padding:8px 10px;
      background: rgba(255,255,255,.06);
      font-weight:850;
      font-size:13px;
    }
    .footer-mini-link:hover{ background: rgba(255,255,255,.10); }

    .to-top{
      position:fixed;
      right:16px;
      bottom:18px;
      z-index:80;
      width:46px; height:46px;
      border-radius:16px;
      border:1px solid rgba(20,26,35,.12);
      background: rgba(255,255,255,.84);
      box-shadow: 0 14px 30px rgba(10,20,40,.14);
      color:#141a28;
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transform: translateY(14px);
      opacity:0;
      pointer-events:none;
      transition: opacity .2s ease, transform .2s ease, background .2s ease;
    }
    .to-top.show{
      opacity:1;
      pointer-events:auto;
      transform: translateY(0);
    }
    .to-top:hover{ background: rgba(255,255,255,.96); }

    .float-chat{
      position:fixed;
      right:16px; bottom:86px;
      z-index:90;
      display:flex;
      flex-direction:column;
      align-items:flex-end;
      gap:10px;
      pointer-events:none;
    }
    .chat-btn{
      pointer-events:auto;
      display:inline-flex; align-items:center; gap:10px;
      border-radius:18px;
      padding:12px 14px;
      border:1px solid rgba(20,26,35,.12);
      background: rgba(255,255,255,.86);
      box-shadow: 0 14px 30px rgba(10,20,40,.14);
      color:#141a28;
      cursor:pointer;
      transition: transform .15s ease, background .2s ease, border-color .2s ease;
      font-weight:950;
    }
    .chat-btn:hover{ transform: translateY(-2px); border-color: rgba(90,53,255,.24); background: rgba(255,255,255,.96); }
    .chat-icon{ width:30px; height:30px; border-radius:14px; display:flex; align-items:center; justify-content:center; background: linear-gradient(135deg, rgba(90,53,255,.14), rgba(0,193,255,.10)); border:1px solid rgba(90,53,255,.16); }
    .chat-text{ font-size:14px; }
    .chat-panel{
      pointer-events:auto;
      width: 320px;
      max-width: calc(100vw - 32px);
      background: rgba(255,255,255,.92);
      border:1px solid rgba(20,26,35,.12);
      border-radius: 20px;
      box-shadow: 0 22px 60px rgba(10,20,40,.22);
      overflow:hidden;
      transform: translateY(10px);
      opacity:0;
      max-height:0;
      transition: opacity .18s ease, transform .18s ease, max-height .25s ease;
    }
    .chat-panel.open{
      opacity:1;
      transform: translateY(0);
      max-height: 420px;
    }
    .chat-panel__top{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 12px;
      border-bottom: 1px solid rgba(20,26,35,.10);
      background:
        radial-gradient(500px 140px at 20% 10%, rgba(90,53,255,.14), transparent 60%),
        radial-gradient(500px 140px at 80% 10%, rgba(0,193,255,.12), transparent 60%),
        rgba(255,255,255,.8);
    }
    .chat-panel__title{ font-weight:1000; font-size:14.5px; }
    .chat-close{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(20,26,35,.12);
      background: rgba(255,255,255,.8);
      cursor:pointer;
      font-weight:1000;
      color: var(--text);
    }
    .chat-close:hover{ border-color: rgba(90,53,255,.24); }
    .chat-panel__body{
      padding:12px;
      display:grid;
      grid-template-columns: 120px 1fr;
      gap:12px;
      align-items:start;
    }
    .chat-qrcode{
      width:120px; height:auto;
      border-radius:16px;
      border:1px solid rgba(20,26,35,.08);
      background:#fff;
      display:block;
    }
    .chat-panel__meta{
      color:var(--muted);
      font-weight:650;
      line-height:1.7;
      font-size:13px;
    }
    .chat-panel__meta a{ color:#141a28; text-decoration:none; font-weight:950; }
    .chat-panel__meta a:hover{ text-decoration:underline; }
    .chat-panel__foot{
      padding:0 12px 12px;
    }
    .btn-full{ width:100%; padding-left:0; padding-right:0; }

    .mobile-drawer{
      position:fixed; inset:0;
      z-index:70;
      background: rgba(12,16,25,.35);
      backdrop-filter: blur(6px);
      display:none;
    }
    .mobile-drawer.open{ display:block; }
    .mobile-drawer__inner{
      position:absolute; right:0; top:0; bottom:0;
      width: 92vw; max-width: 420px;
      background: rgba(255,255,255,.92);
      border-left:1px solid rgba(20,26,35,.10);
      box-shadow: -20px 0 60px rgba(10,20,40,.20);
      padding:14px;
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .mobile-drawer__top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .mobile-drawer__brand img{ width:130px; }
    .mobile-close{
      width:44px;height:44px;
      border-radius:14px;
      border:1px solid rgba(20,26,35,.12);
      background: rgba(255,255,255,.8);
      cursor:pointer;
      color: var(--text);
    }
    .mobile-close:hover{ border-color: rgba(90,53,255,.24); }
    .mobile-drawer__links{
      display:flex; flex-direction:column; gap:10px;
      padding:10px;
      border-radius:18px;
      border:1px solid rgba(20,26,35,.08);
      background: rgba(255,255,255,.8);
    }
    .drawer-link{
      text-decoration:none;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(20,26,35,.08);
      background: rgba(255,255,255,.78);
      color:#141a28;
      font-weight:950;
      transition: transform .18s ease, border-color .18s ease;
    }
    .drawer-link:hover{ transform: translateY(-2px); border-color: rgba(0,193,255,.22); }
    .mobile-drawer__cta{ display:flex; flex-direction:column; gap:10px; }
    .mobile-drawer__meta{
      margin-top:auto;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,26,35,.08);
      background: rgba(255,255,255,.78);
      color:var(--muted);
      font-weight:650;
    }
    .meta-row{ display:flex; justify-content:space-between; gap:10px; padding:8px 0; border-bottom:1px dashed rgba(20,26,35,.10); }
    .meta-row:last-child{ border-bottom:none; }
    .meta-label{ color:var(--muted2); font-weight:900; }

    @media (max-width: 1050px){
      .hero-grid{ grid-template-columns: 1fr; }
      .hero-quick{ grid-template-columns: 1fr; }
      .hero-title{ font-size:40px; }
      .service-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .about-grid{ grid-template-columns: 1fr; }
      .industry-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .process-grid{ grid-template-columns: 1fr; }
      .case-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .rating-row{ grid-template-columns: 1fr; }
      .match-grid{ grid-template-columns: 1fr; }
      .faq-grid{ grid-template-columns: 1fr; }
      .faq-intro-card{ position:relative; top:auto; }
      .wiki-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .news-grid{ grid-template-columns: 1fr; }
      .review-grid{ grid-template-columns: 1fr; }
      .network-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .contact-grid{ grid-template-columns: 1fr; }
      .join-grid{ grid-template-columns: 1fr; }
      .training-grid{ grid-template-columns: 1fr; }
      .audience-grid{ grid-template-columns: 1fr 1fr; }
      .token-grid{ grid-template-columns: 1fr; }
      .primary-nav{ display:none; }
      .nav-toggle{ display:flex; }
      .nav-cta .btn-ghost{ display:none; }
      .site-footer .footer-inner{ grid-template-columns: 1fr; }
    }
    @media (max-width: 560px){
      .hero-title{ font-size:34px; }
      .ai-page-logo{ width:120px; }
      .hero-actions .btn-lg{ width:100%; }
      .hero-actions{ flex-direction:column; align-items:stretch; }
      .metric-grid{ grid-template-columns: 1fr 1fr; }
      .service-grid{ grid-template-columns: 1fr; }
      .industry-grid{ grid-template-columns: 1fr; }
      .case-grid{ grid-template-columns: 1fr; }
      .wiki-grid{ grid-template-columns: 1fr; }
      .network-grid{ grid-template-columns: 1fr; }
      .review-grid{ grid-template-columns: 1fr; }
      .form-row{ grid-template-columns: 1fr; }
      .audience-grid{ grid-template-columns: 1fr; }
      .float-chat{ right:12px; bottom:82px; }
      .chat-panel__body{ grid-template-columns: 1fr; }
      .chat-qrcode{ width: 160px; }
    }

    @media (prefers-reduced-motion: reduce){
      *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
    }