:root{
      --bg0:#ffffff;
      --bg1:#fbf6ff;
      --ink:#0f172a;
      --muted:#4b5563;
      --muted2:#6b7280;
      --line:rgba(15, 23, 42, .10);
      --card:rgba(255,255,255,.86);
      --card2:rgba(255,255,255,.70);
      --shadow:0 18px 50px rgba(16, 24, 40, .10);
      --shadow2:0 10px 30px rgba(16, 24, 40, .12);
      --primary:#8b2cff;
      --primary2:#ff2e93;
      --cyan:#12b7ff;
      --green:#21c58a;
      --warn:#ffb020;
      --hot:#ff2e93;
      --radius:18px;
      --radius2:26px;
      --container:1120px;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB",
      "Microsoft YaHei", "Noto Sans CJK SC", "Noto Sans SC", Arial, sans-serif;
      color:var(--ink);
      background:linear-gradient(180deg, #ffffff 0%, #fbf6ff 38%, #ffffff 100%);
      overflow-x:hidden;
    }

    a{color:inherit; text-decoration:none}
    .skip-link{
      position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
      background:var(--primary); color:#fff; padding:10px; border-radius:10px;
      z-index:9999;
    }
    .skip-link:focus{left:14px; top:14px; width:auto; height:auto}

    .container{max-width:var(--container); margin:0 auto; padding:0 20px;}
    .page-bg{position:fixed; inset:0; pointer-events:none; z-index:-1;}
    .bg-orb{
      position:absolute; border-radius:999px; filter: blur(18px);
      opacity:.75; transform: translateZ(0);
      animation: floaty 10s ease-in-out infinite;
    }
    .orb-1{width:520px; height:520px; left:-140px; top:120px; background: radial-gradient(circle at 30% 30%, rgba(139,44,255,.45), rgba(255,46,147,.20), rgba(18,183,255,.05));}
    .orb-2{width:460px; height:460px; right:-160px; top:340px; background: radial-gradient(circle at 40% 30%, rgba(18,183,255,.32), rgba(139,44,255,.18), rgba(33,197,138,.08)); animation-duration:12s;}
    .bg-grid{
      position:absolute; inset:0;
      background:
        linear-gradient(to right, rgba(17,24,39,.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(17,24,39,.05) 1px, transparent 1px);
      background-size:60px 60px;
      mask-image: radial-gradient(circle at 50% 15%, rgba(0,0,0,.9), rgba(0,0,0,0) 60%);
      opacity:.7;
    }
    .bg-rail{
      position:absolute; left:50%; top:0; width:720px; height:720px;
      transform: translateX(-50%);
      background: radial-gradient(circle at 50% 50%, rgba(255,46,147,.13), rgba(139,44,255,.08), rgba(255,255,255,0) 62%);
      opacity:.9;
    }

    @keyframes floaty{
      0%,100%{transform: translate3d(0,0,0)}
      50%{transform: translate3d(0,-16px,0)}
    }

    .site-header{
      position:sticky; top:0; z-index:50;
      background:rgba(255,255,255,.66);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(15,23,42,.08);
      transition: box-shadow .25s ease, background .25s ease, border-color .25s ease;
    }
    .site-header.scrolled{
      background:rgba(255,255,255,.86);
      box-shadow: 0 10px 30px rgba(16,24,40,.10);
      border-bottom-color: rgba(15,23,42,.12);
    }
    .nav-container{
      display:flex; align-items:center; justify-content:space-between;
      gap:16px; padding:12px 0;
    }

    .brand{display:flex; align-items:center; gap:12px; min-width:240px;}
    .brand-link{display:flex; align-items:center; gap:12px;}
    .ai-page-logo{width:42px; height:auto; display:block;}
    .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(--muted2); margin-top:4px; white-space:nowrap;}

    .nav-desktop{
      display:flex; align-items:center; gap:14px; flex-wrap:nowrap;
      overflow:hidden;
    }
    .nav-link{
      font-size:14px; color:#111827;
      padding:10px 10px; border-radius:12px;
      transition: background .15s ease, transform .15s ease, color .15s ease;
      white-space:nowrap;
      opacity:.95;
    }
    .nav-link:hover{
      background:rgba(139,44,255,.08);
      color:#3b0a7a;
      transform: translateY(-1px);
    }

    .nav-actions{display:flex; align-items:center; gap:10px; justify-content:flex-end; min-width:190px;}
    .icon-btn{
      width:42px; height:42px; border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background:rgba(255,255,255,.7);
      display:flex; align-items:center; justify-content:center;
      color:#0f172a;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
    }
    .icon-btn:hover{
      transform: translateY(-1px);
      border-color: rgba(139,44,255,.25);
      box-shadow:0 10px 18px rgba(139,44,255,.12);
    }

    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      padding:11px 14px; border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      font-weight:720;
      white-space:nowrap;
      user-select:none;
    }
    .btn-wide{width:100%}
    .btn-primary{
      background:linear-gradient(135deg, var(--primary) 0%, var(--primary2) 50%, #ff7a18 100%);
      border-color: rgba(255,46,147,.25);
      color:#fff;
      box-shadow: 0 14px 30px rgba(139,44,255,.18);
    }
    .btn-primary:hover{
      transform: translateY(-1px);
      box-shadow: 0 18px 45px rgba(139,44,255,.26);
      border-color: rgba(255,46,147,.40);
    }
    .btn-ghost{
      background:rgba(255,255,255,.75);
      border-color: rgba(15,23,42,.12);
      color:#0f172a;
    }
    .btn-ghost:hover{
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(16,24,40,.10);
      border-color: rgba(139,44,255,.25);
      background:rgba(255,255,255,.92);
    }

    .hero{
      padding:34px 0 22px;
    }
    .hero-inner{
      display:grid; grid-template-columns: 1.25fr .95fr;
      gap:22px; align-items:start;
    }

    .badge-row{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:14px}
    .badge{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.72);
      box-shadow: 0 10px 24px rgba(16,24,40,.06);
      font-size:13px; font-weight:700;
    }
    .badge-dot{
      width:10px; height:10px; border-radius:50%;
      background:linear-gradient(135deg, var(--primary), var(--primary2));
      box-shadow:0 0 0 5px rgba(139,44,255,.16);
    }
    .badge-2{
      background: linear-gradient(135deg, rgba(18,183,255,.10), rgba(255,46,147,.10));
      border-color: rgba(18,183,255,.18);
    }

    h1{
      font-size: clamp(26px, 3.2vw, 42px);
      letter-spacing:-.6px;
      margin:0 0 14px;
      line-height:1.12;
    }
    .hero-lead{
      color:var(--muted);
      font-size:16px;
      line-height:1.7;
      margin:0 0 18px;
      max-width: 60ch;
    }
    .hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px;}
    .hero-highlights{
      display:grid; gap:12px;
      grid-template-columns: repeat(3, minmax(0,1fr));
      margin-top:14px;
    }
    .highlight{
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.78);
      border-radius:16px;
      padding:14px 14px;
      display:flex; gap:12px; align-items:flex-start;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .highlight:hover{
      transform: translateY(-2px);
      border-color: rgba(139,44,255,.22);
      box-shadow: 0 18px 38px rgba(139,44,255,.12);
    }
    .highlight-ic{color: rgba(139,44,255,.95);}
    .highlight-title{font-weight:830; font-size:14px; margin-bottom:6px;}
    .highlight-sub{color:var(--muted2); font-size:12.5px; line-height:1.4}

    .hero-quick{
      display:flex; flex-wrap:wrap; gap:10px; margin-top:16px;
    }
    .quick-chip{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.74);
      color:#0f172a;
      font-weight:740;
      font-size:13.5px;
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    }
    .quick-chip:hover{
      transform: translateY(-2px);
      border-color: rgba(255,46,147,.28);
      box-shadow: 0 14px 30px rgba(255,46,147,.10);
    }
    .quick-emoji{font-size:14px}

    .hero-right{position:relative}
    .hero-card{
      border-radius:var(--radius2);
      background: linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.64) 100%);
      border: 1px solid rgba(15,23,42,.10);
      box-shadow: var(--shadow);
      overflow:hidden;
      position:sticky; top:92px;
    }
    .hero-card:before{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(circle at 20% 10%, rgba(139,44,255,.22), transparent 55%),
                  radial-gradient(circle at 80% 30%, rgba(255,46,147,.18), transparent 55%),
                  radial-gradient(circle at 50% 80%, rgba(18,183,255,.14), transparent 55%);
      pointer-events:none;
    }
    .hero-card-top{
      position:relative;
      padding:18px 18px 10px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .hero-card-title{
      font-weight:900; letter-spacing:.2px; display:flex; align-items:center; gap:10px;
    }
    .pulse-dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--primary), var(--primary2));
      box-shadow: 0 0 0 6px rgba(139,44,255,.16);
      animation: pulse 1.8s ease-in-out infinite;
    }
    @keyframes pulse{
      0%,100%{transform: scale(1); opacity:1}
      50%{transform: scale(1.12); opacity:.85}
    }
    .hero-card-note{font-size:12.5px; color:var(--muted2); margin-top:2px; text-align:right}

    .stat-grid{
      position:relative;
      padding:8px 18px 12px;
      display:grid; grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
    }
    .stat{
      border-radius:16px;
      border:1px solid rgba(15,23,42,.09);
      background: rgba(255,255,255,.66);
      padding:12px 12px;
      transition: transform .18s ease, border-color .18s ease;
    }
    .stat:hover{transform: translateY(-2px); border-color: rgba(18,183,255,.22);}
    .stat-k{font-size:12.5px; color:var(--muted2); margin-bottom:8px; font-weight:720}
    .stat-v{font-weight:900; letter-spacing:-.2px}
    .stat-bar{height:10px; border-radius:999px; background:rgba(15,23,42,.06); margin-top:10px; overflow:hidden}
    .stat-bar > span{
      display:block; height:100%;
      background: linear-gradient(90deg, rgba(139,44,255,.95), rgba(255,46,147,.90));
      border-radius:999px;
      box-shadow:0 0 0 4px rgba(139,44,255,.10);
    }

    .hero-card-divider{
      position:relative;
      height:1px; background:rgba(15,23,42,.10);
      margin:0 18px 10px;
    }

    .hero-matrix{position:relative; padding:0 18px 14px;}
    .matrix-row{display:flex; flex-direction:column; gap:8px; margin-bottom:12px;}
    .matrix-label{font-weight:900; color:#0f172a; font-size:13px}
    .matrix-tags{display:flex; flex-wrap:wrap; gap:8px;}
    .tag{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.72);
      font-weight:760;
      font-size:12.5px;
      color:#0f172a;
    }
    .tag-hot{
      border-color: rgba(255,46,147,.30);
      background: linear-gradient(135deg, rgba(255,46,147,.14), rgba(139,44,255,.10));
    }

    .hero-card-cta{position:relative; padding:0 18px 18px;}
    .btn-wide{width:100%}
    .hero-card-cta .btn{margin-top:10px;}
    .hero-card-cta .btn:first-child{margin-top:0}

    .floating-note{
      position:absolute; right:12px; top:18px;
      width: 220px;
      pointer-events:none;
      display:none;
    }
    .note-chip{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      border-radius:16px;
      padding:12px 12px;
      box-shadow: 0 18px 38px rgba(16,24,40,.08);
      color:var(--muted);
      font-size:12.5px;
      line-height:1.45;
    }
    .note-ic{color: rgba(139,44,255,.95); margin-right:8px}

    .section{padding:56px 0;}
    .section-alt{
      background: linear-gradient(180deg, rgba(255,255,255,.0) 0%, rgba(255,255,255,.55) 15%, rgba(251,246,255,.80) 100%);
      border-top:1px solid rgba(15,23,42,.06);
      border-bottom:1px solid rgba(15,23,42,.06);
    }
    .section-final{padding:38px 0 46px;}
    .section-inner{padding:0}
    .section-head{
      margin-bottom:26px;
      max-width: 900px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.75);
      font-weight:850;
      font-size:13px;
      letter-spacing:.2px;
    }
    h2{
      margin:12px 0 10px;
      font-size: clamp(20px, 2.5vw, 30px);
      letter-spacing:-.4px;
      line-height:1.25;
    }
    .muted{color:var(--muted); line-height:1.7; margin:0; font-size:15px;}

    .card{
      border-radius:var(--radius);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 12px 30px rgba(16,24,40,.08);
    }
    .reveal-on-scroll{
      opacity:0;
      transform: translateY(12px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal-on-scroll.reveal{
      opacity:1;
      transform: translateY(0);
    }

    .card-title{
      font-weight:920;
      padding:16px 16px 0;
      font-size:15.5px;
      letter-spacing:-.2px;
    }
    .card-body{padding:10px 16px 16px;}
    .card-foot{
      padding:14px 16px 16px;
      display:flex; gap:12px; flex-wrap:wrap;
      justify-content:flex-start;
    }

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

    .check-list{list-style:none; padding:0; margin:12px 0 0; display:flex; flex-direction:column; gap:10px;}
    .check-list li{display:flex; gap:10px; align-items:flex-start; color:var(--muted); line-height:1.6; font-size:14.5px;}
    .check-ic{
      width:22px; height:22px; border-radius:8px;
      background: rgba(33,197,138,.12);
      color: #0f7a4c;
      display:inline-flex; align-items:center; justify-content:center;
      font-weight:900;
      border:1px solid rgba(33,197,138,.22);
      flex:0 0 auto;
      margin-top:2px;
    }

    .info-card .card-title, .features-card .card-title{padding:16px 16px 0}
    .features-grid{
      padding:10px 16px 16px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .feature{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      border-radius:16px;
      padding:12px 12px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-height:104px;
    }
    .feature:hover{
      transform: translateY(-2px);
      border-color: rgba(139,44,255,.22);
      box-shadow: 0 18px 35px rgba(139,44,255,.10);
    }
    .feature-top{display:flex; align-items:center; gap:10px; margin-bottom:8px;}
    .feature-ic{
      width:30px; height:30px; border-radius:12px;
      background: linear-gradient(135deg, rgba(139,44,255,.14), rgba(255,46,147,.12));
      border:1px solid rgba(139,44,255,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color: rgba(139,44,255,.95);
    }
    .feature-name{font-weight:920; font-size:13.8px; letter-spacing:-.2px}
    .feature-desc{color:var(--muted2); font-size:13px; line-height:1.45}

    .features-card .card-foot{padding-top:0}

    .services-grid{
      display:grid; grid-template-columns: repeat(2, minmax(0,1fr));
      gap:16px;
    }
    .service-card{padding-bottom:14px;}
    .service-top{padding:16px 16px 10px; display:flex; align-items:center; gap:12px;}
    .service-icon{
      width:44px; height:44px; border-radius:16px;
      background: linear-gradient(135deg, rgba(139,44,255,.14), rgba(255,46,147,.12));
      border:1px solid rgba(139,44,255,.20);
      display:flex; align-items:center; justify-content:center;
      color: rgba(139,44,255,.95);
      flex:0 0 auto;
    }
    .service-title{font-weight:950; letter-spacing:-.2px; font-size:15px}
    .service-desc{padding:0 16px 12px; color:var(--muted); line-height:1.65; font-size:14.5px;}
    .service-list{padding:0 16px 8px; display:flex; flex-wrap:wrap; gap:8px;}
    .chip{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.76);
      font-weight:800;
      font-size:12.5px;
      color:#0f172a;
    }
    .chip-hot{
      border-color: rgba(255,46,147,.32);
      background: linear-gradient(135deg, rgba(255,46,147,.14), rgba(139,44,255,.10));
    }
    .link-cta{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 16px 8px;
      font-weight:900;
      color: #4c1d95;
    }
    .link-cta:hover{transform: translateY(-1px); transition: transform .15s ease}
    .service-card .link-cta{padding-top:4px}

    .steps-wrap{display:flex; flex-direction:column; gap:18px;}
    .steps-grid{
      display:grid; grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .step{
      padding:16px 16px;
      border-radius:var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      min-height:158px;
      position:relative;
      overflow:hidden;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .step:before{
      content:"";
      position:absolute; inset:-1px;
      background: radial-gradient(circle at 20% 10%, rgba(139,44,255,.16), transparent 55%),
                  radial-gradient(circle at 90% 30%, rgba(255,46,147,.12), transparent 55%);
      opacity:.9; pointer-events:none;
    }
    .step > *{position:relative}
    .step:hover{
      transform: translateY(-3px);
      border-color: rgba(139,44,255,.22);
      box-shadow: 0 22px 45px rgba(139,44,255,.14);
    }
    .step-num{
      font-weight:1000;
      color: rgba(139,44,255,.95);
      letter-spacing:-.5px;
      font-size:16px;
      margin-bottom:8px;
      display:inline-flex; align-items:center; justify-content:flex-start;
      gap:8px;
    }
    .step-title{font-weight:950; font-size:15.2px; letter-spacing:-.2px; margin-bottom:8px;}
    .step-desc{color:var(--muted); line-height:1.65; font-size:14.2px; position:relative}

    .timeline{
      border-radius:var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      padding:18px 16px;
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:12px;
      position:relative;
      overflow:hidden;
    }
    .timeline:before{
      content:"";
      position:absolute; inset:-1px;
      background: linear-gradient(135deg, rgba(139,44,255,.12), rgba(255,46,147,.10), rgba(18,183,255,.06));
      opacity:.9;
      pointer-events:none;
    }
    .timeline-line{
      position:absolute;
      left:12%;
      right:12%;
      top:50%;
      height:2px;
      background: linear-gradient(90deg, rgba(139,44,255,.0), rgba(139,44,255,.35), rgba(255,46,147,.35), rgba(18,183,255,.18), rgba(18,183,255,0));
      transform: translateY(-50%);
      opacity:.9;
      pointer-events:none;
    }
    .timeline-item{
      position:relative; z-index:1;
      display:flex; gap:12px; align-items:flex-start;
      padding:10px 10px;
      border-radius:16px;
      background: rgba(255,255,255,.40);
      border:1px solid rgba(15,23,42,.08);
      transition: transform .18s ease, border-color .18s ease;
    }
    .timeline-item:hover{
      transform: translateY(-2px);
      border-color: rgba(255,46,147,.22);
    }
    .timeline-dot{
      width:14px; height:14px; border-radius:50%;
      background: linear-gradient(135deg, var(--primary), var(--primary2));
      box-shadow:0 0 0 6px rgba(139,44,255,.12);
      margin-top:6px;
      flex:0 0 auto;
    }
    .timeline-title{font-weight:950; font-size:13.8px; margin-bottom:6px;}
    .timeline-desc{color:var(--muted2); font-size:12.8px; line-height:1.45}

    .banner-cta{
      border-radius:var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: radial-gradient(circle at 15% 30%, rgba(139,44,255,.16), transparent 55%),
                  radial-gradient(circle at 85% 20%, rgba(255,46,147,.14), transparent 55%),
                  radial-gradient(circle at 50% 80%, rgba(18,183,255,.10), transparent 58%),
                  rgba(255,255,255,.70);
      box-shadow: var(--shadow2);
      padding:18px;
      display:grid; grid-template-columns: 1.1fr .9fr;
      gap:16px; align-items:start;
      overflow:hidden;
    }
    .banner-cta-title{font-weight:1000; letter-spacing:-.3px; font-size:20px; margin-bottom:8px;}
    .banner-cta-desc{color:var(--muted); line-height:1.65; font-size:14.5px; margin-bottom:12px}
    .banner-cta-tags{display:flex; flex-wrap:wrap; gap:10px}

    .form-card{
      border-radius:22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      padding:14px 14px 16px;
    }
    .form-title{font-weight:1000; letter-spacing:-.2px; margin-bottom:10px;}
    .form-grid{display:grid; gap:10px;}
    .field{display:flex; flex-direction:column; gap:8px;}
    .label-text{font-size:12.5px; color:var(--muted2); font-weight:800}
    input, select, textarea{
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      padding:12px 12px;
      font-size:14.5px;
      background: rgba(255,255,255,.92);
      color:var(--ink);
      outline:none;
      transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
    }
    input:focus, select:focus, textarea:focus{
      border-color: rgba(139,44,255,.35);
      box-shadow: 0 0 0 4px rgba(139,44,255,.14);
    }
    .field-full{grid-column:1 / -1}
    .form-actions{display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:flex-start; margin-top:6px;}
    .form-help{color:var(--muted2); font-size:12.5px; font-weight:750; padding-left:6px}
    .form-foot{padding-top:10px}
    .micro{color:var(--muted2); font-size:12.5px; font-weight:750; display:flex; gap:8px; align-items:center}

    .industries{}
    .industry-grid{
      display:grid; grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .industry-card{
      padding:16px 16px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-height:210px;
      display:flex; flex-direction:column; gap:10px;
    }
    .industry-card:hover{
      transform: translateY(-3px);
      border-color: rgba(255,46,147,.22);
      box-shadow: 0 22px 45px rgba(255,46,147,.10);
    }
    .industry-title{font-weight:1000; letter-spacing:-.2px; font-size:15.8px}
    .industry-desc{color:var(--muted); line-height:1.65; font-size:14.3px}
    .industry-meta{display:flex; flex-wrap:wrap; gap:10px; margin-top:auto}
    .pill{
      padding:8px 10px; border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.76);
      font-size:12.5px; font-weight:850;
    }
    .pill-hot{
      border-color: rgba(255,46,147,.30);
      background: linear-gradient(135deg, rgba(255,46,147,.14), rgba(139,44,255,.10));
    }

    .cta-strip{
      margin-top:18px;
      border-radius:var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      padding:16px 16px;
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      box-shadow: 0 14px 35px rgba(16,24,40,.07);
    }
    .cta-strip-title{font-weight:1000; letter-spacing:-.2px; margin-bottom:6px;}
    .cta-strip-desc{color:var(--muted); line-height:1.6; font-size:14.4px;}
    .cta-strip-right{display:flex; gap:12px; flex-wrap:wrap}

    .rating-row{
      display:grid; grid-template-columns: 1fr 1.1fr;
      gap:16px;
      align-items:start;
      margin-bottom:16px;
    }
    .rating-card{
      border-radius:var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: radial-gradient(circle at 20% 20%, rgba(255,46,147,.14), transparent 55%),
                  radial-gradient(circle at 70% 10%, rgba(139,44,255,.15), transparent 55%),
                  rgba(255,255,255,.72);
      padding:16px 16px;
      box-shadow: 0 18px 45px rgba(139,44,255,.12);
    }
    .rating-top{display:flex; gap:14px; align-items:flex-start}
    .rating-star{color: rgba(255,46,147,.95); margin-top:4px}
    .rating-title{display:flex; flex-direction:column; gap:6px}
    .rating-reco{font-weight:950; color:#0f172a; font-size:14.5px}
    .rating-stars{color:#ff2e93; font-weight:1000; letter-spacing:2px}
    .rating-score{
      display:flex; align-items:baseline; gap:10px;
      margin-top:14px;
    }
    .score-num{font-size:48px; font-weight:1100; letter-spacing:-1px; color:#4c1d95}
    .score-unit{font-size:16px; color:var(--muted2); font-weight:850}
    .rating-note{margin-top:8px; color:var(--muted2); font-size:13.2px; font-weight:760}

    .review-mini{
      border-radius:var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      padding:16px 16px;
      box-shadow: 0 14px 35px rgba(16,24,40,.07);
      display:flex; flex-direction:column; gap:12px;
    }
    .mini-title{font-weight:1000; letter-spacing:-.2px}
    .mini-list{display:flex; flex-direction:column; gap:10px; color:var(--muted); font-size:14.2px; line-height:1.5}
    .mini-item{display:flex; gap:10px; align-items:flex-start}
    .mini-ic{color: rgba(139,44,255,.95); font-weight:1000; margin-top:2px}

    .table-card{padding-bottom:16px}
    .table-scroll{overflow:auto; padding:0 16px 10px}
    table{border-collapse:collapse; width:100%; min-width:720px;}
    th,td{padding:12px 12px; border-bottom:1px solid rgba(15,23,42,.08); vertical-align:top; text-align:left; font-size:14.2px; line-height:1.5;}
    thead th{
      font-weight:1000; color:#0f172a;
      background: rgba(255,255,255,.65);
      position:sticky; top:0; z-index:1;
    }
    tbody td{color:var(--muted)}
    .badge-inline{
      display:inline-flex; align-items:center; padding:7px 10px; border-radius:999px;
      border:1px solid rgba(15,23,42,.10); background: rgba(255,255,255,.72);
      font-size:12.5px; font-weight:900; color:#0f172a; margin-right:8px; margin-bottom:6px;
    }
    .badge-good{
      border-color: rgba(33,197,138,.26);
      background: linear-gradient(135deg, rgba(33,197,138,.14), rgba(18,183,255,.08));
      color:#0f6e49;
    }
    .badge-warn{
      border-color: rgba(255,176,32,.35);
      background: linear-gradient(135deg, rgba(255,176,32,.16), rgba(255,46,147,.08));
      color:#8a4a00;
    }
    .table-actions{padding:0 16px 16px; display:flex; gap:12px; flex-wrap:wrap}

    .token-grid{
      display:grid; grid-template-columns: 1.05fr .95fr; gap:16px;
    }
    .token-steps{padding:10px 16px 16px; display:flex; flex-direction:column; gap:12px;}
    .token-step{
      display:flex; align-items:flex-start; gap:12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      padding:12px 12px;
    }
    .token-idx{
      width:34px; height:34px; border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      font-weight:1100;
      color: rgba(139,44,255,.95);
      background: linear-gradient(135deg, rgba(139,44,255,.16), rgba(255,46,147,.12));
      border:1px solid rgba(139,44,255,.20);
      flex:0 0 auto;
    }
    .token-name{font-weight:1000; margin-bottom:6px}
    .token-desc{color:var(--muted2); line-height:1.5; font-size:13.4px}
    .token-callout{
      margin:0 16px 16px;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(255,46,147,.22);
      background: linear-gradient(135deg, rgba(255,46,147,.12), rgba(139,44,255,.08));
      display:flex; gap:12px; align-items:flex-start;
    }
    .callout-ic{font-size:18px; margin-top:1px}
    .callout-text{color:var(--muted); line-height:1.6; font-size:14.2px; font-weight:760}

    .token-table-card{padding-bottom:16px}
    .price-cards{padding:10px 16px 0; display:grid; gap:12px;}
    .price-card{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      padding:12px 12px;
      transition: transform .18s ease, border-color .18s ease;
    }
    .price-card:hover{transform: translateY(-2px); border-color: rgba(18,183,255,.22);}
    .price-top{display:flex; justify-content:space-between; align-items:center; gap:10px; margin-bottom:8px}
    .price-name{font-weight:1000}
    .price-badge{
      font-size:12px; font-weight:950;
      padding:7px 10px; border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      color:var(--muted2);
    }
    .price-badge-hot{
      color:#8a0044;
      border-color: rgba(255,46,147,.30);
      background: linear-gradient(135deg, rgba(255,46,147,.14), rgba(139,44,255,.10));
    }
    .price-value{font-weight:1100; letter-spacing:-.3px; font-size:18px; margin-bottom:6px}
    .price-desc{color:var(--muted); line-height:1.6; font-size:14px}

    .price-actions{padding:14px 16px 0; display:flex; gap:12px; flex-wrap:wrap}

    .brands-card{
      margin-top:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      padding:16px 16px;
      box-shadow: 0 14px 35px rgba(16,24,40,.06);
    }
    .brands-head{display:flex; gap:14px; flex-wrap:wrap; align-items:flex-end; justify-content:space-between; margin-bottom:12px}
    .brands-title{font-weight:1100; letter-spacing:-.2px}
    .brands-desc{color:var(--muted); line-height:1.6; font-size:14.2px; max-width:52ch}
    .tag-cloud{display:flex; flex-wrap:wrap; gap:10px}

    .training-grid{display:grid; grid-template-columns: 1.05fr .95fr; gap:16px; align-items:start;}
    .training-card{padding-bottom:16px}
    .training-list{padding:10px 16px 16px; display:flex; flex-direction:column; gap:12px}
    .train-item{
      display:flex; gap:12px; align-items:flex-start;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      padding:12px 12px;
      transition: transform .18s ease, border-color .18s ease;
    }
    .train-item:hover{transform: translateY(-2px); border-color: rgba(139,44,255,.22);}
    .train-dot{
      width:14px; height:14px; border-radius:50%;
      background: linear-gradient(135deg, var(--primary), var(--primary2));
      box-shadow:0 0 0 6px rgba(139,44,255,.12);
      margin-top:6px;
      flex:0 0 auto;
    }
    .train-name{font-weight:1000; margin-bottom:6px}
    .train-desc{color:var(--muted2); font-size:13.4px; line-height:1.5}

    .training-side{padding:16px 16px 16px;}
    .side-grid{
      display:grid; gap:10px;
      grid-template-columns: repeat(2, minmax(0,1fr));
      margin-top:10px;
    }
    .side-item{
      border:1px solid rgba(15,23,42,.10);
      border-radius:16px;
      background: rgba(255,255,255,.66);
      padding:12px 12px;
      transition: transform .18s ease, border-color .18s ease;
      display:flex; gap:10px; align-items:center;
      min-height:60px;
    }
    .side-item:hover{transform: translateY(-2px); border-color: rgba(255,46,147,.22)}
    .side-ic{width:30px; height:30px; border-radius:12px; display:flex; align-items:center; justify-content:center; background: linear-gradient(135deg, rgba(139,44,255,.14), rgba(255,46,147,.10)); border:1px solid rgba(139,44,255,.18)}
    .side-name{font-weight:950; font-size:13.7px; line-height:1.2}

    .cert-callout{
      margin-top:14px;
      border-radius:18px;
      border:1px solid rgba(33,197,138,.22);
      background: linear-gradient(135deg, rgba(33,197,138,.12), rgba(18,183,255,.08));
      padding:12px 12px;
      display:flex; gap:12px; align-items:flex-start;
    }
    .cert-ic{font-size:18px; margin-top:2px}
    .cert-title{font-weight:1100; margin-bottom:6px}
    .cert-desc{color:var(--muted); line-height:1.6; font-size:14.2px}

    .network-grid{display:grid; grid-template-columns: 1.05fr .95fr; gap:16px; align-items:start;}
    .network-list{padding:10px 16px 16px; display:flex; flex-direction:column; gap:12px}
    .net-item{
      display:flex; gap:12px; align-items:flex-start;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      border-radius:16px;
      padding:12px 12px;
      transition: transform .18s ease, border-color .18s ease;
    }
    .net-item:hover{transform: translateY(-2px); border-color: rgba(18,183,255,.22);}
    .net-ic{width:34px; height:34px; border-radius:14px; display:flex; align-items:center; justify-content:center; background: linear-gradient(135deg, rgba(18,183,255,.14), rgba(139,44,255,.10)); border:1px solid rgba(18,183,255,.18); flex:0 0 auto}
    .net-name{font-weight:1000; margin-bottom:6px}
    .net-desc{color:var(--muted2); font-size:13.4px; line-height:1.5}

    .network-side{padding:16px 16px 16px}
    .faq-mini-links{display:flex; flex-direction:column; gap:10px; margin-top:10px}
    .faq-mini-link{
      display:flex; gap:10px; align-items:center;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      font-weight:920;
      transition: transform .18s ease, border-color .18s ease;
    }
    .faq-mini-link:hover{transform: translateY(-2px); border-color: rgba(139,44,255,.22)}
    .faq-mini-ic{
      width:30px; height:30px; border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(139,44,255,.14), rgba(255,46,147,.10));
      border:1px solid rgba(139,44,255,.18);
    }

    .network-media{display:grid; gap:12px; grid-template-columns: 1fr; margin-top:14px}
    .network-media-card{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      padding:12px 12px;
    }
    .network-media-card.hot{
      background: linear-gradient(135deg, rgba(255,46,147,.14), rgba(139,44,255,.10));
      border-color: rgba(255,46,147,.22);
    }
    .media-title{font-weight:1000; margin-bottom:8px}
    .disc-list{margin:0; padding-left:18px; color:var(--muted); line-height:1.7; font-size:14px;}
    .card-foot{padding-top:14px}

    .case-grid{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:16px;}
    .case-card{padding:16px 16px; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;}
    .case-card:hover{transform: translateY(-3px); border-color: rgba(139,44,255,.22); box-shadow:0 22px 45px rgba(139,44,255,.12)}
    .case-top{display:flex; justify-content:space-between; gap:10px; align-items:flex-start; margin-bottom:10px}
    .case-badge{
      font-weight:1000;
      padding:8px 10px;
      border-radius:999px;
      background: linear-gradient(135deg, rgba(139,44,255,.14), rgba(255,46,147,.10));
      border:1px solid rgba(139,44,255,.20);
      font-size:12.5px;
    }
    .case-meta{color:var(--muted2); font-weight:850; font-size:12.5px; margin-top:2px; white-space:nowrap}
    .case-title{font-weight:1100; letter-spacing:-.25px; line-height:1.35; margin-bottom:8px; font-size:16px}
    .case-desc{color:var(--muted); line-height:1.65; font-size:14.3px; margin-bottom:12px}
    .case-tags{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:12px}
    .case-actions{margin-top:auto}
    .case-strip{
      margin-top:18px;
      border-radius:var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      padding:16px 16px;
      display:flex; gap:14px; align-items:center; justify-content:space-between; flex-wrap:wrap;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
    }
    .case-strip-title{font-weight:1100; letter-spacing:-.2px; margin-bottom:6px}
    .case-strip-desc{color:var(--muted); line-height:1.6; font-size:14.3px}
    .case-strip-right{display:flex; gap:12px; flex-wrap:wrap}

    .faq-layout{
      display:grid; grid-template-columns: .9fr 1.1fr; gap:16px; align-items:start;
    }
    .side-faq{padding:16px 16px}
    .side-faq-list{display:flex; flex-direction:column; gap:10px; margin-top:10px}
    .side-faq-link{
      display:flex; align-items:center; justify-content:flex-start; gap:12px;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      font-weight:950;
      transition: transform .18s ease, border-color .18s ease;
    }
    .side-faq-link:hover{transform: translateY(-2px); border-color: rgba(255,46,147,.22)}
    .side-faq-ic{width:34px; height:34px; border-radius:14px; display:flex; align-items:center; justify-content:center; background: linear-gradient(135deg, rgba(139,44,255,.14), rgba(255,46,147,.10)); border:1px solid rgba(139,44,255,.18)}
    .side-faq-callout{
      margin-top:14px;
      border-radius:18px;
      border:1px solid rgba(18,183,255,.22);
      background: linear-gradient(135deg, rgba(18,183,255,.10), rgba(139,44,255,.08));
      padding:12px 12px;
      display:flex; gap:12px; align-items:flex-start;
    }
    .side-faq-title{font-weight:1100; margin-bottom:6px}
    .side-faq-desc{color:var(--muted); line-height:1.6; font-size:14.2px}
    .side-faq-actions{margin-top:14px; display:flex; flex-direction:column; gap:10px}

    .faq-card{padding:10px 0 10px;}
    .faq-card .card-title{padding:16px 16px 8px}
    .accordion{padding:0 16px 16px}
    .acc-item{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.68);
      margin-bottom:12px;
      overflow:hidden;
    }
    .acc-btn{
      width:100%;
      text-align:left;
      padding:14px 14px;
      border:0;
      background:transparent;
      cursor:pointer;
      display:flex; justify-content:space-between; align-items:center; gap:14px;
      font-weight:1000;
      color:#0f172a;
      letter-spacing:-.2px;
      font-size:14.6px;
    }
    .acc-icon{
      width:18px; height:18px; border-radius:8px;
      border:1px solid rgba(15,23,42,.14);
      background: rgba(255,255,255,.75);
      position:relative;
      flex:0 0 auto;
    }
    .acc-icon:before, .acc-icon:after{
      content:"";
      position:absolute; left:50%; top:50%;
      transform: translate(-50%,-50%);
      background: rgba(139,44,255,.95);
    }
    .acc-icon:before{width:10px; height:2px; border-radius:2px;}
    .acc-icon:after{width:2px; height:10px; border-radius:2px; transition: transform .2s ease, opacity .2s ease}
    .acc-item.open .acc-icon:after{transform: translate(-50%,-50%) scaleY(0); opacity:.0}
    .acc-panel{padding:0 14px 14px;}
    .acc-content{color:var(--muted); line-height:1.7; font-size:14.4px;}

    .wiki-grid{
      display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:14px;
    }
    .wiki-card{padding:16px 16px; transition: transform .18s ease, border-color .18s ease}
    .wiki-card:hover{transform: translateY(-3px); border-color: rgba(139,44,255,.22)}
    .wiki-title{font-weight:1100; letter-spacing:-.2px; margin-bottom:8px; font-size:15.4px}
    .wiki-desc{color:var(--muted); line-height:1.65; font-size:14.2px; margin-bottom:12px}
    .wiki-list{display:flex; flex-wrap:wrap; gap:10px}

    .wiki-callout{
      margin-top:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: radial-gradient(circle at 10% 30%, rgba(139,44,255,.14), transparent 55%),
                  radial-gradient(circle at 85% 20%, rgba(255,46,147,.12), transparent 55%),
                  rgba(255,255,255,.72);
      padding:16px 16px;
      display:flex; gap:14px; align-items:flex-start; justify-content:space-between; flex-wrap:wrap;
      box-shadow: 0 18px 45px rgba(139,44,255,.10);
    }
    .wiki-callout-ic{
      width:44px; height:44px; border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(139,44,255,.14), rgba(255,46,147,.10));
      border:1px solid rgba(139,44,255,.18);
      flex:0 0 auto;
      font-size:18px;
    }
    .wiki-callout-title{font-weight:1100; letter-spacing:-.2px; margin-bottom:6px}
    .wiki-callout-desc{color:var(--muted); line-height:1.6; font-size:14.4px; max-width: 62ch}
    .wiki-callout-actions{display:flex; gap:12px; flex-wrap:wrap}

    .article-layout{display:grid; grid-template-columns: 1.08fr .92fr; gap:16px; align-items:start;}
    .article-card{padding-bottom:14px}
    .article-list{padding:10px 16px 0; display:flex; flex-direction:column; gap:10px}
    .article-item{
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      padding:12px 12px;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .article-item:hover{
      transform: translateY(-2px);
      border-color: rgba(18,183,255,.22);
      box-shadow: 0 18px 35px rgba(18,183,255,.10);
    }
    .article-title{font-weight:1000; letter-spacing:-.2px; margin-bottom:6px; font-size:14.6px; line-height:1.35}
    .article-meta{color:var(--muted2); font-size:12.8px; font-weight:850; line-height:1.3}
    .article-right{color: rgba(139,44,255,.95); font-weight:1100}
    .article-bottom{padding:14px 16px 16px; display:flex; gap:12px; flex-wrap:wrap}

    .promo-card{padding:16px 16px}
    .promo-desc{color:var(--muted); line-height:1.65; font-size:14.3px; margin-top:8px; margin-bottom:12px}
    .image-row{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:10px}
    .img-box{
      border-radius:18px;
      overflow:hidden;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.68);
    }
    .img-box img{
      display:block;
      width:100%;
      height:auto;
      object-fit:cover;
      transition: transform .25s ease;
    }
    .img-box:hover img{transform: scale(1.03)}
    .promo-foot{margin-top:12px}
    .promo-note{
      border-radius:18px;
      padding:12px 12px;
      border:1px solid rgba(139,44,255,.20);
      background: linear-gradient(135deg, rgba(139,44,255,.12), rgba(255,46,147,.08));
      color:var(--muted);
      line-height:1.65;
      font-size:14.1px;
      font-weight:760;
    }
    .promo-note-ic{margin-right:10px; color: rgba(139,44,255,.95)}
    .promo-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:12px}

    .review-grid{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:16px;}
    .review-card{padding:16px 16px; transition: transform .18s ease, border-color .18s ease}
    .review-card:hover{transform: translateY(-3px); border-color: rgba(255,46,147,.22)}
    .review-top{display:flex; align-items:flex-start; justify-content:space-between; gap:14px; margin-bottom:10px}
    .avatar{
      width:44px; height:44px; border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(135deg, rgba(139,44,255,.14), rgba(255,46,147,.10));
      display:flex; align-items:center; justify-content:center;
      font-weight:1100; color: rgba(139,44,255,.95);
      flex:0 0 auto;
    }
    .review-name{font-weight:1100; letter-spacing:-.2px; margin-bottom:6px}
    .review-meta{color:var(--muted2); font-weight:850; font-size:12.8px}
    .review-rate{color: #ff2e93; font-weight:1100; letter-spacing:2px; margin-top:2px; flex:0 0 auto}
    .review-text{color:var(--muted); line-height:1.7; font-size:14.4px}

    .contact-grid{display:grid; grid-template-columns: .95fr 1.05fr; gap:16px; align-items:start;}
    .contact-card{padding:16px 16px}
    .contact-list{margin-top:10px; display:flex; flex-direction:column; gap:12px}
    .contact-item{display:flex; gap:14px; align-items:center; justify-content:space-between; border:1px solid rgba(15,23,42,.10); background: rgba(255,255,255,.66); padding:12px 12px; border-radius:16px}
    .contact-k{color:var(--muted2); font-weight:950; font-size:13px; min-width:72px}
    .contact-v{font-weight:900}
    .contact-link{color:#4c1d95; font-weight:950}
    .contact-social{display:grid; gap:12px; grid-template-columns: 1fr; margin-top:14px}
    .social-card{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      padding:12px 12px;
      display:flex; flex-direction:column; gap:10px; align-items:flex-start;
    }
    .social-card.compact{align-items:flex-start}
    .social-title{font-weight:1000}
    .qr-img{
      width:138px; height:auto; border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
    }
    .social-desc{color:var(--muted2); line-height:1.6; font-size:13.4px; font-weight:800}
    .contact-form-card{padding:16px 16px}
    .contact-form{padding-top:10px}
    .form-row{display:grid; gap:10px; grid-template-columns: repeat(2, minmax(0,1fr)); margin-bottom:10px}
    .form-row .field-full{grid-column:1/-1}
    textarea{resize:vertical}
    .contact-form .field-full{grid-column:1 / -1}
    .contact-form .btn{min-height:44px}
    .form-actions{display:flex; gap:12px; flex-wrap:wrap}
    .form-privacy{color:var(--muted2); font-size:12.8px; font-weight:850; margin-top:10px; display:flex; gap:10px; align-items:center}

    .join-grid{display:grid; grid-template-columns: 1.05fr .95fr; gap:16px; align-items:start;}
    .join-card{padding:16px 16px}
    .join-list{padding:10px 0 0; display:flex; flex-direction:column; gap:12px}
    .join-item{
      display:flex; gap:12px; align-items:flex-start;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      border-radius:16px;
      padding:12px 12px;
      transition: transform .18s ease, border-color .18s ease;
    }
    .join-item:hover{transform: translateY(-2px); border-color: rgba(139,44,255,.22)}
    .join-ic{
      width:34px; height:34px; border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      font-weight:1100;
      background: linear-gradient(135deg, rgba(139,44,255,.14), rgba(255,46,147,.10));
      border:1px solid rgba(139,44,255,.18);
      color: rgba(139,44,255,.95);
      flex:0 0 auto;
    }
    .join-name{font-weight:1100; margin-bottom:6px}
    .join-desc{color:var(--muted2); line-height:1.55; font-size:13.4px}
    .join-actions{padding-top:14px; display:flex; gap:12px; flex-wrap:wrap}

    .join-side{padding:16px 16px}
    .join-side-grid{
      display:grid; grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
      margin-top:10px;
    }
    .side-box{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      padding:12px 12px;
      transition: transform .18s ease, border-color .18s ease;
      min-height:122px;
    }
    .side-box:hover{transform: translateY(-2px); border-color: rgba(255,46,147,.22)}
    .side-box-ic{
      width:40px; height:40px; border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(18,183,255,.14), rgba(139,44,255,.10));
      border:1px solid rgba(18,183,255,.18);
      margin-bottom:10px;
      font-size:18px;
    }
    .side-box-title{font-weight:1100; letter-spacing:-.2px; margin-bottom:6px}
    .side-box-desc{color:var(--muted); line-height:1.6; font-size:13.9px}

    .join-side-media{margin-top:14px}
    .mini-media-title{font-weight:1000; margin-bottom:10px}
    .thumb-row{display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:10px}
    .thumb-row-one{display:grid; grid-template-columns: 1fr; gap:10px}
    .thumb{
      border-radius:18px;
      overflow:hidden;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.68);
      transition: transform .2s ease, border-color .2s ease;
    }
    .thumb:hover{transform: translateY(-2px); border-color: rgba(139,44,255,.22)}
    .thumb img{width:100%; height:auto; display:block}
    .join-side-note{color:var(--muted2); line-height:1.6; font-size:13.2px; font-weight:800}

    .final-top{margin-bottom:12px}
    .final-title{font-weight:1100; letter-spacing:-.2px; margin-bottom:6px}
    .final-desc{color:var(--muted); line-height:1.6}
    .link-grid{
      display:grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap:10px;
    }
    .text-link{
      padding:10px 10px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      font-weight:900;
      color:#1f2937;
      font-size:13.4px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      text-align:center;
      display:inline-block;
    }
    .text-link:hover{
      transform: translateY(-2px);
      border-color: rgba(255,46,147,.22);
      box-shadow: 0 18px 35px rgba(255,46,147,.10);
    }

    .site-footer{
      background: linear-gradient(135deg, rgba(10,15,25,.98), rgba(14,20,34,.98));
      color:#fff;
      padding:26px 0;
      border-top:1px solid rgba(255,255,255,.08);
    }
    .footer-inner{display:flex; gap:18px; align-items:flex-start; justify-content:space-between; flex-wrap:wrap;}
    .footer-left{min-width:280px; max-width:520px}
    .footer-brand{display:flex; gap:12px; align-items:flex-start;}
    .footer-logo{width:46px; height:auto; border-radius:14px; background: rgba(255,255,255,.08); padding:6px}
    .footer-name{font-weight:1100; letter-spacing:-.2px; font-size:16px}
    .footer-sub{color: rgba(255,255,255,.72); margin-top:6px; font-weight:800; font-size:12.8px; line-height:1.4}
    .footer-meta{margin-top:14px; display:flex; flex-direction:column; gap:8px; color: rgba(255,255,255,.84); font-weight:750; font-size:13.2px}
    .footer-meta a{color:#fff; text-decoration:underline; text-underline-offset:4px}
    .footer-right{min-width:320px; flex:1}
    .footer-links{display:flex; flex-wrap:wrap; gap:14px; margin-top:4px; margin-bottom:14px;}
    .footer-links a{
      color: rgba(255,255,255,.86);
      font-weight:850;
      font-size:13.2px;
      padding:8px 10px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.06);
      transition: transform .18s ease, border-color .18s ease;
    }
    .footer-links a:hover{transform: translateY(-2px); border-color: rgba(255,46,147,.28)}
    .footer-cta{display:flex; gap:12px; flex-wrap:wrap}
    .footer-cta .btn-primary{box-shadow:none}
    .footer-cta .btn-ghost{background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); color:#fff}
    .footer-cta .btn-ghost:hover{background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.22)}
    .footer-copy{margin-top:14px; color: rgba(255,255,255,.70); font-weight:780; font-size:12.8px}

    .to-top{
      position:fixed; right:16px; bottom:16px;
      width:46px; height:46px; border-radius:18px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.82);
      box-shadow: 0 18px 40px rgba(16,24,40,.12);
      color:#0f172a; cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      z-index:60;
      transform: translateY(18px);
      opacity:0; pointer-events:none;
      transition: opacity .2s ease, transform .2s ease, background .2s ease, border-color .2s ease;
    }
    .to-top.show{opacity:1; pointer-events:auto; transform: translateY(0)}
    .to-top-text{display:none}

    .float-kefu{
      position:fixed; left:16px; bottom:16px;
      z-index:60;
      display:flex; gap:10px; align-items:center;
    }
    .kefu-btn{
      display:inline-flex; align-items:center; gap:10px;
      padding:12px 14px;
      border-radius:18px;
      border:1px solid rgba(139,44,255,.25);
      background: linear-gradient(135deg, rgba(139,44,255,.20), rgba(255,46,147,.15));
      box-shadow: 0 18px 40px rgba(139,44,255,.12);
      color:#2b0c5a;
      font-weight:950;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .kefu-btn:hover{transform: translateY(-2px); box-shadow: 0 22px 55px rgba(139,44,255,.18)}
    .kefu-dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--primary), var(--primary2));
      box-shadow:0 0 0 6px rgba(139,44,255,.14);
    }
    .kefu-link{
      width:46px; height:46px; border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 40px rgba(16,24,40,.10);
      font-weight:1000;
      transition: transform .18s ease;
    }
    .kefu-link:hover{transform: translateY(-2px)}

    @media (max-width: 980px){
      .hero-inner{grid-template-columns: 1fr; }
      .hero-right .hero-card{position:relative; top:auto}
      .nav-desktop{display:none}
      .nav-actions .btn-ghost{display:none}
      .mobile-menu{display:block}
      .hero-highlights{grid-template-columns: repeat(2, minmax(0,1fr))}
      .two-col{grid-template-columns: 1fr}
      .services-grid{grid-template-columns: 1fr}
      .steps-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
      .timeline{grid-template-columns: repeat(2, minmax(0,1fr))}
      .industry-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
      .rating-row{grid-template-columns: 1fr}
      .token-grid{grid-template-columns: 1fr}
      .training-grid{grid-template-columns: 1fr}
      .network-grid{grid-template-columns: 1fr}
      .case-grid{grid-template-columns: 1fr}
      .review-grid{grid-template-columns: 1fr}
      .faq-layout{grid-template-columns: 1fr}
      .wiki-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
      .article-layout{grid-template-columns: 1fr}
      .contact-grid{grid-template-columns: 1fr}
      .join-grid{grid-template-columns: 1fr}
      .link-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
      .form-row{grid-template-columns: 1fr}
      .hero-card-cta .btn{margin-top:10px}
      .hero-actions .btn{width:100%}
      .hero-actions .btn-ghost{width:100%}
      .cta-strip{align-items:flex-start}
      .cta-strip-right .btn{flex:1}
      .wiki-callout-actions{width:100%}
      .wiki-callout-actions .btn{flex:1}
      .footer-right{min-width: unset; width:100%}
    }

    .nav-toggle{display:flex}
    .mobile-menu{display:none}
    @media (max-width: 980px){
      .mobile-menu{
        display:block;
        position:fixed; inset:0; z-index:80;
        background: rgba(6, 10, 20, .42);
        backdrop-filter: blur(8px);
        opacity:0; pointer-events:none;
        transition: opacity .2s ease;
      }
      .mobile-menu.open{opacity:1; pointer-events:auto;}
      .mobile-menu-inner{
        margin:14px auto;
        max-width: 560px;
        background: rgba(255,255,255,.92);
        border:1px solid rgba(15,23,42,.10);
        border-radius:22px;
        padding:14px 14px 16px;
        box-shadow: 0 30px 80px rgba(16,24,40,.26);
      }
      .mobile-menu-top{
        display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
        padding-bottom:10px;
        border-bottom:1px solid rgba(15,23,42,.08);
        margin-bottom:12px;
      }
      .mobile-brand-name{font-weight:1100}
      .mobile-brand-sub{color:var(--muted2); font-weight:850; font-size:12.8px; margin-top:6px}
      .mobile-links{display:flex; flex-direction:column; gap:10px; padding-bottom:12px}
      .nav-link.mobile{padding:12px 12px; border:1px solid rgba(15,23,42,.10); background: rgba(255,255,255,.70); border-radius:16px; font-weight:950}
      .mobile-cta{display:flex; gap:12px; flex-wrap:wrap}
      .mobile-cta .btn{flex:1}
      .mobile-divider{height:1px; background:rgba(15,23,42,.08); margin:14px 0}
      .mobile-meta{display:flex; flex-direction:column; gap:10px; color:var(--muted); font-weight:850}
      .meta-row{display:flex; justify-content:space-between; gap:12px}
      .meta-k{color:var(--muted2)}
      .meta-v{color:#0f172a}
    }

    @media (prefers-reduced-motion: reduce){
      .bg-orb, .pulse-dot{animation:none}
      *{scroll-behavior:auto !important}
      .reveal-on-scroll{transition:none}
    }