:root{
      --bg0:#fbfbff;
      --bg1:#f6f7ff;
      --card:#ffffff;
      --text:#1b1f2a;
      --muted:#5b6476;
      --line:rgba(20,24,35,.10);
      --shadow: 0 10px 28px rgba(12,20,40,.08);
      --shadow2: 0 16px 40px rgba(12,20,40,.10);
      --brandA:#7c5cff;
      --brandB:#00d4ff;
      --brandC:#ff4fd8;
      --brandD:#20c997;
      --btn:#151a24;
      --btnText:#fff;
      --radius:18px;
      --radius2:24px;
      --container:1120px;
      --pad:20px;
    }

    *{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", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 500px at 15% -10%, rgba(124,92,255,.18), rgba(124,92,255,0) 55%),
        radial-gradient(700px 450px at 85% 0%, rgba(0,212,255,.16), rgba(0,212,255,0) 55%),
        radial-gradient(700px 520px at 70% 40%, rgba(255,79,216,.10), rgba(255,79,216,0) 60%),
        linear-gradient(180deg, var(--bg0), var(--bg1));
      overflow-x:hidden;
    }

    .skip-link{
      position:absolute;
      left:-9999px;
      top:12px;
      background:#0b1020;
      color:#fff;
      padding:10px 12px;
      border-radius:12px;
      z-index:9999;
    }
    .skip-link:focus{left:12px}

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

    .bg-aurora{
      position:fixed;
      inset:-200px -200px auto -200px;
      height:520px;
      pointer-events:none;
      z-index:-1;
      background:
        conic-gradient(from 200deg at 40% 40%,
          rgba(124,92,255,.16),
          rgba(0,212,255,.14),
          rgba(255,79,216,.12),
          rgba(124,92,255,.16));
      filter: blur(30px);
      opacity:.8;
      transform: translateZ(0);
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(251,251,255,.72);
      border-bottom:1px solid rgba(20,24,35,.08);
    }
    .nav-wrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:12px 0;
    }

    .brand-link{display:inline-flex; align-items:center; text-decoration:none}
    .ai-page-logo{display:block; width:auto; max-height:42px}

    .top-nav{
      display:flex;
      align-items:center;
      gap:16px;
      flex:1;
      justify-content:center;
      flex-wrap:nowrap;
    }
    .nav-link{
      color:rgba(18,22,32,.92);
      text-decoration:none;
      font-weight:600;
      font-size:14px;
      padding:10px 8px;
      border-radius:12px;
      transition: background .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .nav-link:hover{
      background: rgba(124,92,255,.10);
      transform: translateY(-1px);
    }

    .nav-actions{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:10px;
    }

    .burger{
      width:42px;
      height:42px;
      border-radius:14px;
      border:1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.65);
      display:none;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .2s ease;
    }
    .burger:hover{transform: translateY(-1px); box-shadow: 0 10px 26px rgba(10,16,30,.10)}
    .burger-lines{
      width:18px; height:12px; display:block; position:relative;
    }
    .burger-lines:before, .burger-lines:after, .burger-lines i{
      content:"";
      position:absolute; left:0; right:0;
      height:2px; border-radius:999px; background: rgba(18,22,32,.88);
    }
    .burger-lines:before{top:0}
    .burger-lines:after{bottom:0}
    .burger-lines i{top:5px}

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      border-radius:14px;
      text-decoration:none;
      border:1px solid rgba(20,24,35,.10);
      padding:10px 14px;
      font-weight:700;
      font-size:14px;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
      white-space:nowrap;
    }
    .btn:focus{outline:3px solid rgba(124,92,255,.25); outline-offset:2px}
    .btn:hover{transform: translateY(-1px)}
    .btn-block{width:100%}

    .btn-primary{
      background: linear-gradient(135deg, var(--brandA), var(--brandB));
      color:var(--btnText);
      border-color: rgba(124,92,255,.25);
      box-shadow: 0 12px 28px rgba(124,92,255,.22);
    }
    .btn-primary:hover{box-shadow: 0 18px 44px rgba(124,92,255,.26)}
    .btn-ghost{
      background: rgba(255,255,255,.55);
      color: rgba(18,22,32,.92);
      border-color: rgba(20,24,35,.12);
      box-shadow: 0 8px 22px rgba(8,14,28,.06);
    }
    .btn-ghost:hover{background: rgba(255,255,255,.72)}
    .btn-soft{
      background: rgba(124,92,255,.10);
      border-color: rgba(124,92,255,.18);
      color: rgba(18,22,32,.92);
    }

    .btn-lg{padding:13px 18px; font-size:15px; border-radius:16px}

    .mobile-menu{
      display:none;
      border-top:1px solid rgba(20,24,35,.08);
      background: rgba(251,251,255,.96);
      backdrop-filter: blur(10px);
    }
    .mobile-menu.open{display:block}
    .mobile-menu-inner{
      padding:14px var(--pad) 18px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .mobile-link{
      text-decoration:none;
      color: rgba(18,22,32,.92);
      font-weight:700;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.62);
    }
    .mobile-menu-cta{display:grid; gap:10px; margin-top:8px}

    .hero{
      padding:30px 0 10px;
      position:relative;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:22px;
      align-items:start;
    }
    .hero-copy{
      padding:18px 0 8px;
    }
    .eyebrow{
      display:flex;
      align-items:center;
      gap:10px;
      margin-bottom:14px;
    }
    .chip{
      width:12px; height:12px;
      border-radius:4px;
      background: linear-gradient(135deg, var(--brandA), var(--brandB));
      box-shadow: 0 10px 26px rgba(124,92,255,.28);
    }
    .chip-spark{
      position:relative;
      overflow:hidden;
    }
    .chip-spark:after{
      content:"";
      position:absolute;
      inset:-8px;
      background: conic-gradient(from 180deg, rgba(255,255,255,.0), rgba(255,255,255,.6), rgba(255,255,255,.0));
      animation: spin 2.6s linear infinite;
      opacity:.55;
    }
    @keyframes spin{to{transform: rotate(360deg)}}

    .eyebrow-text{
      color: rgba(18,22,32,.82);
      font-weight:700;
      font-size:13px;
      letter-spacing:.2px;
    }

    .hero-title{
      margin:0 0 10px;
      font-size:44px;
      line-height:1.08;
      letter-spacing:-.9px;
    }
    .hero-subtitle{
      margin:0 0 18px;
      color: var(--muted);
      font-size:16px;
      line-height:1.7;
      max-width:560px;
    }

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

    .hero-micro{
      margin-top:14px;
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
    }
    .micro-item{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:16px;
      padding:12px 12px;
      display:flex;
      gap:10px;
      align-items:flex-start;
      box-shadow: 0 10px 30px rgba(8,14,28,.05);
    }
    .micro-icon{
      width:32px; height:32px;
      border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(124,92,255,.18), rgba(0,212,255,.16));
      color: rgba(18,22,32,.92);
      border:1px solid rgba(124,92,255,.18);
      flex:0 0 auto;
    }
    .micro-title{font-weight:800; font-size:13px; margin-bottom:3px}
    .micro-desc{color:var(--muted); font-size:12px; line-height:1.4}

    .hero-side{
      position:relative;
    }
    .glass-panel{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      box-shadow: var(--shadow2);
      overflow:hidden;
    }
    .panel-head{
      padding:16px 16px 12px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      background:
        linear-gradient(135deg, rgba(124,92,255,.12), rgba(0,212,255,.08));
      border-bottom:1px solid rgba(20,24,35,.08);
    }
    .panel-title{
      display:flex; align-items:center; gap:10px;
      font-weight:900;
      letter-spacing:-.2px;
    }
    .dot{width:10px; height:10px; border-radius:50%}
    .dot-cyan{background: var(--brandB); box-shadow: 0 10px 26px rgba(0,212,255,.25)}
    .panel-badge{
      font-weight:800;
      color: rgba(18,22,32,.90);
      background: rgba(255,255,255,.65);
      border:1px solid rgba(20,24,35,.10);
      padding:7px 10px;
      border-radius:999px;
      font-size:12px;
      white-space:nowrap;
    }

    .stats-grid{
      padding:14px 16px 12px;
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    .stat-card{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.08);
      border-radius:16px;
      padding:12px 12px;
    }
    .stat-num{font-weight:900; letter-spacing:-.2px}
    .stat-sub{color:var(--muted); font-size:12.5px; margin-top:4px; line-height:1.45}
    .stat-bar{
      height:10px;
      border-radius:999px;
      background: rgba(20,24,35,.06);
      margin-top:10px;
      overflow:hidden;
      border:1px solid rgba(20,24,35,.06);
    }
    .stat-bar span{
      display:block; height:100%;
      background: linear-gradient(90deg, rgba(124,92,255,.95), rgba(0,212,255,.85));
      border-radius:999px;
      box-shadow: 0 10px 20px rgba(124,92,255,.25);
    }

    .panel-foot{
      padding:14px 16px 16px;
      border-top:1px solid rgba(20,24,35,.08);
      background: rgba(255,255,255,.42);
    }
    .fine-print{color:var(--muted); font-size:12px; margin-top:10px; line-height:1.45}

    .ticker{
      margin-top:14px;
      border-radius:18px;
      border:1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.52);
      box-shadow: 0 12px 30px rgba(8,14,28,.06);
      overflow:hidden;
    }
    .ticker-track{
      display:flex;
      gap:16px;
      padding:12px 14px;
      white-space:nowrap;
      animation: ticker 28s linear infinite;
      color: rgba(18,22,32,.90);
      font-weight:800;
      letter-spacing:.2px;
    }
    @keyframes ticker{
      0%{transform: translateX(0)}
      100%{transform: translateX(-50%)}
    }
    .ticker-item{
      font-size:13px;
      padding:6px 10px;
      border-radius:999px;
      background: rgba(124,92,255,.08);
      border:1px solid rgba(124,92,255,.14);
    }

    .section{
      padding:54px 0;
    }
    .section.tight{padding:44px 0}
    .section.small-gap{padding:22px 0 46px}

    .section-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:18px;
      margin-bottom:18px;
    }
    .section-head.split{
      align-items:flex-end;
    }
    .h2{
      margin:0;
      font-size:30px;
      letter-spacing:-.6px;
      line-height:1.2;
    }
    .h3{
      margin:0;
      font-size:18px;
      letter-spacing:-.2px;
    }
    .muted{color:var(--muted)}
    .small{font-size:12.5px}
    .card-text{color:var(--muted); line-height:1.7; margin:8px 0 0; font-size:14px}

    .head-actions{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}

    .capability-row{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .capability-card{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      padding:16px 16px 14px;
      box-shadow: 0 14px 38px rgba(8,14,28,.06);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .capability-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 54px rgba(8,14,28,.10);
    }
    .capability-top{display:flex; align-items:center; gap:12px}
    .capability-icon{
      width:42px; height:42px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(124,92,255,.18), rgba(0,212,255,.12));
      border:1px solid rgba(124,92,255,.18);
      color: rgba(18,22,32,.92);
      flex:0 0 auto;
    }

    .checklist{
      margin:12px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:8px;
      color: rgba(18,22,32,.92);
      font-weight:700;
      font-size:13px;
    }
    .checklist li{
      display:flex; align-items:flex-start; gap:10px;
      color: rgba(18,22,32,.90);
    }
    .checklist span[aria-hidden="true"]{
      width:18px; height:18px;
      border-radius:7px;
      display:inline-flex; align-items:center; justify-content:center;
      background: rgba(32,201,151,.14);
      color: rgba(18,22,32,.92);
      border:1px solid rgba(32,201,151,.18);
      font-weight:900;
      flex:0 0 auto;
    }
    .checklist.compact{font-size:12.5px; gap:7px}

    .service-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .service-card{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      padding:16px 16px 14px;
      box-shadow: 0 14px 34px rgba(8,14,28,.06);
      transition: transform .2s ease, box-shadow .2s ease;
      position:relative;
      overflow:hidden;
    }
    .service-card:before{
      content:"";
      position:absolute;
      inset:-2px;
      background: radial-gradient(520px 220px at 10% 0%, rgba(124,92,255,.18), rgba(124,92,255,0) 55%),
                  radial-gradient(440px 200px at 90% 10%, rgba(0,212,255,.14), rgba(0,212,255,0) 55%);
      opacity:0;
      transition: opacity .25s ease;
      pointer-events:none;
    }
    .service-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 54px rgba(8,14,28,.10);
    }
    .service-card:hover:before{opacity:1}
    .service-top{display:flex; align-items:center; justify-content:space-between; gap:12px}
    .service-icon{
      width:44px; height:44px;
      border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(124,92,255,.20), rgba(255,79,216,.10));
      border:1px solid rgba(124,92,255,.18);
      color: rgba(18,22,32,.92);
      flex:0 0 auto;
    }
    .service-tags{display:flex; gap:8px; flex-wrap:wrap; margin-top:12px}
    .tag{
      font-size:12.5px;
      font-weight:800;
      color: rgba(18,22,32,.90);
      background: rgba(124,92,255,.09);
      border:1px solid rgba(124,92,255,.16);
      padding:7px 10px;
      border-radius:999px;
    }
    .tag-lg{padding:10px 12px; font-size:13px}

    .timeline{
      position:relative;
      padding:10px 0;
      display:flex;
      flex-direction:column;
      gap:18px;
    }
    .timeline-line{
      position:absolute;
      left:16px;
      top:0;
      bottom:0;
      width:2px;
      background: linear-gradient(180deg, rgba(124,92,255,.35), rgba(0,212,255,.22));
      border-radius:999px;
      opacity:.9;
    }
    .timeline-item{
      display:flex;
      gap:14px;
      align-items:flex-start;
      position:relative;
      padding-left:2px;
    }
    .timeline-dot{
      width:36px; height:36px;
      border-radius:14px;
      background: rgba(255,255,255,.60);
      border:1px solid rgba(20,24,35,.10);
      box-shadow: 0 10px 26px rgba(8,14,28,.06);
      position:relative;
      flex:0 0 auto;
      margin-left:0;
    }
    .timeline-dot:after{
      content:"";
      position:absolute;
      left:50%; top:50%;
      width:10px; height:10px;
      border-radius:50%;
      transform: translate(-50%,-50%);
      background: linear-gradient(135deg, var(--brandA), var(--brandB));
      box-shadow: 0 12px 26px rgba(124,92,255,.26);
    }
    .timeline-body{padding-top:2px}
    .timeline-title{font-weight:900; letter-spacing:-.2px; margin-bottom:4px}
    .timeline-desc{color:var(--muted); line-height:1.7; font-size:14px; max-width:520px}

    .inline-action{
      margin-top:18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      background: rgba(255,255,255,.60);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      padding:14px 16px;
      box-shadow: 0 14px 36px rgba(8,14,28,.06);
      flex-wrap:wrap;
    }
    .inline-badge{
      font-weight:900;
      padding:8px 12px;
      border-radius:999px;
      background: rgba(0,212,255,.10);
      border:1px solid rgba(0,212,255,.16);
      white-space:nowrap;
    }
    .inline-text{color:var(--muted); line-height:1.6; flex:1 1 260px; min-width:220px}

    .industry-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .industry-card{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      padding:16px 16px 14px;
      box-shadow: 0 14px 34px rgba(8,14,28,.06);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .industry-card:hover{transform: translateY(-2px); box-shadow: 0 18px 54px rgba(8,14,28,.10)}
    .industry-list{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
    .pill{
      padding:8px 10px;
      border-radius:999px;
      background: rgba(255,79,216,.08);
      border:1px solid rgba(255,79,216,.16);
      font-weight:900;
      font-size:12.5px;
      color: rgba(18,22,32,.92);
    }

    .rating-card{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      padding:14px 16px;
      box-shadow: 0 14px 34px rgba(8,14,28,.06);
      min-width:240px;
    }
    .rating-top{display:flex; align-items:center; justify-content:space-between; gap:12px}
    .stars{color:#f59e0b; font-size:18px; letter-spacing:-2px}
    .rating-score{
      font-weight:1000;
      font-size:34px;
      letter-spacing:-1px;
    }
    .rating-unit{font-size:14px; color:var(--muted); font-weight:900; margin-left:4px}
    .rating-note{margin-top:6px; font-weight:900; color: rgba(18,22,32,.92)}

    .compare-grid{
      display:grid;
      grid-template-columns: 1.35fr .65fr;
      gap:14px;
      margin-top:18px;
    }
    .compare-card{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      padding:16px 16px 14px;
      box-shadow: 0 14px 40px rgba(8,14,28,.06);
      overflow:hidden;
    }
    .compare-head{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; margin-bottom:10px}
    .compare-title{font-weight:1000; letter-spacing:-.4px; font-size:16px}
    .compare-sub{color:var(--muted); font-weight:800; font-size:13px}

    .compare-table-wrap{
      overflow:auto;
      border-radius:16px;
      border:1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.55);
    }
    .compare-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:680px;
    }
    .compare-table th, .compare-table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(20,24,35,.08);
      vertical-align:top;
      text-align:left;
      font-size:14px;
    }
    .compare-table th{
      background: linear-gradient(135deg, rgba(124,92,255,.14), rgba(0,212,255,.10));
      font-weight:1000;
      color: rgba(18,22,32,.92);
      position:sticky;
      top:0;
      z-index:1;
    }
    .compare-table tbody tr:last-child td{border-bottom:none}

    .badge{
      display:inline-flex; align-items:center;
      padding:7px 10px;
      border-radius:999px;
      font-weight:1000;
      border:1px solid rgba(20,24,35,.10);
      background: rgba(20,24,35,.04);
      color: rgba(18,22,32,.92);
      font-size:12.5px;
    }
    .badge-good{
      background: rgba(32,201,151,.10);
      border-color: rgba(32,201,151,.18);
    }

    .compare-actions{
      display:flex;
      gap:10px;
      margin-top:14px;
      flex-wrap:wrap;
    }

    .compare-side{
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .side-tiles{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      padding:14px 14px;
      box-shadow: 0 14px 34px rgba(8,14,28,.06);
    }
    .side-tile{
      padding:12px 10px;
      border-radius:16px;
      border:1px solid rgba(20,24,35,.08);
      background: rgba(255,255,255,.52);
      margin-bottom:10px;
    }
    .side-tile:last-child{margin-bottom:0}
    .tile-k{color:var(--muted); font-size:12.5px; font-weight:900}
    .tile-v{font-weight:1000; margin-top:4px}

    .side-cta{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      padding:14px 14px;
      box-shadow: 0 14px 34px rgba(8,14,28,.06);
    }
    .side-cta-title{font-weight:1000; letter-spacing:-.3px; font-size:16px}
    .side-cta-text{color:var(--muted); line-height:1.7; margin-top:8px; font-size:14px}

    .token-grid{
      display:grid;
      grid-template-columns: 1fr 1fr 1.1fr;
      gap:14px;
      align-items:stretch;
    }
    .token-card{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      padding:16px 16px 14px;
      box-shadow: 0 14px 40px rgba(8,14,28,.06);
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .token-head{display:flex; align-items:center; justify-content:space-between; gap:12px}
    .token-title{font-weight:1000; letter-spacing:-.3px; font-size:16px}
    .token-badge{
      padding:7px 10px;
      border-radius:999px;
      background: rgba(124,92,255,.10);
      border:1px solid rgba(124,92,255,.16);
      font-weight:1000;
      font-size:12.5px;
      white-space:nowrap;
    }
    .token-badge-2{
      background: rgba(0,212,255,.10);
      border-color: rgba(0,212,255,.16);
    }
    .token-row{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      border:1px solid rgba(20,24,35,.08);
      background: rgba(255,255,255,.52);
      padding:10px 12px;
      border-radius:16px;
    }
    .token-m{color:var(--muted); font-weight:900; font-size:12.5px}
    .token-v{font-weight:900; color: rgba(18,22,32,.92); text-align:right; line-height:1.5; font-size:13.5px}

    .token-chart-card{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      padding:16px 16px 14px;
      box-shadow: 0 14px 40px rgba(8,14,28,.06);
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .token-chart-top{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
    .token-chart-title{font-weight:1000; letter-spacing:-.3px; font-size:16px}
    .chart-pill{
      padding:8px 10px;
      border-radius:999px;
      background: rgba(255,79,216,.08);
      border:1px solid rgba(255,79,216,.16);
      font-weight:1000;
      font-size:12.5px;
      white-space:nowrap;
    }
    .chart-list{display:grid; gap:12px; margin-top:4px}
    .chart-item{display:grid; gap:8px}
    .chart-label{font-weight:900; color: rgba(18,22,32,.92); font-size:13.5px}
    .chart-bar{
      height:12px;
      border-radius:999px;
      background: rgba(20,24,35,.06);
      border:1px solid rgba(20,24,35,.06);
      overflow:hidden;
    }
    .chart-bar span{
      display:block; height:100%;
      background: linear-gradient(90deg, rgba(255,79,216,.75), rgba(0,212,255,.75), rgba(124,92,255,.85));
      border-radius:999px;
      box-shadow: 0 10px 22px rgba(124,92,255,.18);
    }
    .chart-note{
      margin-top:auto;
      display:flex;
      align-items:flex-start;
      gap:10px;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.52);
    }
    .note-dot{
      width:10px; height:10px;
      border-radius:50%;
      background: linear-gradient(135deg, var(--brandA), var(--brandB));
      margin-top:4px;
      box-shadow: 0 12px 26px rgba(124,92,255,.22);
      flex:0 0 auto;
    }

    .network-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .network-card{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      padding:16px 16px 14px;
      box-shadow: 0 14px 40px rgba(8,14,28,.06);
    }
    .network-title{font-weight:1000; letter-spacing:-.3px; font-size:16px}
    .network-metrics{margin-top:12px; display:grid; gap:10px}
    .metric{
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(20,24,35,.08);
      background: rgba(255,255,255,.52);
    }
    .metric-k{color:var(--muted); font-weight:900; font-size:12.5px}
    .metric-v{font-weight:1000; margin-top:4px; line-height:1.5}

    .training-list{display:grid; gap:10px; margin-top:12px}
    .training-item{
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(20,24,35,.08);
      background: rgba(255,255,255,.52);
      font-weight:1000;
      color: rgba(18,22,32,.92);
    }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .case-card{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      overflow:hidden;
      box-shadow: 0 14px 40px rgba(8,14,28,.06);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .case-card:hover{transform: translateY(-2px); box-shadow: 0 18px 54px rgba(8,14,28,.10)}
    .case-media{
      height:140px;
      position:relative;
      background: linear-gradient(135deg, rgba(124,92,255,.14), rgba(0,212,255,.10));
    }
    .media-gradient{
      position:absolute;
      inset:0;
      background:
        radial-gradient(280px 140px at 20% 30%, rgba(124,92,255,.35), rgba(124,92,255,0) 60%),
        radial-gradient(260px 130px at 80% 30%, rgba(0,212,255,.28), rgba(0,212,255,0) 60%),
        radial-gradient(240px 120px at 60% 90%, rgba(255,79,216,.22), rgba(255,79,216,0) 60%);
      opacity:.95;
      transform: translateZ(0);
    }
    .media-1{filter:saturate(1.1)}
    .media-2{filter:saturate(1.25) hue-rotate(-8deg)}
    .media-3{filter:saturate(1.15) hue-rotate(12deg)}
    .case-body{padding:14px 14px 14px}
    .case-kicker{
      color: rgba(18,22,32,.80);
      font-weight:1000;
      font-size:12.5px;
      text-transform: none;
      letter-spacing:.2px;
      padding:7px 10px;
      border-radius:999px;
      display:inline-flex;
      background: rgba(255,255,255,.55);
      border:1px solid rgba(20,24,35,.10);
    }
    .case-title{
      margin:10px 0 0;
      font-size:18px;
      letter-spacing:-.3px;
      line-height:1.35;
    }
    .case-meta{
      display:flex; gap:8px; flex-wrap:wrap;
      margin-top:12px;
    }
    .meta-pill{
      padding:7px 10px;
      border-radius:999px;
      font-weight:1000;
      font-size:12.5px;
      background: rgba(0,212,255,.08);
      border:1px solid rgba(0,212,255,.16);
      color: rgba(18,22,32,.92);
    }
    .cases-bottom{
      margin-top:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:14px 16px;
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      background: rgba(255,255,255,.62);
      box-shadow: 0 14px 40px rgba(8,14,28,.06);
      flex-wrap:wrap;
    }
    .mini-title{font-weight:1000; letter-spacing:-.3px}
    .cases-bottom-right{display:flex; gap:10px; flex-wrap:wrap}

    .article-grid{
      display:grid;
      grid-template-columns: 1.35fr .65fr;
      gap:14px;
      align-items:start;
    }
    .article-list-card{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      box-shadow: 0 14px 40px rgba(8,14,28,.06);
      padding:16px 16px 14px;
    }
    .article-card-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:10px;
    }
    .article-title{font-weight:1000; letter-spacing:-.3px; font-size:16px}
    .link-quiet{
      color: rgba(18,22,32,.86);
      text-decoration:none;
      font-weight:900;
      font-size:13px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.55);
    }
    .link-quiet:hover{background: rgba(124,92,255,.10)}
    .article-list{list-style:none; margin:0; padding:0; display:grid; gap:10px}
    .article-item{
      display:flex;
      align-items:baseline;
      justify-content:space-between;
      gap:12px;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(20,24,35,.08);
      background: rgba(255,255,255,.52);
    }
    .article-link{
      color: rgba(18,22,32,.94);
      font-weight:1000;
      text-decoration:none;
      line-height:1.4;
    }
    .article-link:hover{color: rgba(124,92,255,.98); text-decoration:underline; text-underline-offset:3px}
    .article-meta{color:var(--muted); font-weight:900; font-size:12.5px; white-space:nowrap}

    .article-actions{margin-top:12px}
    .article-side{display:grid; gap:14px}
    .tag-cloud{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      padding:16px 16px 14px;
      box-shadow: 0 14px 40px rgba(8,14,28,.06);
    }
    .tag-cloud-title{font-weight:1000; letter-spacing:-.3px; font-size:16px; margin-bottom:10px}
    .tag-cloud-wrap{display:flex; flex-wrap:wrap; gap:10px}
    .cloud-tag{
      text-decoration:none;
      color: rgba(18,22,32,.92);
      font-weight:1000;
      font-size:13px;
      padding:9px 11px;
      border-radius:999px;
      border:1px solid rgba(20,24,35,.10);
      background:
        linear-gradient(135deg, rgba(124,92,255,.08), rgba(0,212,255,.06));
      transition: transform .15s ease, background .2s ease;
    }
    .cloud-tag:hover{transform: translateY(-1px); background: rgba(124,92,255,.12)}

    .side-notice{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      padding:16px 16px 14px;
      box-shadow: 0 14px 40px rgba(8,14,28,.06);
    }
    .notice-title{font-weight:1000; letter-spacing:-.3px; font-size:16px}
    .notice-text{color:var(--muted); line-height:1.7; margin-top:10px; font-size:14px}
    .notice-actions{margin-top:12px}

    .contact-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:14px;
      align-items:start;
    }
    .form-card{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      box-shadow: 0 14px 40px rgba(8,14,28,.06);
      padding:16px 16px 14px;
    }
    .form-head{margin-bottom:10px}
    .form-title{font-weight:1000; letter-spacing:-.3px; font-size:16px}
    .form-sub{color:var(--muted); font-weight:900; font-size:13px; margin-top:6px}

    .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}
    .label{font-weight:1000; font-size:13px; color: rgba(18,22,32,.92)}
    input, select, textarea{
      width:100%;
      border-radius:16px;
      border:1px solid rgba(20,24,35,.12);
      padding:12px 12px;
      background: rgba(255,255,255,.72);
      color: rgba(18,22,32,.95);
      font-weight:700;
      outline:none;
      transition: border-color .2s ease, box-shadow .2s ease, transform .1s ease;
    }
    input::placeholder, textarea::placeholder{color: rgba(91,100,118,.75); font-weight:700}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(124,92,255,.45);
      box-shadow: 0 0 0 4px rgba(124,92,255,.16);
    }
    textarea{resize:vertical; min-height:120px}

    .form-foot{display:flex; flex-direction:column; gap:10px}
    .form-hint{color:var(--muted); font-size:12.5px; line-height:1.5}

    .contact-side{display:grid; gap:14px}
    .side-contact-card{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      padding:16px 16px 14px;
      box-shadow: 0 14px 40px rgba(8,14,28,.06);
    }
    .side-contact-title{font-weight:1000; letter-spacing:-.3px; font-size:16px; margin-bottom:12px}

    .contact-item{margin-top:14px}
    .contact-item:first-of-type{margin-top:0}
    .contact-label{display:block; color:var(--muted); font-weight:900; font-size:12.5px; margin-bottom:8px}
    .contact-link{color: rgba(18,22,32,.95); font-weight:1000; text-decoration:none}
    .contact-link:hover{color: rgba(124,92,255,.98); text-decoration:underline; text-underline-offset:3px}
    .qr-wrap{
      width:158px; max-width:100%;
      border-radius:18px;
      border:1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.6);
      padding:10px;
    }
    .qr-wrap img{width:100%; height:auto; display:block}
    .contact-chips{display:flex; flex-direction:column; gap:8px}
    .chip-text{
      font-weight:900;
      padding:9px 10px;
      border-radius:16px;
      border:1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.52);
      color: rgba(18,22,32,.92);
      font-size:13px;
    }

    .side-cta{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      padding:16px 16px 14px;
      box-shadow: 0 14px 40px rgba(8,14,28,.06);
    }
    .side-cta-title{font-weight:1000; letter-spacing:-.3px; font-size:16px}
    .side-cta-text{color:var(--muted); line-height:1.7; margin-top:10px; font-size:14px}

    .training-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
      align-items:stretch;
      margin-top:10px;
    }
    .training-card{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      padding:16px 16px 14px;
      box-shadow: 0 14px 40px rgba(8,14,28,.06);
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .training-title{font-weight:1000; letter-spacing:-.3px; font-size:16px}
    .training-bullets{display:grid; gap:10px; margin-top:6px}
    .training-bullet{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(20,24,35,.08);
      background: rgba(255,255,255,.52);
    }
    .tb-num{
      width:40px; height:32px;
      border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(124,92,255,.10);
      border:1px solid rgba(124,92,255,.16);
      font-weight:1000;
    }
    .tb-text{font-weight:1000; color: rgba(18,22,32,.92); text-align:right; line-height:1.4; flex:1}

    .training-actions{margin-top:auto}

    .audience-tags{display:flex; flex-wrap:wrap; gap:10px; margin-top:8px}

    .faq-grid{
      display:grid;
      grid-template-columns: 1.35fr .65fr;
      gap:14px;
      align-items:start;
      margin-top:10px;
    }
    .faq-panel{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      box-shadow: 0 14px 40px rgba(8,14,28,.06);
      padding:14px 14px 12px;
    }
    .faq-list{display:grid; gap:10px}
    .faq-item{
      border-radius:18px;
      border:1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.52);
      overflow:hidden;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .faq-item:hover{
      transform: translateY(-1px);
      box-shadow: 0 16px 40px rgba(8,14,28,.08);
    }
    .faq-summary{
      list-style:none;
      cursor:pointer;
      padding:12px 12px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      font-weight:1000;
      letter-spacing:-.2px;
    }
    .faq-summary::-webkit-details-marker{display:none}
    .faq-answer{
      padding:0 12px 12px;
      color:var(--muted);
      line-height:1.7;
      font-size:14px;
    }
    .faq-icon{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.6);
      position:relative;
      flex:0 0 auto;
    }
    .faq-icon:before, .faq-icon:after{
      content:"";
      position:absolute;
      left:50%; top:50%;
      width:14px; height:2px;
      background: rgba(18,22,32,.88);
      transform: translate(-50%,-50%);
      border-radius:999px;
      transition: transform .2s ease, opacity .2s ease;
    }
    .faq-icon:after{
      width:2px; height:14px;
    }
    details[open] .faq-icon:after{opacity:0}
    details[open] .faq-icon:before{transform: translate(-50%,-50%) rotate(0deg)}

    .faq-panel-foot{
      margin-top:12px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.52);
      flex-wrap:wrap;
    }
    .faq-foot-note{color:var(--muted); font-weight:900; font-size:13px}

    .faq-side{display:grid; gap:14px}
    .side-module{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      padding:16px 16px 14px;
      box-shadow: 0 14px 40px rgba(8,14,28,.06);
    }
    .side-module-title{font-weight:1000; letter-spacing:-.3px; font-size:16px}
    .side-module-text{color:var(--muted); line-height:1.7; margin-top:10px; font-size:14px}
    .help-links{display:grid; grid-template-columns: 1fr; gap:10px; margin-top:12px}
    .help-link{
      text-decoration:none;
      font-weight:1000;
      color: rgba(18,22,32,.92);
      padding:11px 12px;
      border-radius:18px;
      border:1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.52);
    }
    .help-link:hover{background: rgba(124,92,255,.10)}
    .side-module-divider{height:1px; background: rgba(20,24,35,.10); margin:14px 0}
    .side-module-cta{margin-top:0}

    .wiki-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
      margin-top:12px;
    }
    .wiki-card{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      padding:16px 16px 14px;
      box-shadow: 0 14px 40px rgba(8,14,28,.06);
    }
    .wiki-top{display:flex; align-items:center; gap:12px}
    .wiki-icon{
      width:44px; height:44px;
      border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(124,92,255,.18), rgba(0,212,255,.12));
      border:1px solid rgba(124,92,255,.18);
      color: rgba(18,22,32,.92);
      flex:0 0 auto;
    }
    .wiki-bottom{
      margin-top:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      padding:14px 16px;
      border-radius:22px;
      border:1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 14px 40px rgba(8,14,28,.06);
    }
    .wiki-bottom-left{min-width:260px}
    .wiki-bottom-right{display:flex; gap:10px; flex-wrap:wrap}

    .help-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .help-card{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      padding:16px 16px 14px;
      box-shadow: 0 14px 40px rgba(8,14,28,.06);
    }

    .testimonial-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .testimonial-card{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      padding:16px 16px 14px;
      box-shadow: 0 14px 40px rgba(8,14,28,.06);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .testimonial-card:hover{transform: translateY(-2px); box-shadow: 0 18px 54px rgba(8,14,28,.10)}
    .testimonial-top{display:flex; align-items:center; gap:12px; margin-bottom:10px}
    .avatar{
      width:44px; height:44px; border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(124,92,255,.18), rgba(0,212,255,.12));
      border:1px solid rgba(124,92,255,.18);
      font-weight:1000;
      letter-spacing:-.2px;
      flex:0 0 auto;
      color: rgba(18,22,32,.92);
    }
    .who-name{font-weight:1000; letter-spacing:-.2px}
    .who-sub{color:var(--muted); font-weight:900; font-size:12.5px; margin-top:3px}
    .quote{margin:0; color:var(--muted); line-height:1.8; font-size:14px; font-weight:700}
    .testimonial-card .stars{margin-top:12px; font-size:18px}

    .two-col{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .price-card{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      padding:16px 16px 14px;
      box-shadow: 0 14px 40px rgba(8,14,28,.06);
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .price-title{font-weight:1000; letter-spacing:-.3px; font-size:16px}
    .price-bullets{display:grid; gap:12px; margin-top:4px}
    .price-bullet{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.52);
    }
    .pb-icon{
      width:34px; height:34px;
      border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(0,212,255,.10);
      border:1px solid rgba(0,212,255,.16);
      font-weight:1000;
      flex:0 0 auto;
    }
    .pb-title{font-weight:1000; letter-spacing:-.2px}
    .pb-desc{color:var(--muted); font-weight:800; margin-top:4px; line-height:1.5; font-size:13.5px}
    .price-actions{margin-top:auto; display:grid; gap:10px}

    .join-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:stretch;
    }
    .join-card{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      padding:16px 16px 14px;
      box-shadow: 0 14px 40px rgba(8,14,28,.06);
    }
    .join-title{font-weight:1000; letter-spacing:-.3px; font-size:16px; margin-bottom:10px}

    .platform-intro{
      display:grid;
      grid-template-columns: 1.18fr .82fr;
      gap:14px;
      align-items:start;
      padding:16px 0;
    }
    .platform-left{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      padding:16px 16px 14px;
      box-shadow: 0 14px 40px rgba(8,14,28,.06);
    }
    .platform-points{margin-top:14px; display:grid; grid-template-columns: 1fr; gap:10px}
    .pp{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.52);
    }
    .pp-icon{
      width:34px; height:34px;
      border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      background: linear-gradient(135deg, rgba(124,92,255,.16), rgba(0,212,255,.12));
      border:1px solid rgba(124,92,255,.18);
      flex:0 0 auto;
      color: rgba(18,22,32,.92);
    }
    .pp-text{font-weight:900; line-height:1.6; color: rgba(18,22,32,.92)}
    .platform-right-card{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      padding:16px 16px 14px;
      box-shadow: 0 14px 40px rgba(8,14,28,.06);
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .pr-title{font-weight:1000; letter-spacing:-.3px; font-size:18px}
    .pr-sub{line-height:1.7; font-size:14px; font-weight:700}
    .pr-quick{display:grid; gap:10px}
    .quick-item{
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.52);
    }
    .quick-k{color:var(--muted); font-weight:900; font-size:12.5px}
    .quick-v{font-weight:1000; margin-top:4px; line-height:1.5}
    .pr-actions{display:grid; gap:10px; margin-top:4px}
    .pr-foot{margin-top:4px}

    .links-card{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      padding:14px 16px;
      box-shadow: 0 14px 40px rgba(8,14,28,.06);
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    .links-title{font-weight:1000; letter-spacing:-.3px; font-size:16px}
    .links-wrap{display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:flex-end}
    .links-wrap a{
      color: rgba(18,22,32,.92);
      text-decoration:none;
      font-weight:1000;
      border:1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.52);
      padding:9px 11px;
      border-radius:999px;
      font-size:13px;
    }
    .links-wrap a:hover{background: rgba(124,92,255,.10)}

    .site-footer{
      background: linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.55)),
                  linear-gradient(180deg, rgba(20,24,35,.02), rgba(20,24,35,.03));
      border-top:1px solid rgba(20,24,35,.08);
      padding:26px 0 20px;
    }
    .footer-wrap{display:flex; flex-direction:column; gap:18px}
    .footer-top{
      display:grid;
      grid-template-columns: 1.2fr .8fr 1fr;
      gap:14px;
      align-items:start;
    }
    .footer-col{
      background: rgba(255,255,255,.55);
      border:1px solid rgba(20,24,35,.10);
      border-radius:22px;
      padding:16px 16px 14px;
      box-shadow: 0 14px 40px rgba(8,14,28,.05);
    }
    .footer-title{
      font-weight:1000; letter-spacing:-.3px; font-size:15px;
      margin-bottom:10px;
    }
    .footer-text{color:var(--muted); line-height:1.8; margin:12px 0 0; font-weight:700}
    .footer-brand img{max-width:140px}
    .footer-links{display:grid; gap:10px}
    .footer-links a{
      text-decoration:none;
      color: rgba(18,22,32,.92);
      font-weight:1000;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.52);
    }
    .footer-links a:hover{background: rgba(124,92,255,.10)}
    .footer-contacts{display:grid; gap:10px}
    .footer-contact{color: rgba(18,22,32,.92); font-weight:900; line-height:1.5}
    .fc-k{color:var(--muted); font-weight:1000; margin-right:6px}
    .footer-contact a{color: rgba(18,22,32,.92); text-decoration:none}
    .footer-contact a:hover{color: rgba(124,92,255,.98); text-decoration:underline; text-underline-offset:3px}
    .footer-mini-cta{margin-top:12px}

    .footer-bottom{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      padding:0 6px;
    }
    .copyright{color:var(--muted); font-weight:900}
    .footer-small-links{display:flex; gap:14px; flex-wrap:wrap}
    .footer-small-links a{
      text-decoration:none;
      color: rgba(18,22,32,.88);
      font-weight:1000;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.55);
    }
    .footer-small-links a:hover{background: rgba(124,92,255,.10)}

    .float-bar{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:80;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .float-item{
      text-decoration:none;
      display:flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:18px;
      border:1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 16px 50px rgba(8,14,28,.12);
      color: rgba(18,22,32,.92);
      font-weight:1000;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    }
    .float-item:hover{transform: translateY(-2px); background: rgba(255,255,255,.86)}
    .float-item.float-wx{
      background: linear-gradient(135deg, rgba(124,92,255,.14), rgba(0,212,255,.10));
      border-color: rgba(124,92,255,.18);
    }
    .float-icon{
      width:34px; height:34px;
      border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,255,255,.66);
      border:1px solid rgba(20,24,35,.10);
      flex:0 0 auto;
    }
    .float-text{font-size:13px}

    .to-top{
      position:fixed;
      right:14px;
      bottom:110px;
      z-index:85;
      border-radius:18px;
      border:1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.76);
      box-shadow: 0 16px 50px rgba(8,14,28,.12);
      padding:10px 12px;
      cursor:pointer;
      display:flex;
      align-items:center;
      gap:10px;
      color: rgba(18,22,32,.92);
      font-weight:1000;
      opacity:0;
      transform: translateY(10px);
      pointer-events:none;
      transition: opacity .25s ease, transform .25s ease, background .2s ease;
    }
    .to-top.show{
      opacity:1;
      transform: translateY(0);
      pointer-events:auto;
    }
    .to-top:hover{background: rgba(255,255,255,.90)}
    .to-top-icon{
      width:30px; height:30px;
      border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(20,24,35,.10);
      background: rgba(124,92,255,.10);
    }
    .to-top-text{font-size:13px}

    .reveal{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .55s ease, transform .55s ease;
    }
    .reveal.is-in{
      opacity:1;
      transform: translateY(0);
    }

    @media (max-width: 980px){
      .top-nav{display:none}
      .burger{display:flex}
      .hero-grid{grid-template-columns: 1fr; gap:16px}
      .hero-title{font-size:36px}
      .hero-micro{grid-template-columns: 1fr; gap:10px}
      .capability-row{grid-template-columns: 1fr; gap:12px}
      .service-grid{grid-template-columns: 1fr; gap:12px}
      .industry-grid{grid-template-columns: 1fr; gap:12px}
      .compare-grid{grid-template-columns: 1fr; }
      .token-grid{grid-template-columns: 1fr; }
      .network-grid{grid-template-columns: 1fr; }
      .case-grid{grid-template-columns: 1fr; }
      .article-grid{grid-template-columns: 1fr; }
      .contact-grid{grid-template-columns: 1fr; }
      .training-grid{grid-template-columns: 1fr; }
      .faq-grid{grid-template-columns: 1fr; }
      .wiki-grid{grid-template-columns: 1fr; }
      .help-grid{grid-template-columns: 1fr; }
      .testimonial-grid{grid-template-columns: 1fr; }
      .two-col{grid-template-columns: 1fr; }
      .join-grid{grid-template-columns: 1fr; }
      .platform-intro{grid-template-columns: 1fr; }
      .footer-top{grid-template-columns: 1fr; }
      .float-bar{right:10px; bottom:10px}
      .to-top{right:10px; bottom:98px}
    }
    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .ticker-track{animation:none}
      .reveal{transition:none}
      .chip-spark:after{animation:none}
    }