:root{
      --bg:#fbf7ff;
      --base:#ffffff;
      --text:#1e232b;
      --muted:#5d6673;
      --muted2:#7a8494;
      --border:rgba(18,26,33,.10);
      --shadow:0 14px 40px rgba(16,24,40,.10);
      --shadow2:0 10px 28px rgba(16,24,40,.12);
      --brand1:#ff2fb3;
      --brand2:#7c3aed;
      --brand3:#00c2ff;
      --brand4:#ffd400;
      --brand5:#12b981;
      --primary:#6d28d9;
      --primary2:#7c3aed;
      --danger:#ef4444;
      --radius:18px;
      --radius2:26px;
      --container:1120px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    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;
      background:
        radial-gradient(1200px 700px at 15% -10%, rgba(255,47,179,.18), transparent 55%),
        radial-gradient(1000px 600px at 90% 10%, rgba(124,58,237,.18), transparent 55%),
        radial-gradient(900px 520px at 60% 90%, rgba(0,194,255,.14), transparent 55%),
        linear-gradient(180deg, #fff 0%, var(--bg) 45%, #fff 100%);
      color:var(--text);
    }

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

    .container{max-width:var(--container); margin:0 auto; padding:0 18px}
    .section{padding:64px 0}
    .section.alt{background:linear-gradient(180deg, rgba(255,47,179,.06), rgba(124,58,237,.04)); border-top:1px solid rgba(18,26,33,.06); border-bottom:1px solid rgba(18,26,33,.06)}
    .section.alt2{background:linear-gradient(180deg, rgba(0,194,255,.06), rgba(255,212,0,.03)); border-top:1px solid rgba(18,26,33,.06); border-bottom:1px solid rgba(18,26,33,.06)}
    .section-divider{height:1px;background:rgba(18,26,33,.08); margin:30px 0}

    .site-header{
      position:sticky; top:0; z-index:50;
      background:rgba(255,255,255,.78);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(18,26,33,.08);
    }
    .header-inner{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 0;
      gap:14px;
    }
    .brand-link{display:flex; align-items:center; gap:12px; text-decoration:none; color:inherit}
    .ai-page-logo{width:40px; height:auto; border-radius:12px; background:rgba(124,58,237,.06)}
    .brand-text{display:flex; flex-direction:column; line-height:1.1}
    .brand-name{font-weight:860; letter-spacing:.2px}
    .brand-sub{font-size:12px; color:var(--muted); margin-top:4px; white-space:nowrap}

    .nav-desktop{display:flex; gap:18px; align-items:center}
    .nav-link{
      text-decoration:none; color:var(--muted);
      font-weight:650; font-size:14px;
      padding:10px 10px; border-radius:12px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
    }
    .nav-link:hover{
      background:rgba(124,58,237,.08);
      color:var(--text);
      transform: translateY(-1px);
    }

    .header-actions{display:flex; align-items:center; gap:10px}
    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      border-radius:14px; padding:12px 14px;
      text-decoration:none; font-weight:780;
      border:1px solid rgba(18,26,33,.10);
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      cursor:pointer;
      user-select:none;
      white-space:nowrap;
    }
    .btn:active{transform: translateY(1px)}
    .btn-block{width:100%}

    .btn-primary{
      background: linear-gradient(135deg, var(--primary) 0%, var(--brand1) 50%, var(--brand3) 100%);
      color:#fff;
      border-color: rgba(255,255,255,.24);
      box-shadow: 0 10px 30px rgba(109,40,217,.22);
    }
    .btn-primary:hover{
      box-shadow: 0 16px 42px rgba(109,40,217,.26);
      transform: translateY(-1px);
    }
    .btn-soft{
      background: rgba(124,58,237,.08);
      border-color: rgba(124,58,237,.14);
      color: var(--primary);
    }
    .btn-soft:hover{
      background: rgba(124,58,237,.12);
      border-color: rgba(124,58,237,.20);
      transform: translateY(-1px);
    }
    .btn-ghost{
      background: rgba(255,255,255,.65);
      border-color: rgba(18,26,33,.12);
      color: var(--text);
    }
    .btn-ghost:hover{
      background: rgba(255,255,255,.9);
      transform: translateY(-1px);
      box-shadow: 0 10px 22px rgba(16,24,40,.08);
    }
    .icon-btn{
      width:44px;height:44px;border-radius:14px;
      border:1px solid rgba(18,26,33,.12);
      background:rgba(255,255,255,.7);
      display:flex;align-items:center;justify-content:center;
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .icon-btn:hover{
      transform: translateY(-1px);
      box-shadow: 0 12px 28px rgba(16,24,40,.10);
      background: rgba(255,255,255,.95);
    }
    .icon-lines{
      width:18px;height:12px; display:block; position:relative;
    }
    .icon-lines::before,.icon-lines::after,.icon-lines{
      background:transparent;
    }
    .icon-lines::before,.icon-lines::after{
      content:"";
      position:absolute; left:0; width:18px; height:2px; border-radius:2px;
      background: #1e232b;
      top:0;
    }
    .icon-lines::after{ top:auto; bottom:0 }
    .icon-lines{
      background:#1e232b; height:2px; border-radius:2px; width:18px;
    }

    .icon-close{
      width:18px;height:18px; display:block; position:relative;
    }
    .icon-close::before,.icon-close::after{
      content:""; position:absolute; left:8px; top:2px;
      width:2px;height:14px;border-radius:2px;background:#1e232b;
    }
    .icon-close::before{ transform: rotate(45deg); }
    .icon-close::after{ transform: rotate(-45deg); }

    .mobile-bar{display:none}
    .mobile-drawer{
      position:fixed; top:64px; left:0; right:0; z-index:60;
      transform: translateY(-10px);
      opacity:0; pointer-events:none;
      transition: opacity .18s ease, transform .18s ease;
    }
    .mobile-drawer[aria-hidden="false"]{
      opacity:1; pointer-events:auto;
      transform: translateY(0);
    }
    .mobile-drawer-inner{
      margin:10px auto;
      max-width:var(--container);
      background: rgba(255,255,255,.92);
      border:1px solid rgba(18,26,33,.12);
      border-radius:20px;
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .mobile-drawer-top{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 14px 10px;
      border-bottom:1px solid rgba(18,26,33,.08);
    }
    .mobile-drawer-title{font-weight:860}
    .mobile-links{display:flex; flex-direction:column; padding:10px}
    .mobile-link{
      text-decoration:none; color:var(--text);
      padding:12px 12px; border-radius:14px;
      font-weight:720;
      border:1px solid transparent;
      transition: background .18s ease, border-color .18s ease, transform .18s ease;
    }
    .mobile-link:hover{
      background: rgba(124,58,237,.10);
      border-color: rgba(124,58,237,.20);
      transform: translateY(-1px);
    }
    .mobile-drawer-bottom{
      padding:14px;
      border-top:1px solid rgba(18,26,33,.08);
      display:flex; flex-direction:column; gap:10px;
    }
    .mobile-contact{color:var(--muted); font-weight:650; font-size:13px}
    .dot{display:inline-block;width:8px;height:8px;border-radius:999px;background:linear-gradient(135deg,var(--brand1),var(--brand3)); margin:0 8px -1px 0}

    .drawer-backdrop{
      position:fixed; inset:0; z-index:55; background:rgba(10,12,18,.34);
      opacity:0; pointer-events:none;
      transition: opacity .18s ease;
    }
    .drawer-backdrop.show{
      opacity:1; pointer-events:auto;
    }

    .hero{padding:46px 0 20px}
    .hero-inner{display:grid; grid-template-columns: 1.1fr .9fr; gap:22px; align-items:center}
    .hero-copy{padding:10px 0}
    .hero-badge{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.55);
      background: rgba(255,255,255,.65);
      box-shadow: 0 18px 40px rgba(16,24,40,.08);
      font-weight:780; color:var(--text);
    }
    .badge-dot{width:10px;height:10px;border-radius:999px;background:linear-gradient(135deg,var(--brand1),var(--brand3)); box-shadow: 0 0 0 6px rgba(124,58,237,.10)}
    .hero-title{
      margin:14px 0 10px;
      font-size: clamp(24px, 3.2vw, 40px);
      line-height:1.12;
      letter-spacing:-.4px;
      font-weight:920;
    }
    .hero-desc{margin:0; color:var(--muted); font-size:16px; line-height:1.7; max-width:60ch}
    .hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
    .hero-meta{display:grid; grid-template-columns: 1fr 1fr; gap:12px; margin-top:18px}
    .meta-item{
      background: rgba(255,255,255,.7);
      border:1px solid rgba(18,26,33,.10);
      border-radius:16px;
      padding:12px 12px;
    }
    .meta-k{font-weight:900; font-size:13px}
    .meta-v{color:var(--muted); margin-top:6px; font-weight:650; font-size:13px; line-height:1.4}

    .hero-visual{
      position:relative; border-radius:var(--radius2);
      background:
        radial-gradient(700px 360px at 20% 10%, rgba(255,47,179,.22), transparent 55%),
        radial-gradient(620px 320px at 80% 20%, rgba(0,194,255,.20), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.55));
      border:1px solid rgba(18,26,33,.10);
      box-shadow: 0 22px 70px rgba(109,40,217,.16);
      overflow:hidden;
      padding:18px;
      min-height:410px;
    }
    .orb{position:absolute; border-radius:999px; filter: blur(0px); opacity:.95}
    .orb-1{
      width:220px;height:220px; left:-60px; top:30px;
      background: radial-gradient(circle at 30% 30%, rgba(255,212,0,.95), rgba(255,47,179,.30) 55%, transparent 70%);
      animation: floaty 7s ease-in-out infinite;
    }
    .orb-2{
      width:240px;height:240px; right:-80px; top:-50px;
      background: radial-gradient(circle at 30% 30%, rgba(0,194,255,.85), rgba(124,58,237,.26) 55%, transparent 70%);
      animation: floaty2 8s ease-in-out infinite;
    }
    .grid-lines{
      position:absolute; inset:-40px;
      background:
        linear-gradient(to right, rgba(18,26,33,.06) 1px, transparent 1px) 0 0/36px 36px,
        linear-gradient(to bottom, rgba(18,26,33,.06) 1px, transparent 1px) 0 0/36px 36px;
      mask-image: radial-gradient(circle at 35% 40%, rgba(0,0,0,1), rgba(0,0,0,0) 68%);
      opacity:.8;
    }

    .hero-stat{position:relative; z-index:2; display:flex; flex-direction:column; gap:14px}
    .chip{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 10px; border-radius:999px;
      background: rgba(255,212,0,.16);
      border:1px solid rgba(255,212,0,.22);
      color:#7a4a00;
      font-weight:900;
      width:fit-content;
    }
    .stat-title{font-weight:950; font-size:18px}
    .stat-sub{color:var(--muted); font-weight:700; margin-top:6px}

    .stat-grid{display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:12px}
    .stat-card{
      border-radius:16px;
      background: rgba(255,255,255,.68);
      border:1px solid rgba(18,26,33,.10);
      padding:14px 12px;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .stat-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 40px rgba(16,24,40,.10);
    }
    .stat-num{font-weight:980; font-size:16px}
    .stat-label{margin-top:6px; color:var(--muted); font-weight:720; font-size:13px}

    .stat-footer{display:flex; align-items:center; gap:10px; color:var(--muted); font-weight:760}
    .pulse{
      width:12px;height:12px;border-radius:999px;
      background: linear-gradient(135deg,var(--brand1),var(--brand3));
      box-shadow: 0 0 0 0 rgba(255,47,179,.35);
      animation: pulse 1.8s ease-out infinite;
    }

    .hero-strip{padding:10px 0 0}
    .strip-inner{
      display:flex; gap:14px; align-items:center; justify-content:space-between;
      padding:12px 12px;
      border-radius:18px;
      background: rgba(255,255,255,.62);
      border:1px solid rgba(18,26,33,.08);
      box-shadow: 0 18px 55px rgba(16,24,40,.08);
    }
    .strip-item{display:flex; align-items:center; gap:10px; font-weight:820; color:var(--text)}
    .strip-ico{width:28px;height:28px;border-radius:12px; display:flex; align-items:center; justify-content:center;
      background: rgba(124,58,237,.12); border:1px solid rgba(124,58,237,.18);
    }

    .section-head{margin-bottom:26px}
    .section-eyebrow{
      font-weight:900; letter-spacing:.6px; text-transform:uppercase;
      color:#6d28d9; font-size:12px;
      display:inline-flex; gap:10px; align-items:center;
    }
    .section-eyebrow::before{
      content:""; width:10px; height:10px; border-radius:3px;
      background: linear-gradient(135deg,var(--brand1),var(--brand3));
      box-shadow: 0 0 0 6px rgba(124,58,237,.10);
    }
    .section-title{
      margin:12px 0 10px;
      font-size: clamp(20px, 2.4vw, 30px);
      font-weight:920; letter-spacing:-.3px;
      line-height:1.2;
    }
    .section-desc{margin:0; color:var(--muted); line-height:1.8; font-weight:650}

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

    .card{
      background: rgba(255,255,255,.70);
      border:1px solid rgba(18,26,33,.10);
      border-radius:var(--radius);
      box-shadow: 0 10px 30px rgba(16,24,40,.06);
      padding:18px;
      overflow:hidden;
    }
    .shadow-soft{box-shadow: 0 16px 48px rgba(16,24,40,.08)}
    .card.kpi-card{background: rgba(255,255,255,.72)}
    .card-icon{width:44px;height:44px;border-radius:16px; display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(255,47,179,.16), rgba(124,58,237,.10));
      border:1px solid rgba(124,58,237,.16);
      font-size:20px;
      margin-bottom:12px;
    }
    .card-title{margin:0; font-size:16px; font-weight:900}
    .card-text{margin:8px 0 0; color:var(--muted); line-height:1.7; font-weight:650}
    .pill-row{margin-top:14px; display:flex; flex-wrap:wrap; gap:8px}
    .pill{
      padding:7px 10px;
      border-radius:999px;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.16);
      color:#4c1d95;
      font-weight:820;
      font-size:12px;
    }

    .split-banner{
      margin-top:22px;
      display:grid; grid-template-columns: 1.05fr .95fr; gap:16px;
      align-items:stretch;
      padding:0;
      border-radius:var(--radius2);
      overflow:hidden;
    }
    .split-left{
      padding:20px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(18,26,33,.10);
      border-radius:var(--radius2);
      box-shadow: 0 22px 70px rgba(16,24,40,.08);
    }
    .split-kicker{font-weight:900; color:#6d28d9; font-size:12px; letter-spacing:.5px; text-transform:uppercase}
    .split-title{margin:10px 0 10px; font-size:22px; font-weight:950; letter-spacing:-.2px}
    .split-desc{margin:0; color:var(--muted); line-height:1.8; font-weight:650}
    .split-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}

    .split-right{
      padding:18px;
      background:
        radial-gradient(700px 360px at 20% 10%, rgba(255,47,179,.20), transparent 55%),
        radial-gradient(620px 320px at 80% 20%, rgba(0,194,255,.18), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,255,255,.55));
      border:1px solid rgba(18,26,33,.10);
      border-radius:var(--radius2);
      box-shadow: 0 22px 70px rgba(16,24,40,.08);
      position:relative;
      overflow:hidden;
    }
    .badge-matrix{display:flex; flex-direction:column; gap:14px; position:relative; z-index:2}
    .matrix-item{display:flex; gap:12px; align-items:flex-start; padding:12px; border-radius:18px; background: rgba(255,255,255,.60); border:1px solid rgba(18,26,33,.10)}
    .matrix-dot{width:12px;height:12px;border-radius:4px; margin-top:4px}
    .dot-pink{background:linear-gradient(135deg, var(--brand1), #ff7ad7)}
    .dot-cyan{background:linear-gradient(135deg, var(--brand3), #59d7ff)}
    .dot-yellow{background:linear-gradient(135deg, var(--brand4), #ffe56a)}
    .matrix-top{font-weight:920}
    .matrix-bottom{color:var(--muted); margin-top:4px; font-weight:650; line-height:1.4}
    .mini-note{
      margin-top:16px; display:flex; align-items:center; gap:10px;
      padding:12px; border-radius:18px;
      background: rgba(255,212,0,.14);
      border:1px solid rgba(255,212,0,.22);
      color:#5b3b00;
      font-weight:780;
      position:relative; z-index:2;
    }
    .mini-note-ico{
      width:28px;height:28px;border-radius:12px; display:flex;align-items:center;justify-content:center;
      background: rgba(255,255,255,.55);
      border:1px solid rgba(255,212,0,.24);
    }

    .list{list-style:none; padding:0; margin:10px 0 0}
    .list-item{display:flex; gap:10px; align-items:flex-start; padding:10px 0; border-bottom:1px dashed rgba(18,26,33,.08); font-weight:670; color:var(--text)}
    .list-item:last-child{border-bottom:none}
    .check{
      width:18px;height:18px;border-radius:6px;
      background: rgba(124,58,237,.12);
      border:1px solid rgba(124,58,237,.18);
      display:inline-block; margin-top:2px;
      position:relative;
    }
    .check::after{
      content:"";
      position:absolute; left:5px; top:3px;
      width:7px;height:4px;
      border-left:2px solid #5b21b6;
      border-bottom:2px solid #5b21b6;
      transform: rotate(-45deg);
      border-radius:1px;
    }

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

    .grid-4 .service-card{padding:18px; position:relative}
    .service-ico{width:44px;height:44px;border-radius:16px; display:flex; align-items:center; justify-content:center;
      background: rgba(255,47,179,.12);
      border:1px solid rgba(255,47,179,.18);
      font-size:20px;
      margin-bottom:12px;
    }
    .service-title{margin:0; font-size:16px; font-weight:930}
    .service-text{margin:8px 0 0; color:var(--muted); line-height:1.7; font-weight:650}
    .service-tags{display:flex; flex-wrap:wrap; gap:8px; margin-top:14px}
    .tag{
      padding:7px 10px; border-radius:999px;
      background: rgba(0,194,255,.10);
      border:1px solid rgba(0,194,255,.18);
      color:#0b6aa6; font-weight:820; font-size:12px;
    }
    .service-card{transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease}
    .service-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 22px 60px rgba(16,24,40,.10);
      border-color: rgba(124,58,237,.18);
    }

    .service-tiles{margin-top:16px}
    .tile-row{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:12px}
    .tile{
      padding:16px;
      border-radius:var(--radius);
      background: rgba(255,255,255,.68);
      border:1px solid rgba(18,26,33,.10);
    }
    .tile-title{font-weight:950}
    .tile-desc{margin-top:8px; color:var(--muted); line-height:1.7; font-weight:650}
    .service-cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}

    .industry-grid{display:grid; grid-template-columns: 1fr 1.1fr; gap:16px; align-items:start}
    .card.glass-card{
      background:
        radial-gradient(700px 360px at 20% 10%, rgba(255,47,179,.14), transparent 55%),
        radial-gradient(620px 320px at 80% 20%, rgba(0,194,255,.12), transparent 55%),
        rgba(255,255,255,.68);
    }
    .glass-title{font-weight:980; margin-bottom:10px}
    .cloud{display:flex; flex-wrap:wrap; gap:10px}
    .cloud-pill{
      padding:8px 10px;
      border-radius:999px;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.16);
      color:#4c1d95;
      font-weight:860;
      font-size:12px;
    }
    .glass-foot{margin-top:12px; display:flex; align-items:center; gap:10px}
    .glass-note{color:var(--muted); font-weight:700; font-size:13px}

    .timeline{display:flex; flex-direction:column; gap:14px; margin-top:10px}
    .time-item{display:flex; gap:12px; align-items:flex-start}
    .time-bullet{
      width:14px;height:14px;border-radius:6px; margin-top:6px;
      background: linear-gradient(135deg, var(--brand1), var(--brand3));
      box-shadow: 0 0 0 6px rgba(124,58,237,.10);
      flex:0 0 auto;
    }
    .time-title{font-weight:930}
    .time-desc{margin-top:6px; color:var(--muted); font-weight:650; line-height:1.7}

    .industry-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}

    .stack-cards{display:flex; flex-direction:column; gap:12px}
    .price-card{background: rgba(255,255,255,.68)}
    .price-top{display:flex; flex-direction:column; gap:6px; margin-bottom:12px}
    .price-title{font-weight:980}
    .price-sub{color:var(--muted); font-weight:700}
    .price-row{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:10px}
    .price-col{padding:12px; border-radius:16px; border:1px solid rgba(18,26,33,.10); background: rgba(124,58,237,.06)}
    .price-k{font-weight:900; font-size:12px; color:#4c1d95}
    .price-v{margin-top:6px; font-weight:920}

    .net-grid{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:16px}
    .net-card{padding:18px}
    .net-top{display:flex; gap:12px; align-items:flex-start; margin-bottom:12px}
    .net-icon{
      width:44px;height:44px;border-radius:16px; display:flex; align-items:center; justify-content:center;
      background: rgba(0,194,255,.10);
      border:1px solid rgba(0,194,255,.18);
      font-size:20px;
      flex:0 0 auto;
    }
    .muted{color:var(--muted); font-weight:650}
    .h3-title{margin:0 0 10px; font-size:16px; font-weight:950}
    .net-list{display:flex; flex-direction:column; gap:10px}
    .net-item{display:flex; gap:10px; align-items:flex-start; font-weight:700; color:var(--text)}
    .net-dot{width:10px;height:10px;border-radius:4px; margin-top:4px; background:linear-gradient(135deg, var(--brand1), var(--brand3)); flex:0 0 auto}

    .net-steps{display:grid; grid-template-columns: 44px 1fr; gap:10px; align-items:start}
    .step-badge{
      width:34px;height:34px;border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.16);
      font-weight:980;
      margin-top:2px;
    }
    .step-text{grid-column:2; color:var(--muted); font-weight:690; line-height:1.6}

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

    .flow{display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:12px}
    .flow-step{
      padding:18px;
      border-radius:var(--radius);
      background: rgba(255,255,255,.68);
      border:1px solid rgba(18,26,33,.10);
      box-shadow: 0 10px 30px rgba(16,24,40,.06);
      position:relative;
      overflow:hidden;
    }
    .flow-step::after{
      content:""; position:absolute; inset:-2px;
      background: radial-gradient(260px 140px at 10% 10%, rgba(255,47,179,.20), transparent 58%),
                  radial-gradient(260px 140px at 90% 20%, rgba(0,194,255,.16), transparent 58%);
      opacity:.55; pointer-events:none;
    }
    .flow-num{position:relative; z-index:2; font-weight:980; color:#4c1d95}
    .flow-title{position:relative; z-index:2; margin:10px 0 8px; font-size:16px; font-weight:950}
    .flow-desc{position:relative; z-index:2; margin:0; color:var(--muted); line-height:1.7; font-weight:650}

    .workflow-bottom{
      margin-top:16px;
      display:flex; gap:16px; align-items:center; justify-content:space-between;
    }
    .workflow-bottom-left{flex:1}
    .workflow-kicker{font-weight:900; color:#6d28d9; font-size:12px; letter-spacing:.5px; text-transform:uppercase}
    .workflow-title{margin-top:10px; font-size:20px; font-weight:960; letter-spacing:-.2px}
    .workflow-desc{margin-top:10px; color:var(--muted); font-weight:650; line-height:1.8}
    .workflow-bottom-right{width:260px; display:flex; flex-direction:column; gap:10px}
    .help-row{display:flex; align-items:center; gap:10px; font-size:13px}
    .help-dot{width:10px;height:10px;border-radius:4px; background: linear-gradient(135deg,var(--brand1),var(--brand3)); box-shadow:0 0 0 6px rgba(124,58,237,.10)}

    .cases-grid{display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:12px}
    .case-card{
      border-radius:var(--radius);
      padding:16px;
      background: rgba(255,255,255,.68);
      border:1px solid rgba(18,26,33,.10);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      box-shadow: 0 10px 30px rgba(16,24,40,.06);
      display:flex; flex-direction:column; justify-content:space-between; gap:12px;
      min-height:210px;
    }
    .case-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 22px 60px rgba(16,24,40,.10);
      border-color: rgba(255,47,179,.20);
    }
    .case-top{display:flex; gap:12px; align-items:flex-start}
    .case-icon{
      width:44px;height:44px;border-radius:16px; display:flex; align-items:center; justify-content:center;
      background: rgba(255,212,0,.12);
      border:1px solid rgba(255,212,0,.18);
      font-size:20px;
      flex:0 0 auto;
    }
    .case-title{margin:0; font-size:15px; font-weight:950; line-height:1.35}
    .case-desc{margin:6px 0 0; color:var(--muted); font-weight:650; line-height:1.6}
    .case-meta{display:flex; flex-wrap:wrap; gap:8px}
    .case-pill{
      padding:7px 10px; border-radius:999px;
      background: rgba(0,194,255,.10);
      border:1px solid rgba(0,194,255,.18);
      color:#0b6aa6; font-weight:860; font-size:12px;
    }
    .case-action{display:flex; align-items:center; justify-content:space-between; border-top:1px dashed rgba(18,26,33,.10); padding-top:12px}
    .link-cta{color:#6d28d9; font-weight:950; text-decoration:none}
    .link-cta:hover{text-decoration:underline}

    .compare-top{display:grid; grid-template-columns: .85fr 1.15fr; gap:16px; align-items:start; margin-bottom:16px}
    .rating-card{
      padding:18px;
      border-radius:var(--radius);
      background:
        radial-gradient(520px 260px at 20% 10%, rgba(255,47,179,.24), transparent 60%),
        radial-gradient(480px 240px at 90% 20%, rgba(0,194,255,.20), transparent 60%),
        rgba(255,255,255,.72);
      border:1px solid rgba(18,26,33,.10);
      box-shadow: 0 22px 70px rgba(16,24,40,.10);
    }
    .rating-badge{display:flex; align-items:center; gap:6px; flex-wrap:wrap}
    .star{color:#ffb020; font-size:18px}
    .rating-label{margin-left:6px; font-weight:950; color:var(--text)}
    .rating-score{display:flex; align-items:baseline; gap:12px; margin-top:14px}
    .score-num{font-size:44px; font-weight:990; letter-spacing:-.6px; background: linear-gradient(135deg, var(--primary), var(--brand1), var(--brand3)); -webkit-background-clip:text; background-clip:text; color:transparent}
    .score-sub{color:var(--muted); font-weight:800}
    .rating-note{margin-top:10px; color:var(--muted); font-weight:700; line-height:1.7}

    .compare-card{padding:18px}
    .compare-card-title{font-weight:980; margin-bottom:12px; font-size:16px}
    .compare-bullets{display:flex; flex-direction:column; gap:10px}
    .compare-bullet{display:flex; gap:10px; align-items:flex-start; font-weight:780; color:var(--text)}
    .bullet-ico{
      width:26px;height:26px;border-radius:12px; display:flex; align-items:center; justify-content:center;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.16);
      flex:0 0 auto;
    }

    .table-wrap{padding:18px}
    .table-head{display:flex; flex-direction:column; gap:6px; margin-bottom:12px}
    .table-title{font-weight:980; font-size:16px}
    .table-sub{color:var(--muted); font-weight:700}
    .table-scroll{overflow:auto; border-radius:14px; border:1px solid rgba(18,26,33,.10); background: rgba(255,255,255,.78)}
    table{border-collapse:collapse; width:100%}
    .compare-table th, .compare-table td, .token-table th, .token-table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(18,26,33,.08);
      text-align:left;
      vertical-align:top;
      font-weight:680;
      line-height:1.5;
      min-width:180px;
    }
    .compare-table th:first-child, .token-table th:first-child{min-width:150px}
    .compare-table thead th{
      background: rgba(124,58,237,.08);
      color:#2a2f3a;
      font-weight:950;
      border-bottom:1px solid rgba(18,26,33,.10);
    }
    .compare-table tbody tr:hover td{background: rgba(124,58,237,.05)}
    .table-cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; justify-content:flex-end}

    .token-grid{display:grid; grid-template-columns: .95fr 1.05fr; gap:16px; align-items:start}
    .token-title{font-weight:980; margin-bottom:10px}
    .token-list{display:flex; flex-direction:column; gap:10px}
    .token-line{display:flex; gap:10px; align-items:flex-start; color:var(--muted); font-weight:700; line-height:1.6}
    .token-ico{width:24px;height:24px;border-radius:10px; background: rgba(255,212,0,.14); border:1px solid rgba(255,212,0,.22); display:flex; align-items:center; justify-content:center; color:#6b4b00; flex:0 0 auto}
    .token-table-wrap{padding:18px}
    .token-table-head{display:flex; flex-direction:column; gap:6px; margin-bottom:12px}
    .token-table-title{font-weight:980}
    .token-table-cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}

    .token-table th, .token-table td{min-width:210px}
    .token-table thead th{background: rgba(0,194,255,.08); font-weight:950}

    .token-bottom{display:flex; gap:16px; align-items:stretch}
    .token-bottom-left{flex:1; padding:4px 0}
    .kicker{font-weight:900; color:#6d28d9; font-size:12px; letter-spacing:.5px; text-transform:uppercase}
    .bottom-title{margin-top:10px; font-size:20px; font-weight:960}
    .bottom-desc{margin-top:10px; color:var(--muted); font-weight:650; line-height:1.8}
    .token-bottom-right{width:300px; display:flex; flex-direction:column; gap:12px; justify-content:center}
    .token-badges{display:flex; flex-wrap:wrap; gap:10px}
    .stat-pill{padding:10px 12px; border-radius:999px; background: rgba(124,58,237,.10); border:1px solid rgba(124,58,237,.18); font-weight:900; color:#4c1d95}

    .match-grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:16px; align-items:start}
    .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{font-weight:900; font-size:13px; color:var(--text)}
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(18,26,33,.14);
      background: rgba(255,255,255,.85);
      color:var(--text);
      outline:none;
      font-weight:700;
      transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }
    input:focus, select:focus, textarea:focus{
      border-color: rgba(124,58,237,.35);
      box-shadow: 0 0 0 4px rgba(124,58,237,.12);
    }
    textarea{resize:vertical; min-height:108px}
    .form-actions{display:flex; align-items:center; gap:14px; flex-wrap:wrap; justify-content:space-between}
    .form-tip{display:flex; align-items:center; gap:10px; padding:10px 12px; border-radius:14px; background: rgba(0,194,255,.08); border:1px solid rgba(0,194,255,.16)}
    .tip-ico{width:26px;height:26px;border-radius:12px; background: rgba(255,255,255,.6); border:1px solid rgba(0,194,255,.18); display:flex; align-items:center; justify-content:center}
    .side-panel{display:flex; flex-direction:column; gap:12px}
    .side-card{padding:18px}
    .side-title{font-weight:980; margin-bottom:10px}
    .side-list{display:flex; flex-direction:column; gap:10px}
    .side-item{display:flex; gap:10px; align-items:flex-start; color:var(--muted); font-weight:720; line-height:1.7}
    .side-dot{width:10px;height:10px;border-radius:4px; margin-top:5px; background: linear-gradient(135deg, var(--brand1), var(--brand3)); flex:0 0 auto}
    .side-card2{padding:18px}
    .faq-quick{display:flex; flex-wrap:wrap; gap:10px}
    .faq-chip{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      background: rgba(255,47,179,.10);
      border:1px solid rgba(255,47,179,.18);
      color:#7a1656;
      font-weight:860;
      font-size:13px;
      transition: transform .2s ease, background .2s ease;
    }
    .faq-chip:hover{transform: translateY(-2px); background: rgba(255,47,179,.14)}

    .train-grid{display:grid; grid-template-columns: 1fr 1fr; gap:16px}
    .train-cards{display:flex; flex-wrap:wrap; gap:10px; margin-top:10px}
    .train-chip{
      padding:10px 12px;
      border-radius:999px;
      background: rgba(255,212,0,.14);
      border:1px solid rgba(255,212,0,.22);
      color:#6b4b00;
      font-weight:900;
    }
    .train-desc{margin-top:12px; color:var(--muted); font-weight:650; line-height:1.8}
    .train-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}

    .timeline-card-title{font-weight:980; margin-bottom:12px}
    .time-grid{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
    .time-block{
      padding:14px;
      border-radius:16px;
      border:1px solid rgba(18,26,33,.10);
      background: rgba(255,255,255,.70);
    }
    .time-top{font-weight:950}
    .time-bot{margin-top:8px; color:var(--muted); font-weight:700; line-height:1.6}
    .timeline-card-foot{margin-top:12px; display:flex; gap:10px; align-items:center}
    .spark{width:26px;height:26px;border-radius:12px; display:flex; align-items:center; justify-content:center;
      background: rgba(124,58,237,.10); border:1px solid rgba(124,58,237,.16)}
    .train-review-title{font-weight:980; margin-bottom:10px}
    .review-list{display:flex; flex-direction:column; gap:10px}
    .review-item{display:flex; gap:10px; align-items:flex-start; color:var(--muted); font-weight:700; line-height:1.7}
    .review-ico{width:28px;height:28px;border-radius:12px; display:flex;align-items:center;justify-content:center; background: rgba(124,58,237,.10); border:1px solid rgba(124,58,237,.16); flex:0 0 auto}

    .help-grid{display:grid; grid-template-columns: 1.1fr .9fr 1fr; gap:16px; align-items:start}
    .help-title{font-weight:980; margin-bottom:10px}
    .help-list{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px}
    .help-item{display:flex; gap:10px; align-items:flex-start; color:var(--muted); font-weight:720; line-height:1.7}
    .help-bullet{width:10px;height:10px;border-radius:4px; margin-top:6px; background: linear-gradient(135deg, var(--brand1), var(--brand3)); flex:0 0 auto}
    .help-chips{display:flex; flex-wrap:wrap; gap:10px; margin-top:10px}
    .chip-soft{
      padding:10px 12px; border-radius:999px;
      background: rgba(0,194,255,.10);
      border:1px solid rgba(0,194,255,.18);
      color:#0b6aa6;
      font-weight:900;
      font-size:13px;
    }
    .help-cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
    .wechat-block{display:flex; gap:14px; align-items:center}
    .qr-img{width:98px; height:auto; border-radius:14px; border:1px solid rgba(18,26,33,.10); background:#fff; box-shadow: 0 10px 22px rgba(16,24,40,.08)}
    .wechat-qr{flex:0 0 auto}
    .wechat-top{font-weight:980}
    .wechat-sub{margin-top:6px; color:var(--muted); font-weight:700; line-height:1.5}

    .faq-grid{display:grid; grid-template-columns: 1fr 1fr; gap:16px}
    .faq-col{display:flex; flex-direction:column; gap:12px}
    .faq-item{
      border-radius:var(--radius);
      border:1px solid rgba(18,26,33,.10);
      background: rgba(255,255,255,.68);
      overflow:hidden;
    }
    .faq-q{
      width:100%;
      text-align:left;
      border:0;
      background: transparent;
      padding:14px 14px;
      font-weight:920;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      color:var(--text);
    }
    .faq-icon{
      width:34px;height:34px;border-radius:14px;
      border:1px solid rgba(124,58,237,.18);
      background: rgba(124,58,237,.10);
      display:flex;align-items:center;justify-content:center;
      font-weight:980; color:#4c1d95;
      transition: transform .18s ease;
      flex:0 0 auto;
    }
    .faq-item[aria-expanded="true"] .faq-icon{transform: rotate(45deg)}
    .faq-a{
      max-height:0;
      overflow:hidden;
      transition: max-height .25s ease;
      padding:0 14px;
      color:var(--muted);
      font-weight:680;
      line-height:1.8;
    }
    .faq-item.open .faq-a{
      max-height:320px;
      padding:12px 14px 16px;
    }
    .faq-cta{
      display:flex; align-items:center; justify-content:space-between; gap:16px;
      padding:18px;
      border-radius:var(--radius2);
      background: rgba(255,255,255,.74);
    }
    .faq-cta-title{font-weight:980; font-size:16px}
    .faq-cta-desc{margin-top:8px; color:var(--muted); font-weight:680}
    .faq-cta-right{display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-end}

    .wiki-grid{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:16px}
    .wiki-card{padding:18px}
    .wiki-title{font-weight:980; font-size:16px; margin-bottom:10px}
    .wiki-text{margin:0; color:var(--muted); font-weight:670; line-height:1.85}
    .wiki-link-row{margin-top:14px; display:flex; align-items:center; gap:10px}

    .news-grid{display:grid; grid-template-columns: 1fr 1fr; gap:16px}
    .news-title{font-weight:980; margin-bottom:12px}
    .news-list{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px}
    .news-item{display:flex; gap:12px; align-items:flex-start; padding:12px; border-radius:16px; border:1px solid rgba(18,26,33,.10); background: rgba(255,255,255,.70)}
    .news-tag{
      padding:8px 10px; border-radius:999px; background: rgba(255,47,179,.10);
      border:1px solid rgba(255,47,179,.18);
      color:#7a1656; font-weight:900; font-size:12px; flex:0 0 auto
    }
    .news-link{color:var(--text); font-weight:880; text-decoration:none; line-height:1.4}
    .news-link:hover{text-decoration:underline}
    .reviews{display:flex; flex-direction:column; gap:12px}
    .review{padding:14px; border-radius:18px; border:1px solid rgba(18,26,33,.10); background: rgba(255,255,255,.70)}
    .review-top{display:flex; gap:12px; align-items:flex-start}
    .avatar{width:40px;height:40px;border-radius:16px; display:flex; align-items:center; justify-content:center;
      background: rgba(124,58,237,.12); border:1px solid rgba(124,58,237,.16); font-weight:990}
    .review-name{font-weight:980}
    .review-meta{margin-top:6px; color:var(--muted); font-weight:700; font-size:13px}
    .review-text{margin-top:10px; color:var(--muted); font-weight:680; line-height:1.85}

    .join-grid{display:grid; grid-template-columns: 1fr 1fr; gap:16px; align-items:start}
    .join-list{display:flex; flex-direction:column; gap:12px; margin-top:12px}
    .join-item{display:flex; gap:12px; align-items:flex-start; color:var(--muted); font-weight:720; line-height:1.7}
    .join-ico{
      width:28px;height:28px;border-radius:12px; display:flex; align-items:center; justify-content:center;
      background: rgba(0,194,255,.10); border:1px solid rgba(0,194,255,.18);
      color:#0b6aa6; flex:0 0 auto
    }
    .join-note{margin-top:12px; padding:12px; border-radius:16px; background: rgba(255,212,0,.14); border:1px solid rgba(255,212,0,.22); color:#5b3b00; font-weight:780; line-height:1.6}

    .contact-grid{display:grid; grid-template-columns: 1fr 1fr; gap:16px}
    .contact-items{display:flex; flex-direction:column; gap:12px; margin-top:12px}
    .contact-item{display:flex; gap:12px; align-items:flex-start; padding:12px; border-radius:16px; background: rgba(255,255,255,.72); border:1px solid rgba(18,26,33,.10)}
    .contact-ico{width:44px;height:44px;border-radius:16px; display:flex;align-items:center;justify-content:center;
      background: rgba(255,47,179,.10); border:1px solid rgba(255,47,179,.18); font-size:20px; flex:0 0 auto
    }
    .contact-k{color:var(--muted); font-weight:750; font-size:13px}
    .contact-v{margin-top:6px; font-weight:900}
    .contact-v a{color:var(--text); text-decoration:none}
    .contact-v a:hover{text-decoration:underline}
    .contact-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}

    .contact-right-top{display:flex; flex-direction:column; gap:6px; margin-bottom:12px}
    .contact-right-title{font-weight:980}
    .contact-qr{display:flex; justify-content:center; padding:12px; border-radius:18px; background: rgba(255,255,255,.78); border:1px solid rgba(18,26,33,.10)}
    .qr-big{width:210px; height:auto; border-radius:18px; border:1px solid rgba(18,26,33,.10); background:#fff}
    .contact-right-foot{margin-top:12px; display:flex; flex-direction:column; gap:8px}
    .contact-tag{
      padding:10px 12px;
      border-radius:999px;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.18);
      color:#4c1d95;
      font-weight:900;
      width:fit-content;
    }
    .contact-right-buttons{margin-top:14px; display:flex; flex-direction:column; gap:10px}

    .footer-section{padding:34px 0 26px}
    .footer-top{display:flex; justify-content:space-between; gap:16px; align-items:flex-start; margin-bottom:20px}
    .footer-brand{display:flex; gap:14px; align-items:flex-start}
    .footer-logo img{width:54px;height:auto; border-radius:18px; background: rgba(124,58,237,.06); border:1px solid rgba(18,26,33,.10)}
    .footer-name{font-weight:990; font-size:18px}
    .footer-desc{margin-top:8px; color:var(--muted); font-weight:700; line-height:1.7; max-width:46ch}

    .footer-links{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:16px}
    .footer-col{display:flex; flex-direction:column; gap:10px}
    .footer-col-title{font-weight:980; color:var(--text)}
    .footer-col a{
      text-decoration:none; color:var(--muted);
      font-weight:700;
      padding:8px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: background .18s ease, border-color .18s ease, transform .18s ease;
      width:fit-content;
    }
    .footer-col a:hover{
      background: rgba(124,58,237,.10);
      border-color: rgba(124,58,237,.16);
      transform: translateY(-1px);
      color:var(--text);
    }

    .footer-mid{display:grid; grid-template-columns: 1fr 1fr; gap:16px; margin-top:10px}
    .friendship{padding:16px; border-radius:var(--radius2); border:1px solid rgba(18,26,33,.10); background: rgba(255,255,255,.72)}
    .friendship-simple{padding:16px; border-radius:var(--radius2); border:1px solid rgba(18,26,33,.10); background: rgba(255,255,255,.72)}
    .friendship-title{font-weight:980; margin-bottom:12px}
    .friendship-links{display:flex; flex-wrap:wrap; gap:10px}
    .friendship-links a{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(18,26,33,.10);
      background: rgba(255,255,255,.78);
      color:var(--text);
      font-weight:860;
      font-size:13px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .friendship-links a:hover{
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(16,24,40,.10);
      border-color: rgba(124,58,237,.18);
    }

    .footer-bottom{
      margin-top:18px;
      padding-top:14px;
      border-top:1px solid rgba(18,26,33,.08);
      display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap;
    }
    .footer-bottom-right{display:flex; gap:12px; align-items:center; flex-wrap:wrap}
    .back-top{color:var(--text); font-weight:900; text-decoration:none; padding:10px 12px; border-radius:12px; border:1px solid rgba(18,26,33,.10); background: rgba(255,255,255,.72)}
    .back-top:hover{text-decoration:underline}
    .ai-page-home-link{
      color:#fff !important;
      background: linear-gradient(135deg, var(--primary2) 0%, var(--brand1) 55%, var(--brand3) 100%);
      border:1px solid rgba(255,255,255,.26);
      padding:10px 12px; border-radius:12px; font-weight:950; text-decoration:none;
      box-shadow: 0 10px 26px rgba(109,40,217,.18);
    }

    .float-contact{
      position:fixed; right:14px; bottom:110px; z-index:70;
      display:flex; flex-direction:column; align-items:flex-end; gap:10px;
    }
    .float-btn{
      border-radius:18px;
      border:1px solid rgba(18,26,33,.12);
      background: rgba(255,255,255,.78);
      padding:12px 12px;
      display:flex; align-items:center; gap:10px;
      box-shadow: 0 18px 45px rgba(16,24,40,.10);
      cursor:pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
      font-weight:920;
    }
    .float-btn:hover{transform: translateY(-2px); background:#fff}
    .float-ico{
      width:38px;height:38px;border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(255,47,179,.16), rgba(0,194,255,.12));
      border:1px solid rgba(124,58,237,.16);
    }
    .float-panel{
      width:248px;
      border-radius:20px;
      border:1px solid rgba(18,26,33,.12);
      background: rgba(255,255,255,.92);
      box-shadow: var(--shadow2);
      padding:14px;
      transform-origin: 100% 100%;
      transform: scale(.98) translateY(6px);
      opacity:0; pointer-events:none;
      transition: opacity .18s ease, transform .18s ease;
    }
    .float-panel.show{
      opacity:1; pointer-events:auto;
      transform: scale(1) translateY(0);
    }
    .float-panel-title{font-weight:980; margin-bottom:12px}
    .float-qr{width:100%; height:auto; border-radius:16px; border:1px solid rgba(18,26,33,.10); background:#fff}

    .to-top{
      position:fixed; right:14px; bottom:18px; z-index:70;
      width:44px;height:44px;border-radius:18px;
      border:1px solid rgba(18,26,33,.12);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 45px rgba(16,24,40,.10);
      cursor:pointer;
      font-weight:980;
      opacity:0; pointer-events:none;
      transform: translateY(8px);
      transition: opacity .18s ease, transform .18s ease;
    }
    .to-top.show{opacity:1; pointer-events:auto; transform: translateY(0)}
    .to-top:hover{background:#fff}

    [data-animate]{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .5s ease, transform .5s ease;
    }
    [data-animate].in{
      opacity:1;
      transform: translateY(0);
    }
    .fade-up{transform: translateY(14px)}
    @keyframes floaty{0%,100%{transform: translateY(0)}50%{transform: translateY(10px)}}
    @keyframes floaty2{0%,100%{transform: translateY(0)}50%{transform: translateY(14px)}}
    @keyframes pulse{
      0%{box-shadow: 0 0 0 0 rgba(255,47,179,.25)}
      70%{box-shadow: 0 0 0 16px rgba(255,47,179,0)}
      100%{box-shadow: 0 0 0 0 rgba(255,47,179,0)}
    }
    @keyframes pop{0%{transform: translateY(8px);opacity:0}100%{transform: translateY(0);opacity:1}}
    .pop-in{animation: pop .35s ease both}

    @media (max-width: 980px){
      .nav-desktop{display:none}
      .mobile-bar{display:block}
      .hero-inner{grid-template-columns: 1fr; gap:16px}
      .hero-visual{min-height:320px}
      .hero-meta{grid-template-columns: 1fr}
      .grid-3{grid-template-columns:1fr}
      .grid-4{grid-template-columns:1fr 1fr}
      .split-banner{grid-template-columns:1fr}
      .two-col{grid-template-columns:1fr}
      .industry-grid{grid-template-columns:1fr}
      .net-grid{grid-template-columns:1fr}
      .flow{grid-template-columns:1fr 1fr}
      .cases-grid{grid-template-columns:1fr 1fr}
      .compare-top{grid-template-columns:1fr}
      .token-grid{grid-template-columns:1fr}
      .match-grid{grid-template-columns:1fr}
      .train-grid{grid-template-columns:1fr}
      .help-grid{grid-template-columns:1fr}
      .faq-grid{grid-template-columns:1fr}
      .wiki-grid{grid-template-columns:1fr}
      .news-grid{grid-template-columns:1fr}
      .join-grid{grid-template-columns:1fr}
      .contact-grid{grid-template-columns:1fr}
      .footer-top{flex-direction:column}
      .footer-links{grid-template-columns:1fr; width:100%}
      .footer-mid{grid-template-columns:1fr}
      .workflow-bottom{flex-direction:column; align-items:stretch}
      .workflow-bottom-right{width:auto}
      .tile-row{grid-template-columns:1fr}
      .form-row{grid-template-columns:1fr}
    }

    .mobile-bar-inner{display:flex; gap:12px; align-items:center; justify-content:space-between; padding:10px 0}
    .mini-cta{
      text-decoration:none; font-weight:950; color:#fff;
      background: linear-gradient(135deg, var(--primary2) 0%, var(--brand1) 55%, var(--brand3) 100%);
      padding:10px 12px; border-radius:14px;
      box-shadow: 0 14px 30px rgba(109,40,217,.18);
      border:1px solid rgba(255,255,255,.24);
    }
    .mini-link{
      text-decoration:none; color:var(--text); font-weight:900;
      padding:10px 12px; border-radius:14px;
      border:1px solid rgba(18,26,33,.10);
      background: rgba(255,255,255,.72);
    }

    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      [data-animate]{transition:none}
      .orb-1,.orb-2{animation:none}
      .pulse{animation:none}
    }