:root{
      --bg0:#fbfbfe;
      --bg1:#f6f7ff;
      --card:#ffffff;
      --text:#1f2430;
      --muted:#5b6476;
      --line:rgba(20,28,45,.10);
      --shadow:0 14px 34px rgba(16,24,40,.08);
      --shadow2:0 10px 26px rgba(16,24,40,.10);
      --radius:16px;
      --radius2:22px;
      --grad1:linear-gradient(120deg,#2dd4ff 0%, #7c3aed 52%, #ff4fd8 100%);
      --grad2:linear-gradient(135deg,#22c55e 0%, #0ea5e9 40%, #a855f7 100%);
      --grad3:linear-gradient(135deg,#60a5fa 0%, #34d399 55%, #f472b6 100%);
      --primary:#6d28d9;
      --primary2:#0ea5e9;
      --focus:rgba(14,165,233,.28);
      --good:#0ea5e9;
      --warn:#f59e0b;
      --good2:#16a34a;
    }

    *{ box-sizing:border-box; }
    html,body{ height:100%; }
    body{
      margin:0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans SC", "PingFang SC","Hiragino Sans GB","Microsoft YaHei", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 600px at 20% -10%, rgba(45,212,255,.16), transparent 55%),
        radial-gradient(900px 500px at 80% 0%, rgba(168,85,247,.16), transparent 55%),
        linear-gradient(180deg, var(--bg1), var(--bg0) 45%, #ffffff 100%);
      overflow-x:hidden;
    }

    .skip-link{
      position:absolute;
      left:-999px;
      top:12px;
      background:#0b1220;
      color:#fff;
      padding:10px 12px;
      border-radius:10px;
      z-index:9999;
    }
    .skip-link:focus{ left:12px; outline:2px solid rgba(14,165,233,.5); }

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

    .site-header{
      position:sticky;
      top:0;
      z-index:80;
      backdrop-filter:saturate(140%) blur(10px);
      background:rgba(255,255,255,.72);
      border-bottom:1px solid rgba(20,28,45,.08);
      transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
    }
    .site-header.shrink{
      box-shadow:0 10px 26px rgba(16,24,40,.08);
      background:rgba(255,255,255,.82);
    }
    .header-inner{
      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;
      flex:0 0 auto;
      min-width:160px;
    }
    .ai-page-logo{ width:130px; }
    .nav-desktop{
      display:flex;
      align-items:center;
      gap:18px;
      flex:1 1 auto;
      justify-content:center;
    }
    .nav-link{
      color:rgba(31,36,48,.88);
      text-decoration:none;
      font-weight:650;
      font-size:14px;
      padding:10px 8px;
      border-radius:12px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .nav-link:hover{
      background:rgba(109,40,217,.08);
      color:rgba(109,40,217,.98);
      transform: translateY(-1px);
    }

    .header-actions{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:10px;
      flex:0 0 auto;
      min-width:240px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:11px 14px;
      border-radius:14px;
      border:1px solid rgba(20,28,45,.12);
      text-decoration:none;
      color:rgba(31,36,48,.92);
      font-weight:750;
      font-size:14px;
      background:#fff;
      cursor:pointer;
      user-select:none;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      white-space:nowrap;
    }
    .btn .btn-icon{ font-size:16px; line-height:1; opacity:.9; }
    .btn:hover{
      transform: translateY(-1px);
      box-shadow: 0 12px 26px rgba(16,24,40,.10);
      border-color: rgba(109,40,217,.22);
    }
    .btn:active{ transform: translateY(0px); box-shadow:none; }

    .btn-primary{
      background:var(--grad1);
      border-color: rgba(109,40,217,.26);
      color:#fff;
      box-shadow:0 16px 36px rgba(109,40,217,.20);
    }
    .btn-primary:hover{
      box-shadow:0 18px 42px rgba(109,40,217,.26);
      border-color: rgba(255,255,255,.28);
    }
    .btn-ghost{
      background:rgba(255,255,255,.68);
      border-color: rgba(20,28,45,.14);
    }
    .btn-ghost:hover{
      background:rgba(255,255,255,.9);
    }
    .btn-lg{ padding:14px 16px; border-radius:16px; font-size:15px; }

    .burger{
      display:none;
      width:44px;
      height:44px;
      padding:0;
      border-radius:14px;
      border:1px solid rgba(20,28,45,.14);
      background:rgba(255,255,255,.72);
      cursor:pointer;
      align-items:center;
      justify-content:center;
      gap:4px;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .burger:hover{ transform: translateY(-1px); box-shadow: 0 12px 26px rgba(16,24,40,.10); }
    .burger-line{
      display:block;
      width:18px;
      height:2px;
      border-radius:999px;
      background:rgba(31,36,48,.78);
    }

    .mobile-menu{
      display:none;
      max-height:0;
      overflow:hidden;
      transition:max-height .28s ease;
      border-top:1px solid rgba(20,28,45,.08);
      background:rgba(255,255,255,.92);
    }
    .mobile-menu.open{
      display:block;
      max-height:520px;
    }
    .mobile-menu-inner{ padding:14px 0 18px; display:flex; flex-direction:column; gap:14px; }
    .mobile-links{ display:grid; grid-template-columns: 1fr 1fr; gap:10px; }
    .mobile-actions{ display:flex; gap:10px; flex-wrap:wrap; }

    .main{ position:relative; }

    .hero-bg{
      position:absolute;
      inset:0;
      pointer-events:none;
      overflow:hidden;
    }
    .hero-glow{
      position:absolute;
      width:900px;
      height:900px;
      left:-420px;
      top:-520px;
      background: radial-gradient(circle at 30% 30%, rgba(45,212,255,.35), transparent 62%),
                  radial-gradient(circle at 70% 50%, rgba(168,85,247,.28), transparent 58%),
                  radial-gradient(circle at 40% 80%, rgba(244,114,182,.18), transparent 55%);
      filter: blur(10px);
      opacity:.9;
      transform: translateZ(0);
    }
    .hero-grid{
      position:absolute;
      inset:-10% -10% auto -10%;
      height:520px;
      background:
        linear-gradient(to right, rgba(17,24,39,.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(17,24,39,.06) 1px, transparent 1px);
      background-size:48px 48px;
      mask-image: radial-gradient(circle at 20% 10%, black 20%, transparent 65%);
      opacity:.55;
    }
    .hero-orbit{
      position:absolute;
      width:680px; height:680px;
      right:-420px;
      top:-260px;
      border-radius:50%;
      border:1px solid rgba(109,40,217,.20);
      background: conic-gradient(from 180deg, rgba(45,212,255,.18), rgba(168,85,247,.12), rgba(255,79,216,.14), rgba(45,212,255,.18));
      filter: blur(.2px);
      opacity:.35;
      animation: spin 18s linear infinite;
    }
    .orbit2{
      width:520px; height:520px;
      right:-320px; top:-220px;
      opacity:.25;
      animation-duration:24s;
      border-color: rgba(14,165,233,.22);
    }
    @keyframes spin{ to{ transform: rotate(360deg); } }

    .hero{
      position:relative;
      padding:52px 0 24px;
    }
    .hero-inner{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:22px;
      align-items:start;
    }

    .eyebrow{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:14px; }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(20,28,45,.12);
      background:rgba(255,255,255,.78);
      font-weight:800;
      font-size:12px;
      color:rgba(31,36,48,.86);
    }
    .pill-soft{
      background:rgba(255,255,255,.56);
      border-color: rgba(109,40,217,.14);
      color:rgba(109,40,217,.92);
    }

    .hero-title{
      margin:0 0 12px;
      font-size:40px;
      letter-spacing:-.02em;
      line-height:1.12;
      color:#141a27;
    }
    .hero-sub{
      margin:0 0 18px;
      color:var(--muted);
      font-size:15px;
      line-height:1.8;
      max-width:60ch;
      font-weight:560;
    }

    .hero-cta{ display:flex; flex-wrap:wrap; gap:12px; margin-bottom:18px; }

    .hero-metrics{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:12px;
      margin-top:16px;
    }
    .metric-card{
      padding:14px 14px;
      border-radius:16px;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(20,28,45,.10);
      box-shadow: 0 10px 26px rgba(16,24,40,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
      min-height:96px;
    }
    .metric-card::after{
      content:"";
      position:absolute;
      inset:-2px -2px auto -2px;
      height:50%;
      background: radial-gradient(circle at 30% 20%, rgba(45,212,255,.22), transparent 55%),
                  radial-gradient(circle at 70% 15%, rgba(168,85,247,.18), transparent 60%);
      opacity:.9;
      pointer-events:none;
    }
    .metric-top{ display:flex; align-items:center; gap:10px; position:relative; z-index:1; }
    .metric-icon{
      width:26px; height:26px;
      border-radius:10px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border:1px solid rgba(109,40,217,.18);
      background:rgba(255,255,255,.75);
      font-weight:900;
      color:rgba(109,40,217,.95);
      flex:0 0 auto;
    }
    .metric-label{ font-weight:850; font-size:13px; color:rgba(31,36,48,.90); }
    .metric-value{
      position:relative; z-index:1;
      margin-top:10px;
      font-weight:760;
      color:rgba(31,36,48,.86);
      line-height:1.35;
      font-size:13px;
    }
    .metric-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(16,24,40,.10);
      border-color: rgba(109,40,217,.22);
    }

    .side-panel{
      background:rgba(255,255,255,.82);
      border:1px solid rgba(20,28,45,.10);
      border-radius: var(--radius2);
      box-shadow: var(--shadow);
      padding:16px;
      position:sticky;
      top:84px;
      overflow:hidden;
    }
    .side-panel::before{
      content:"";
      position:absolute;
      inset:-2px -2px auto -2px;
      height:76px;
      background: var(--grad2);
      opacity:.16;
      pointer-events:none;
    }
    .side-title{
      font-weight:900;
      font-size:16px;
      color:#151a26;
      margin-bottom:10px;
      position:relative;
      z-index:1;
    }
    .checklist{
      list-style:none;
      padding:0; margin:0;
      display:flex;
      flex-direction:column;
      gap:10px;
      position:relative; z-index:1;
    }
    .checklist li{
      display:flex;
      align-items:flex-start;
      gap:12px;
      padding:10px 10px;
      border-radius:14px;
      background:rgba(255,255,255,.62);
      border:1px solid rgba(20,28,45,.08);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .checklist li:hover{
      transform: translateY(-1px);
      box-shadow: 0 14px 32px rgba(16,24,40,.08);
    }
    .check-badge{
      width:28px; height:28px;
      border-radius:12px;
      border:1px solid rgba(109,40,217,.18);
      background:rgba(109,40,217,.10);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:rgba(109,40,217,.95);
      flex:0 0 auto;
      margin-top:2px;
    }
    .check-text strong{ display:block; font-size:13px; }
    .check-text span{ display:block; margin-top:3px; color:var(--muted); font-size:12.5px; line-height:1.45; }

    .side-actions{ display:flex; flex-direction:column; gap:10px; margin-top:12px; position:relative; z-index:1; }
    .side-footnote{
      margin-top:12px;
      font-size:12.5px;
      line-height:1.55;
      color:rgba(91,100,118,.95);
      position:relative; z-index:1;
      padding-top:10px;
      border-top:1px dashed rgba(20,28,45,.12);
    }

    .section{
      padding:56px 0;
      position:relative;
    }
    .section-narrow{ padding:18px 0 34px; }
    .section-soft{
      background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,.88));
      border-top:1px solid rgba(20,28,45,.06);
      border-bottom:1px solid rgba(20,28,45,.06);
    }
    .section-head{
      display:flex;
      flex-direction:column;
      gap:10px;
      margin-bottom:18px;
    }
    .h2{
      margin:0;
      font-size:28px;
      letter-spacing:-.015em;
      line-height:1.2;
    }
    .h3{
      margin:0;
      font-size:16px;
      letter-spacing:-.01em;
      line-height:1.3;
    }
    .muted{ color:var(--muted); }

    .two-col{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
    }

    .content-card{
      border-radius: var(--radius2);
      padding:18px;
      background:rgba(255,255,255,.88);
      border:1px solid rgba(20,28,45,.10);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .content-card::after{
      content:"";
      position:absolute;
      inset:-80px -80px auto -80px;
      height:140px;
      background: radial-gradient(circle at 20% 30%, rgba(45,212,255,.24), transparent 60%),
                  radial-gradient(circle at 70% 10%, rgba(168,85,247,.18), transparent 55%);
      opacity:.85;
      pointer-events:none;
    }
    .content-card:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow2);
      border-color: rgba(109,40,217,.18);
    }
    .content-card-alt::after{
      background: radial-gradient(circle at 20% 10%, rgba(34,197,94,.20), transparent 55%),
                  radial-gradient(circle at 80% 20%, rgba(14,165,233,.20), transparent 60%);
    }
    .content-card-title{
      font-weight:920;
      font-size:15px;
      margin-bottom:10px;
      position:relative; z-index:1;
    }
    .content-card-body{
      margin:0;
      position:relative; z-index:1;
      color:var(--muted);
      line-height:1.85;
      font-size:14px;
      font-weight:560;
    }
    .tag-row{ display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; position:relative; z-index:1; }
    .tag{
      display:inline-flex;
      align-items:center;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.76);
      font-weight:800;
      font-size:12px;
      color:rgba(31,36,48,.85);
    }
    .tag-soft{
      background:rgba(109,40,217,.08);
      border-color: rgba(109,40,217,.14);
      color:rgba(109,40,217,.95);
    }

    .content-card-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:16px; position:relative; z-index:1; }

    .soft-list{ margin:0; padding-left:18px; color:var(--muted); line-height:1.85; font-weight:560; }
    .soft-list li{ margin:6px 0; }

    .cards-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap:14px;
    }

    .service-card{
      padding:16px;
      background:rgba(255,255,255,.9);
      border-radius: var(--radius2);
      border:1px solid rgba(20,28,45,.10);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
      min-height:170px;
    }
    .service-card::before{
      content:"";
      position:absolute;
      inset:-2px -2px auto -2px;
      height:84px;
      background: var(--grad3);
      opacity:.14;
      pointer-events:none;
      transform: translateY(-6px);
    }
    .service-card:hover{
      transform: translateY(-3px);
      box-shadow: var(--shadow2);
      border-color: rgba(109,40,217,.18);
    }
    .service-top{ display:flex; align-items:center; gap:10px; position:relative; z-index:1; }
    .service-icon{
      width:40px; height:40px;
      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);
      font-size:18px;
      flex:0 0 auto;
    }
    .service-card p{ margin:12px 0 14px; color:var(--muted); line-height:1.8; font-size:14px; font-weight:560; position:relative; z-index:1; }
    .link-more{
      color:rgba(109,40,217,.98);
      font-weight:900;
      text-decoration:none;
      position:relative; z-index:1;
    }
    .link-more::after{
      content:"";
      display:block;
      height:2px;
      background: linear-gradient(90deg, rgba(109,40,217,.0), rgba(109,40,217,.6), rgba(45,212,255,.0));
      transform: scaleX(0);
      transform-origin:center;
      transition: transform .2s ease;
      margin-top:6px;
    }
    .service-card:hover .link-more::after{ transform: scaleX(1); }

    .step-grid{
      display:grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap:12px;
    }
    .step-card{
      padding:14px;
      background:rgba(255,255,255,.88);
      border-radius: var(--radius2);
      border:1px solid rgba(20,28,45,.10);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
      min-height:150px;
    }
    .step-card::before{
      content:"";
      position:absolute;
      inset:-2px -2px auto -2px;
      height:72px;
      background: var(--grad2);
      opacity:.12;
      pointer-events:none;
    }
    .step-no{
      font-weight:980;
      font-size:12px;
      letter-spacing:.08em;
      color:rgba(109,40,217,.95);
      background:rgba(109,40,217,.10);
      border:1px solid rgba(109,40,217,.16);
      padding:7px 10px;
      border-radius:999px;
      width:fit-content;
      position:relative; z-index:1;
    }
    .step-card .h3{ margin-top:12px; position:relative; z-index:1; }
    .step-card p{ margin:8px 0 0; color:var(--muted); line-height:1.7; font-weight:560; font-size:13.5px; position:relative; z-index:1; }
    .step-card:hover{
      transform: translateY(-3px);
      box-shadow: var(--shadow2);
      border-color: rgba(109,40,217,.18);
    }

    .industry-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap:14px;
    }
    .industry-card{
      padding:16px;
      border-radius: var(--radius2);
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.9);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:210px;
      overflow:hidden;
      position:relative;
    }
    .industry-card::after{
      content:"";
      position:absolute;
      inset:-2px -2px auto -2px;
      height:90px;
      background: var(--grad1);
      opacity:.10;
      pointer-events:none;
    }
    .industry-card:hover{
      transform: translateY(-3px);
      box-shadow: var(--shadow2);
      border-color: rgba(109,40,217,.18);
    }
    .industry-card .h3{ position:relative; z-index:1; margin-bottom:10px; }
    .industry-card p{ position:relative; z-index:1; margin:0 0 14px; }
    .mini-list{ margin:0; padding-left:18px; color:var(--muted); line-height:1.9; font-weight:560; position:relative; z-index:1; }

    .network-panel{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
      align-items:stretch;
    }
    .network-left,.network-right{
      border-radius: var(--radius2);
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.9);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      padding:18px;
      overflow:hidden;
      position:relative;
    }
    .network-left::before{
      content:"";
      position:absolute;
      inset:-120px -120px auto -120px;
      height:220px;
      background: radial-gradient(circle at 20% 30%, rgba(14,165,233,.22), transparent 62%),
                  radial-gradient(circle at 70% 20%, rgba(109,40,217,.16), transparent 60%);
      pointer-events:none;
      opacity:.95;
    }
    .network-title{ font-weight:950; font-size:16px; position:relative; z-index:1; margin-bottom:10px; }
    .network-list{ margin:0; padding-left:18px; color:var(--muted); line-height:1.9; font-weight:560; position:relative; z-index:1; }
    .network-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:16px; position:relative; z-index:1; }

    .map-mock{
      height:220px;
      border-radius:18px;
      border:1px solid rgba(20,28,45,.10);
      background:
        radial-gradient(400px 260px at 20% 30%, rgba(45,212,255,.20), transparent 60%),
        radial-gradient(420px 300px at 80% 25%, rgba(168,85,247,.18), transparent 62%),
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.64));
      position:relative;
      overflow:hidden;
    }
    .map-title{
      position:absolute;
      top:14px; left:14px;
      font-weight:950;
      background:rgba(255,255,255,.8);
      border:1px solid rgba(20,28,45,.10);
      padding:7px 10px;
      border-radius:999px;
      font-size:12.5px;
      color:rgba(31,36,48,.86);
      backdrop-filter: blur(10px);
    }
    .map-nodes{ position:absolute; inset:0; }
    .node{
      position:absolute;
      width:14px; height:14px;
      border-radius:50%;
      background:rgba(109,40,217,.9);
      box-shadow:0 0 0 8px rgba(109,40,217,.18);
      animation: nodePulse 2.8s ease-in-out infinite;
    }
    .node1{ left:18%; top:35%; background:rgba(14,165,233,.92); box-shadow:0 0 0 8px rgba(14,165,233,.18); }
    .node2{ left:45%; top:25%; }
    .node3{ left:68%; top:52%; background:rgba(16,185,129,.92); box-shadow:0 0 0 8px rgba(16,185,129,.18); }
    .node4{ left:30%; top:62%; background:rgba(244,114,182,.92); box-shadow:0 0 0 8px rgba(244,114,182,.18); }
    .node5{ left:78%; top:30%; background:rgba(109,40,217,.92); }
    @keyframes nodePulse{
      0%,100%{ transform: scale(1); opacity:.95; }
      50%{ transform: scale(1.08); opacity:.75; }
    }

    .map-legend{
      position:absolute;
      bottom:14px; left:14px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      padding-right:12px;
    }
    .legend-item{
      display:flex; align-items:center; gap:8px;
      font-size:12.5px;
      color:rgba(31,36,48,.8);
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,28,45,.10);
      padding:8px 10px;
      border-radius:999px;
      backdrop-filter: blur(10px);
    }
    .legend-item i{
      width:10px; height:10px;
      border-radius:50%;
      background:rgba(109,40,217,.9);
      display:inline-block;
      box-shadow:0 0 0 6px rgba(109,40,217,.16);
    }
    .legend-item:nth-child(1) i{ background:rgba(14,165,233,.92); box-shadow:0 0 0 6px rgba(14,165,233,.16); }
    .legend-item:nth-child(2) i{ background:rgba(109,40,217,.9); box-shadow:0 0 0 6px rgba(109,40,217,.16); }
    .legend-item:nth-child(3) i{ background:rgba(16,185,129,.92); box-shadow:0 0 0 6px rgba(16,185,129,.16); }

    .pulse-row{
      margin-top:14px;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }
    .pulse-pill{
      display:flex; align-items:center; gap:8px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.76);
      font-weight:850;
      font-size:12.5px;
      color:rgba(31,36,48,.84);
    }
    .pulse-dot{
      width:10px; height:10px;
      border-radius:50%;
      background:rgba(14,165,233,.92);
      box-shadow:0 0 0 7px rgba(14,165,233,.18);
      animation: dotPulse 1.9s ease-in-out infinite;
    }
    .pulse-pill:nth-child(2) .pulse-dot{ background:rgba(109,40,217,.92); box-shadow:0 0 0 7px rgba(109,40,217,.18); }
    .pulse-pill:nth-child(3) .pulse-dot{ background:rgba(16,185,129,.92); box-shadow:0 0 0 7px rgba(16,185,129,.18); }
    .pulse-pill:nth-child(4) .pulse-dot{ background:rgba(244,114,182,.92); box-shadow:0 0 0 7px rgba(244,114,182,.18); }
    @keyframes dotPulse{
      0%,100%{ transform: scale(1); opacity:.9; }
      50%{ transform: scale(1.12); opacity:.7; }
    }

    .flow{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
    }
    .flow-col{
      border-radius: var(--radius2);
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.9);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      padding:18px;
      overflow:hidden;
      position:relative;
    }
    .flow-col::before{
      content:"";
      position:absolute;
      inset:-180px -180px auto -180px;
      height:260px;
      background: radial-gradient(circle at 25% 30%, rgba(45,212,255,.20), transparent 60%),
                  radial-gradient(circle at 72% 22%, rgba(168,85,247,.16), transparent 62%);
      opacity:.95;
      pointer-events:none;
    }
    .flow-header{
      font-weight:980;
      font-size:16px;
      position:relative; z-index:1;
      margin-bottom:12px;
    }
    .flow-item{
      display:flex;
      gap:12px;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,28,45,.08);
      background:rgba(255,255,255,.66);
      position:relative; z-index:1;
      margin-top:10px;
    }
    .flow-item:first-of-type{ margin-top:0; }
    .flow-bullet{
      width:38px; height:38px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(14,165,233,.22);
      background:rgba(14,165,233,.10);
      color:rgba(14,165,233,.98);
      font-weight:1000;
      flex:0 0 auto;
    }
    .flow-bullet-grad{
      border-color: rgba(109,40,217,.22);
      background:rgba(109,40,217,.10);
      color:rgba(109,40,217,.98);
    }
    .flow-title{ font-weight:950; margin-bottom:4px; }
    .flow-desc{ color:var(--muted); line-height:1.6; font-weight:560; font-size:13.5px; }

    .flow-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; position:relative; z-index:1; }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
    }
    .case-card{
      padding:16px;
      border-radius: var(--radius2);
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.92);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
      min-height:190px;
    }
    .case-card::after{
      content:"";
      position:absolute;
      inset:-2px -2px auto -2px;
      height:100px;
      background: var(--grad1);
      opacity:.10;
      pointer-events:none;
    }
    .case-card:hover{
      transform: translateY(-3px);
      box-shadow: var(--shadow2);
      border-color: rgba(109,40,217,.18);
    }
    .case-title{ font-weight:980; font-size:16px; margin-bottom:10px; position:relative; z-index:1; }
    .case-meta{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:10px; position:relative; z-index:1; }
    .badge{
      display:inline-flex;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.8);
      font-weight:900;
      font-size:12px;
      color:rgba(31,36,48,.84);
    }
    .badge-soft{
      border-color: rgba(109,40,217,.14);
      background:rgba(109,40,217,.08);
      color:rgba(109,40,217,.96);
    }
    .case-card p{ margin:0 0 14px; position:relative; z-index:1; }

    .compare-wrap{
      border-radius: var(--radius2);
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.92);
      box-shadow: 0 18px 44px rgba(16,24,40,.08);
      padding:16px;
      overflow:hidden;
    }
    .compare-score{
      display:flex;
      align-items:center;
      gap:16px;
      margin-bottom:14px;
      padding:6px 6px 2px;
    }
    .score-circle{
      width:118px; height:118px;
      border-radius:50%;
      background: radial-gradient(circle at 30% 20%, rgba(45,212,255,.22), transparent 55%),
                  radial-gradient(circle at 70% 60%, rgba(168,85,247,.20), transparent 60%),
                  linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.62));
      border:1px solid rgba(20,28,45,.10);
      display:flex;
      align-items:center;
      justify-content:center;
      flex-direction:column;
      box-shadow: 0 18px 44px rgba(16,24,40,.10);
      position:relative;
      overflow:hidden;
    }
    .score-circle::after{
      content:"";
      position:absolute;
      inset:-2px -2px auto -2px;
      height:56%;
      background: var(--grad1);
      opacity:.12;
      pointer-events:none;
      transform: rotate(-6deg);
    }
    .score-number{
      font-weight:1000;
      font-size:34px;
      letter-spacing:-.02em;
      position:relative; z-index:1;
    }
    .score-unit{ font-weight:900; color:var(--muted); position:relative; z-index:1; margin-top:-6px; }
    .score-caption .stars{ letter-spacing:2px; color:rgba(245,158,11,.95); font-size:14px; font-weight:900; margin-bottom:6px; }

    .compare-table-wrap{
      border-radius:18px;
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.84);
      overflow:hidden;
    }
    .compare-table-head{
      display:grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap:0;
      padding:12px 14px;
      background: linear-gradient(90deg, rgba(109,40,217,.10), rgba(14,165,233,.08), rgba(244,114,182,.08));
      border-bottom:1px solid rgba(20,28,45,.10);
      font-weight:980;
      color:rgba(31,36,48,.9);
      font-size:13px;
    }
    .compare-col-sub{ text-align:left; }

    .compare-row{
      display:grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      padding:12px 14px;
      gap:0;
      border-bottom:1px solid rgba(20,28,45,.08);
      align-items:center;
      font-size:13.5px;
    }
    .compare-row:last-child{ border-bottom:none; }
    .compare-left{ font-weight:900; color:rgba(31,36,48,.90); }
    .compare-mid,.compare-right{ color:var(--muted); line-height:1.45; }
    .good{ color:rgba(14,165,233,.98); font-weight:1000; }
    .warn{ color:rgba(245,158,11,.98); font-weight:1000; }
    .compare-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; }

    .match-grid{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:16px;
      align-items:start;
    }
    .match-left{
      border-radius: var(--radius2);
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.92);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      padding:18px;
    }
    .mini-title{
      font-weight:980;
      margin-bottom:10px;
      font-size:14.5px;
    }
    .chip-grid{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:14px;
    }
    .chip{
      border-radius:999px;
      border:1px solid rgba(20,28,45,.12);
      background:rgba(255,255,255,.72);
      padding:10px 12px;
      font-weight:900;
      color:rgba(31,36,48,.86);
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
      font-size:13px;
    }
    .chip:hover{
      transform: translateY(-2px);
      box-shadow: 0 14px 32px rgba(16,24,40,.08);
      border-color: rgba(109,40,217,.18);
    }
    .chip-active{
      outline:2px solid var(--focus);
    }
    .match-note{
      border-radius:18px;
      border:1px dashed rgba(20,28,45,.14);
      background:rgba(255,255,255,.64);
      padding:14px;
    }
    .match-note-title{ font-weight:980; margin-bottom:8px; }

    .match-right{
      display:flex;
      flex-direction:column;
      gap:14px;
    }

    .form-card{
      border-radius: var(--radius2);
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.92);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      padding:18px;
    }
    .form-head{ margin-bottom:10px; }
    .form{
      margin-top:8px;
    }
    .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .field{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .field-wide{ grid-column: 1 / -1; }
    .field-label{
      font-weight:900;
      color:rgba(31,36,48,.86);
      font-size:13px;
    }
    input,select,textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(20,28,45,.14);
      background:rgba(255,255,255,.86);
      padding:12px 12px;
      outline:none;
      font-size:14px;
      color:rgba(31,36,48,.92);
      transition: box-shadow .18s ease, border-color .18s ease, background .18s ease;
    }
    textarea{ resize:vertical; min-height:120px; }
    input:focus,select:focus,textarea:focus{
      border-color: rgba(14,165,233,.45);
      box-shadow: 0 0 0 4px rgba(14,165,233,.18);
      background:#fff;
    }
    .form-foot{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-top:14px;
      flex-wrap:wrap;
    }
    .form-security{
      display:flex;
      align-items:center;
      gap:10px;
      color:var(--muted);
      font-weight:650;
      font-size:12.5px;
    }
    .security-dot{
      width:10px; height:10px;
      border-radius:50%;
      background:rgba(16,185,129,.95);
      box-shadow:0 0 0 7px rgba(16,185,129,.14);
      flex:0 0 auto;
    }

    .token-mini{
      border-radius: var(--radius2);
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.90);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      padding:18px;
      overflow:hidden;
      position:relative;
    }
    .token-mini::after{
      content:"";
      position:absolute;
      inset:-2px -2px auto -2px;
      height:110px;
      background: var(--grad2);
      opacity:.10;
      pointer-events:none;
    }
    .token-head{ display:flex; justify-content:space-between; align-items:flex-start; gap:12px; position:relative; z-index:1; margin-bottom:12px; }
    .token-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
      position:relative; z-index:1;
    }
    .token-item{
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(20,28,45,.08);
      background:rgba(255,255,255,.68);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .token-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 14px 32px rgba(16,24,40,.08);
      border-color: rgba(109,40,217,.18);
    }
    .token-k{ font-weight:980; font-size:13.5px; color:rgba(31,36,48,.9); margin-bottom:6px; }
    .token-v{ color:var(--muted); font-weight:600; line-height:1.6; font-size:13px; }
    .token-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:12px; position:relative; z-index:1; }

    .compare-tiles{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
    }
    .tile{
      border-radius: var(--radius2);
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.92);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      padding:18px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative; overflow:hidden;
    }
    .tile::after{
      content:"";
      position:absolute;
      inset:-2px -2px auto -2px;
      height:110px;
      background: var(--grad1);
      opacity:.09;
      pointer-events:none;
    }
    .tile-hot{
      border-color: rgba(109,40,217,.20);
      box-shadow: 0 18px 44px rgba(109,40,217,.16);
    }
    .tile-hot::after{ background: var(--grad2); opacity:.14; }
    .tile:hover{
      transform: translateY(-3px);
      box-shadow: var(--shadow2);
      border-color: rgba(109,40,217,.18);
    }
    .tile-title{ font-weight:1000; font-size:16px; position:relative; z-index:1; }
    .tile-price{ margin-top:10px; font-weight:920; color:rgba(109,40,217,.98); position:relative; z-index:1; }
    .tile-list{ margin:12px 0 16px; padding-left:18px; color:var(--muted); line-height:1.85; font-weight:600; position:relative; z-index:1; }
    .price-table-wrap{
      margin-top:14px;
      border-radius: var(--radius2);
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.92);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      padding:16px;
    }
    .table-caption{ font-weight:980; margin-bottom:10px; }
    .table-scroll{
      overflow:auto;
      border-radius:16px;
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.8);
    }
    .data-table{
      width:100%;
      border-collapse:collapse;
      min-width:720px;
    }
    .data-table th, .data-table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(20,28,45,.08);
      text-align:left;
      vertical-align:top;
      font-size:13.5px;
    }
    .data-table th{
      background: linear-gradient(90deg, rgba(109,40,217,.10), rgba(14,165,233,.08), rgba(244,114,182,.08));
      font-weight:980;
      color:rgba(31,36,48,.92);
    }
    .data-table tr:last-child td{ border-bottom:none; }
    .table-note{ margin-top:10px; font-size:12.5px; }

    .training-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:16px;
      align-items:start;
    }
    .training-left{
      border-radius: var(--radius2);
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.92);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      padding:18px;
      overflow:hidden;
      position:relative;
    }
    .training-left::before{
      content:"";
      position:absolute;
      inset:-180px -180px auto -180px;
      height:260px;
      background: radial-gradient(circle at 25% 30%, rgba(109,40,217,.20), transparent 62%),
                  radial-gradient(circle at 72% 22%, rgba(14,165,233,.16), transparent 62%);
      opacity:.95;
      pointer-events:none;
    }
    .training-list{
      display:flex;
      flex-direction:column;
      gap:10px;
      position:relative; z-index:1;
      margin-top:10px;
    }
    .training-item{
      display:flex; align-items:center; gap:10px;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(20,28,45,.08);
      background:rgba(255,255,255,.68);
      color:rgba(31,36,48,.9);
      font-weight:900;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .training-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 14px 32px rgba(16,24,40,.08);
      border-color: rgba(109,40,217,.18);
    }
    .training-item .dot{
      width:10px; height:10px;
      border-radius:50%;
      background:rgba(14,165,233,.92);
      box-shadow:0 0 0 7px rgba(14,165,233,.16);
    }
    .training-item:nth-child(3) .dot{ background:rgba(109,40,217,.92); box-shadow:0 0 0 7px rgba(109,40,217,.16); }
    .training-item:nth-child(4) .dot{ background:rgba(16,185,129,.92); box-shadow:0 0 0 7px rgba(16,185,129,.16); }
    .training-item:nth-child(5) .dot{ background:rgba(244,114,182,.92); box-shadow:0 0 0 7px rgba(244,114,182,.16); }

    .training-why{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:14px;
      position:relative; z-index:1;
    }
    .why-card{
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.72);
    }
    .why-title{ font-weight:980; margin-bottom:10px; }

    .training-right{
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .training-card{
      border-radius: var(--radius2);
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.92);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      padding:18px;
    }
    .training-card-title{ font-weight:1000; font-size:16px; margin-bottom:10px; }
    .training-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; }

    .partner-row{
      border-radius: var(--radius2);
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.86);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      padding:18px;
      overflow:hidden;
    }
    .marquee-wrap{ margin-top:10px; border-radius:16px; border:1px solid rgba(20,28,45,.10); background:rgba(255,255,255,.72); overflow:hidden; }
    .marquee{
      display:flex;
      gap:16px;
      padding:12px 14px;
      white-space:nowrap;
      animation: marquee 18s linear infinite;
    }
    @keyframes marquee{
      0%{ transform: translateX(0); }
      100%{ transform: translateX(-50%); }
    }
    .m-item{
      font-weight:950;
      color:rgba(31,36,48,.86);
      background:rgba(109,40,217,.07);
      border:1px solid rgba(109,40,217,.14);
      padding:8px 10px;
      border-radius:999px;
      font-size:12.5px;
    }

    .help-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
    }
    .help-card{
      border-radius: var(--radius2);
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.92);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      padding:18px;
      overflow:hidden;
      position:relative;
    }
    .help-card::before{
      content:"";
      position:absolute;
      inset:-140px -140px auto -140px;
      height:240px;
      background: radial-gradient(circle at 25% 30%, rgba(14,165,233,.20), transparent 62%),
                  radial-gradient(circle at 75% 20%, rgba(168,85,247,.16), transparent 62%);
      opacity:.95;
      pointer-events:none;
    }
    .help-card-alt::before{
      background: radial-gradient(circle at 20% 20%, rgba(34,197,94,.20), transparent 62%),
                  radial-gradient(circle at 70% 25%, rgba(14,165,233,.16), transparent 62%);
    }
    .help-title{ font-weight:1000; font-size:16px; margin-bottom:10px; position:relative; z-index:1; }
    .help-card p{ position:relative; z-index:1; }
    .help-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; position:relative; z-index:1; }
    .help-quick-links{ display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; position:relative; z-index:1; }
    .pill-link{
      display:inline-flex;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,28,45,.12);
      background:rgba(255,255,255,.74);
      color:rgba(109,40,217,.98);
      font-weight:950;
      text-decoration:none;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      font-size:13px;
    }
    .pill-link:hover{ transform: translateY(-2px); box-shadow: 0 14px 32px rgba(16,24,40,.08); border-color: rgba(109,40,217,.18); }

    .faq-wrap{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .faq-item{
      border-radius: var(--radius2);
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.92);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      overflow:hidden;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .faq-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(16,24,40,.09);
      border-color: rgba(109,40,217,.18);
    }
    .faq-q{
      width:100%;
      text-align:left;
      padding:16px 16px;
      background:transparent;
      border:0;
      cursor:pointer;
      font-weight:980;
      font-size:15px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      color:rgba(31,36,48,.92);
    }
    .faq-icon{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(20,28,45,.12);
      background:rgba(255,255,255,.76);
      display:flex; align-items:center; justify-content:center;
      color:rgba(109,40,217,.98);
      font-size:18px;
      transition: transform .18s ease;
      flex:0 0 auto;
    }
    .faq-item .faq-q[aria-expanded="true"] .faq-icon{ transform: rotate(45deg); }
    .faq-a{
      max-height:0;
      opacity:0;
      overflow:hidden;
      transition: max-height .28s ease, opacity .2s ease, transform .28s ease;
      transform: translateY(-4px);
    }
    .faq-a-inner{
      padding:0 16px 16px;
      font-size:14px;
      line-height:1.8;
      font-weight:580;
    }

    .wiki-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
    }
    .wiki-card{
      border-radius: var(--radius2);
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.92);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      padding:18px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .wiki-card::after{
      content:"";
      position:absolute;
      inset:-2px -2px auto -2px;
      height:120px;
      background: var(--grad1);
      opacity:.09;
      pointer-events:none;
    }
    .wiki-card-alt::after{ background: var(--grad2); opacity:.12; }
    .wiki-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow2); border-color: rgba(109,40,217,.18); }
    .wiki-card .h3{ position:relative; z-index:1; margin-bottom:10px; }
    .wiki-card p{ position:relative; z-index:1; margin:0 0 14px; }

    .news-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
      align-items:start;
    }
    .news-card{
      border-radius: var(--radius2);
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.92);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      padding:18px;
      overflow:hidden;
      position:relative;
    }
    .news-card::before{
      content:"";
      position:absolute;
      inset:-180px -180px auto -180px;
      height:260px;
      background: radial-gradient(circle at 20% 20%, rgba(45,212,255,.20), transparent 62%),
                  radial-gradient(circle at 75% 20%, rgba(168,85,247,.16), transparent 62%);
      opacity:.95;
      pointer-events:none;
    }
    .news-card-alt::before{
      background: radial-gradient(circle at 20% 20%, rgba(34,197,94,.20), transparent 62%),
                  radial-gradient(circle at 75% 20%, rgba(14,165,233,.16), transparent 62%);
    }
    .news-title{ font-weight:1000; font-size:16px; position:relative; z-index:1; margin-bottom:10px; }
    .news-links,.friend-links{ display:flex; flex-direction:column; gap:10px; margin-top:12px; position:relative; z-index:1; }
    .news-link{
      text-decoration:none;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.70);
      color:rgba(31,36,48,.90);
      font-weight:850;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      font-size:13.5px;
      line-height:1.3;
    }
    .news-link:hover{ transform: translateY(-2px); box-shadow: 0 14px 32px rgba(16,24,40,.08); border-color: rgba(109,40,217,.18); }
    .friend-links a{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.70);
      color:rgba(109,40,217,.98);
      font-weight:950;
      font-size:13px;
      display:inline-flex;
      width:fit-content;
      margin-right:10px;
      margin-bottom:10px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .friend-links{ display:flex; flex-wrap:wrap; }
    .friend-links a:hover{ transform: translateY(-2px); box-shadow: 0 14px 32px rgba(16,24,40,.08); border-color: rgba(109,40,217,.18); }
    .news-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; position:relative; z-index:1; }

    .review-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
    }
    .review-card{
      border-radius: var(--radius2);
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.92);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      padding:16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
      min-height:170px;
    }
    .review-card::after{
      content:"";
      position:absolute;
      inset:-2px -2px auto -2px;
      height:90px;
      background: var(--grad3);
      opacity:.10;
      pointer-events:none;
    }
    .review-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow2); border-color: rgba(109,40,217,.18); }
    .review-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      position:relative; z-index:1;
      margin-bottom:10px;
    }
    .avatar{
      width:42px; height:42px;
      border-radius:18px;
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.76);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      color:rgba(109,40,217,.98);
      flex:0 0 auto;
    }
    .review-name{ font-weight:1000; }
    .review-meta{ color:var(--muted); font-weight:650; font-size:12.5px; margin-top:4px; }
    .review-score{ color:rgba(245,158,11,.95); font-weight:1000; letter-spacing:1px; }
    .review-card p{ position:relative; z-index:1; margin:0; line-height:1.8; font-weight:580; font-size:13.8px; }

    .contact-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
      align-items:start;
    }
    .contact-card{
      border-radius: var(--radius2);
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.92);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      padding:18px;
    }
    .contact-title{ font-weight:1000; font-size:16px; margin-bottom:12px; }
    .contact-row{
      display:grid;
      grid-template-columns: 88px 1fr;
      gap:12px;
      padding:10px 0;
      border-bottom:1px dashed rgba(20,28,45,.12);
      align-items:center;
    }
    .contact-row:last-of-type{ border-bottom:none; }
    .contact-k{ color:var(--muted); font-weight:800; font-size:13px; }
    .contact-v{ font-weight:800; color:rgba(31,36,48,.92); }
    .text-link{ color:rgba(109,40,217,.98); text-decoration:none; font-weight:950; }
    .text-link:hover{ text-decoration:underline; }

    .contact-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; }
    .contact-quick{ margin-top:14px; padding-top:14px; border-top:1px solid rgba(20,28,45,.08); }
    .contact-quick-title{ font-weight:980; margin-bottom:10px; }
    .contact-quick-tags{ display:flex; gap:10px; flex-wrap:wrap; }

    .kefu-card{
      border-radius: var(--radius2);
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.92);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      padding:18px;
    }
    .kefu-head{
      display:flex; justify-content:space-between; align-items:flex-start; gap:12px; margin-bottom:12px;
    }
    .kefu-title{ font-weight:1000; font-size:16px; }
    .kefu-badge{
      background:rgba(16,185,129,.10);
      border:1px solid rgba(16,185,129,.18);
      color:rgba(16,185,129,.98);
      padding:9px 12px;
      border-radius:999px;
      font-weight:980;
      font-size:12.5px;
      white-space:nowrap;
    }
    .kefu-qr{
      width:168px;
      max-width:100%;
      border-radius:18px;
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.70);
      padding:12px;
      margin:8px auto 0;
    }
    .kefu-qr img{ width:100%; height:auto; display:block; }
    .kefu-note{ margin-top:12px; text-align:center; font-weight:650; }
    .kefu-links{ display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin-top:14px; }

    .contact-latest{ margin-top:14px; }
    .latest-strip{
      border-radius: var(--radius2);
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.92);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      padding:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }
    .latest-title{ font-weight:1000; }
    .latest-links{ display:flex; flex-wrap:wrap; gap:10px; }
    .latest-links a{
      text-decoration:none;
      font-weight:950;
      color:rgba(109,40,217,.98);
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.72);
      padding:10px 12px;
      border-radius:999px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      font-size:13px;
    }
    .latest-links a:hover{ transform: translateY(-2px); box-shadow: 0 14px 32px rgba(16,24,40,.08); border-color: rgba(109,40,217,.18); }

    .join-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
      align-items:start;
    }
    .join-card{
      border-radius: var(--radius2);
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.92);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      padding:18px;
      overflow:hidden;
      position:relative;
    }
    .join-card::before{
      content:"";
      position:absolute;
      inset:-160px -160px auto -160px;
      height:260px;
      background: radial-gradient(circle at 20% 20%, rgba(109,40,217,.20), transparent 62%),
                  radial-gradient(circle at 75% 20%, rgba(14,165,233,.16), transparent 62%);
      opacity:.95;
      pointer-events:none;
    }
    .join-card-alt::before{
      background: radial-gradient(circle at 20% 20%, rgba(244,114,182,.20), transparent 62%),
                  radial-gradient(circle at 75% 20%, rgba(16,185,129,.16), transparent 62%);
    }
    .join-title{ font-weight:1000; font-size:16px; position:relative; z-index:1; margin-bottom:10px; }
    .join-card ul{ position:relative; z-index:1; }
    .join-actions{ display:flex; gap:12px; flex-wrap:wrap; position:relative; z-index:1; margin-top:14px; }
    .join-chips{ display:flex; flex-wrap:wrap; gap:10px; position:relative; z-index:1; margin-top:10px; }
    .join-network{ margin-top:14px; position:relative; z-index:1; }
    .mini-steps{ display:flex; flex-direction:column; gap:10px; margin-top:8px; }
    .mini-step{
      display:flex; align-items:center; gap:12px;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.72);
      font-weight:900;
      color:rgba(31,36,48,.86);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .mini-step:hover{ transform: translateY(-2px); box-shadow: 0 14px 32px rgba(16,24,40,.08); border-color: rgba(109,40,217,.18); }
    .mini-no{
      width:28px; height:28px;
      border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      background:rgba(109,40,217,.10);
      border:1px solid rgba(109,40,217,.18);
      color:rgba(109,40,217,.98);
      flex:0 0 auto;
      font-weight:1000;
      font-size:13px;
    }
    .join-links{ margin-top:14px; position:relative; z-index:1; display:flex; flex-direction:column; gap:8px; }

    .gallery-row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
      align-items:start;
    }
    .gallery-item{
      border-radius: var(--radius2);
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.92);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      padding:16px;
    }
    .gallery-k{ font-weight:1000; margin-bottom:12px; }
    .gallery-images{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:flex-start;
    }
    .gallery-images img{
      width: calc(50% - 6px);
      min-width: 160px;
      height:auto;
      display:block;
      border-radius:18px;
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.72);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
    }
    .gallery-item:nth-child(2) .gallery-images img{ width:100%; min-width: 0; max-width: 360px; margin:0 auto; }

    .site-footer{
      background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(246,247,255,.98));
      border-top:1px solid rgba(20,28,45,.08);
      color:rgba(31,36,48,.92);
      padding:30px 0 18px;
    }
    .footer-inner{ }
    .footer-top{
      display:grid;
      grid-template-columns: 1.2fr .9fr .9fr;
      gap:16px;
      align-items:start;
      margin-bottom:16px;
    }
    .footer-logo-row img{ width:132px; }
    .footer-desc{ margin-top:10px; line-height:1.85; font-weight:620; font-size:13.8px; }
    .footer-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; }
    .footer-col-title{ font-weight:1000; margin-bottom:10px; }
    .footer-links{ display:flex; flex-direction:column; gap:10px; }
    .footer-links a{
      text-decoration:none;
      color:rgba(109,40,217,.98);
      font-weight:950;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.72);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      width:fit-content;
      max-width:100%;
    }
    .footer-links a:hover{ transform: translateY(-2px); box-shadow: 0 14px 32px rgba(16,24,40,.08); border-color: rgba(109,40,217,.18); }

    .footer-contact{ display:flex; flex-direction:column; gap:10px; }
    .footer-contact-row{
      display:grid;
      grid-template-columns: 64px 1fr;
      gap:10px;
      align-items:center;
      padding:10px 0;
      border-bottom:1px dashed rgba(20,28,45,.12);
    }
    .footer-contact-row:last-child{ border-bottom:none; }
    .footer-contact-k{ color:var(--muted); font-weight:860; font-size:13px; }
    .footer-mini{ margin-top:14px; }
    .footer-mini .ai-page-home-link{
      display:inline-flex;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.72);
      text-decoration:none;
      color:rgba(109,40,217,.98);
      font-weight:980;
    }

    .footer-bottom{
      border-top:1px solid rgba(20,28,45,.08);
      padding-top:14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }
    .footer-bottom-links{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
      justify-content:flex-end;
    }
    .footer-bottom-links a{
      text-decoration:none;
      color:rgba(109,40,217,.98);
      font-weight:950;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,28,45,.10);
      background:rgba(255,255,255,.72);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      font-size:13px;
    }
    .footer-bottom-links a:hover{ transform: translateY(-2px); box-shadow: 0 14px 32px rgba(16,24,40,.08); border-color: rgba(109,40,217,.18); }

    .to-top{
      position:fixed;
      right:16px;
      bottom:20px;
      width:44px;
      height:44px;
      border-radius:16px;
      border:1px solid rgba(20,28,45,.14);
      background:rgba(255,255,255,.82);
      box-shadow: 0 14px 32px rgba(16,24,40,.10);
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:1000;
      color:rgba(31,36,48,.9);
      transform: translateY(18px);
      opacity:0;
      pointer-events:none;
      transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
      z-index:90;
    }
    .to-top.show{
      opacity:1;
      transform: translateY(0px);
      pointer-events:auto;
    }
    .to-top:hover{
      box-shadow: 0 18px 44px rgba(16,24,40,.14);
      border-color: rgba(109,40,217,.20);
    }

    .float-kefu{
      position:fixed;
      left:16px;
      bottom:20px;
      display:flex;
      flex-direction:column;
      gap:10px;
      z-index:90;
    }
    .float-item{
      width:52px;
      height:52px;
      border-radius:18px;
      border:1px solid rgba(20,28,45,.12);
      background:rgba(255,255,255,.82);
      box-shadow: 0 14px 32px rgba(16,24,40,.10);
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      text-decoration:none;
      color:rgba(31,36,48,.9);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      overflow:hidden;
    }
    .float-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(16,24,40,.14);
      border-color: rgba(109,40,217,.20);
    }
    .float-item-grad{
      background: var(--grad1);
      color:#fff;
      border-color: rgba(255,255,255,.25);
    }
    .float-ico{ font-size:18px; font-weight:1000; line-height:1; }
    .float-text{ font-size:11.5px; font-weight:950; margin-top:6px; }

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

    @media (max-width: 1020px){
      .hero-inner{ grid-template-columns: 1fr; }
      .side-panel{ position:relative; top:auto; }
      .cards-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .step-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .industry-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .case-grid{ grid-template-columns: 1fr; }
      .review-grid{ grid-template-columns: 1fr; }
      .two-col{ grid-template-columns: 1fr; }
      .network-panel{ grid-template-columns: 1fr; }
      .flow{ grid-template-columns: 1fr; }
      .match-grid{ grid-template-columns: 1fr; }
      .training-grid{ grid-template-columns: 1fr; }
      .help-grid{ grid-template-columns: 1fr; }
      .wiki-grid{ grid-template-columns: 1fr; }
      .news-grid{ grid-template-columns: 1fr; }
      .compare-tiles{ grid-template-columns: 1fr; }
      .footer-top{ grid-template-columns: 1fr; }
      .gallery-row{ grid-template-columns: 1fr; }
      .gallery-images img{ width:100%; min-width:0; max-width:360px; margin:0 auto; }
      .gallery-item:nth-child(2) .gallery-images img{ max-width:360px; }
    }

    @media (max-width: 860px){
      .nav-desktop{ display:none; }
      .burger{ display:flex; }
      .header-actions{ min-width:auto; }
      .btn-ghost{ display:none; }
      .hero-metrics{ grid-template-columns: 1fr; }
      .mobile-links{ grid-template-columns: 1fr; }
      .form-grid{ grid-template-columns: 1fr; }
      .float-kefu{ left:12px; }
    }

    @media (prefers-reduced-motion: reduce){
      .hero-orbit, .marquee, .node, .pulse-dot{ animation:none !important; }
      .reveal{ transition:none !important; opacity:1 !important; transform:none !important; }
      html:focus-within { scroll-behavior:auto; }
    }