:root{
      --bg0:#f7fbff;
      --bg1:#f2f6ff;
      --card:#ffffff;
      --text:#111827;
      --muted:#4b5563;
      --muted2:#6b7280;
      --line:rgba(17,24,39,.10);
      --shadow: 0 18px 45px rgba(13, 36, 84, .10);
      --shadow2: 0 10px 24px rgba(13, 36, 84, .10);
      --brand1:#0ea5e9;
      --brand2:#22c55e;
      --brand3:#a78bfa;
      --brand4:#06b6d4;
      --primary:#0b74ff;
      --primary2:#22d3ee;
      --accent:#14b8a6;
      --warn:#f59e0b;
      --radius:18px;
      --radius2:26px;
      --container: 1120px;
    }

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

    .bg-wrap{
      position:fixed;
      inset:0;
      pointer-events:none;
      z-index:-1;
      background: radial-gradient(1200px 680px at 12% -10%, rgba(14,165,233,.18), transparent 58%),
                  radial-gradient(900px 520px at 88% -20%, rgba(167,139,250,.18), transparent 60%),
                  radial-gradient(700px 480px at 50% 0%, rgba(34,211,238,.14), transparent 58%),
                  linear-gradient(180deg, rgba(247,251,255,1), rgba(255,255,255,1));
    }
    .bg-grid{
      position:absolute;
      inset:-20%;
      background:
        linear-gradient(to right, rgba(2,6,23,.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(2,6,23,.06) 1px, transparent 1px);
      background-size: 62px 62px;
      transform: rotate(3deg);
      mask-image: radial-gradient(circle at 50% 0%, rgba(0,0,0,.95), transparent 65%);
      opacity:.35;
    }
    .bg-orb{
      position:absolute;
      border-radius:999px;
      filter: blur(22px);
      opacity:.55;
      transform: translateZ(0);
    }
    .orb1{ width:520px; height:520px; left:-120px; top:120px; background: radial-gradient(circle at 30% 30%, rgba(14,165,233,.55), transparent 65%); }
    .orb2{ width:420px; height:420px; right:-100px; top:60px; background: radial-gradient(circle at 30% 30%, rgba(167,139,250,.48), transparent 62%); }
    .orb3{ width:360px; height:360px; left:40%; top:520px; background: radial-gradient(circle at 30% 30%, rgba(34,211,238,.42), transparent 64%); }

    .skip-link{
      position:absolute; left:-999px; top:0;
      background:#0b74ff; color:#fff;
      padding:10px 14px; border-radius:12px;
      z-index:50;
      transition:left .2s ease;
    }
    .skip-link:focus{ left:14px; top:14px; outline:none; }

    .container{
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:30;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,.72);
      border-bottom: 1px solid rgba(17,24,39,.08);
    }

    .nav-container{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding: 12px 0;
    }

    .brand-link{ display:inline-flex; align-items:center; gap:10px; text-decoration:none; }
    .ai-page-logo{ display:block; width:140px; }

    .nav-desktop{
      display:flex;
      align-items:center;
      gap:18px;
      flex:1;
      justify-content:center;
      min-width: 360px;
    }
    .nav-desktop a{
      text-decoration:none;
      color: rgba(17,24,39,.86);
      font-weight:600;
      font-size: 14px;
      padding: 8px 10px;
      border-radius: 12px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .nav-desktop a:hover{
      background: rgba(11,116,255,.08);
      color:#0b74ff;
      transform: translateY(-1px);
    }

    .nav-actions{
      display:flex; align-items:center; gap:10px;
      flex-shrink:0;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding: 10px 14px;
      border-radius: 14px;
      border: 1px solid transparent;
      text-decoration:none;
      color:#0b74ff;
      background: transparent;
      font-weight:700;
      font-size: 14px;
      transition: transform .15s ease, box-shadow .15s ease, background .2s ease, border-color .2s ease;
      cursor:pointer;
      user-select:none;
      white-space:nowrap;
    }
    .btn-lg{ padding: 12px 18px; border-radius:16px; font-size:15px; }
    .btn-primary{
      color:#fff;
      background: linear-gradient(135deg, #0b74ff, #22d3ee);
      border-color: rgba(11,116,255,.25);
      box-shadow: 0 10px 25px rgba(11,116,255,.25);
    }
    .btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 16px 34px rgba(11,116,255,.30); }
    .btn-ghost{
      background: rgba(11,116,255,.06);
      border-color: rgba(11,116,255,.16);
      color:#0b74ff;
    }
    .btn-ghost:hover{ transform: translateY(-1px); background: rgba(11,116,255,.10); }
    .btn-link{
      background: transparent;
      border-color: transparent;
      padding: 10px 10px;
      color: rgba(17,24,39,.82);
      font-weight:700;
      box-shadow:none;
    }
    .btn-link:hover{ color:#0b74ff; transform: translateY(-1px); background: rgba(11,116,255,.06); }
    .btn-block{ width:100%; }

    .icon-btn{
      width:42px; height:42px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background:#fff;
      cursor:pointer;
      color: rgba(17,24,39,.86);
      display:inline-flex; align-items:center; justify-content:center;
      transition: transform .15s ease, box-shadow .15s ease, border-color .2s ease;
    }
    .icon-btn:hover{ transform: translateY(-1px); box-shadow: 0 10px 24px rgba(15,23,42,.10); border-color: rgba(11,116,255,.25); }

    .btn-nav-open{
      display:none;
      padding: 10px 12px;
      border-radius: 14px;
      background: rgba(11,116,255,.10);
      border-color: rgba(11,116,255,.25);
      color:#0b74ff;
    }

    .mobile-drawer{
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      z-index: 60;
      transform: translateY(-10px);
      opacity:0;
      pointer-events:none;
      transition: opacity .18s ease, transform .18s ease;
    }
    .mobile-drawer.open{
      opacity:1;
      pointer-events:auto;
      transform: translateY(0);
    }
    .drawer-inner{
      background: rgba(255,255,255,.90);
      border: 1px solid rgba(17,24,39,.10);
      border-radius: 20px;
      box-shadow: var(--shadow);
      padding: 14px;
    }
    .drawer-backdrop{
      position:fixed;
      inset:0;
      background: rgba(2,6,23,.34);
      opacity:0;
      pointer-events:none;
      z-index:55;
      transition: opacity .2s ease;
    }
    .drawer-backdrop.show{
      opacity:1;
      pointer-events:auto;
    }
    .drawer-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding: 4px 2px 12px;
    }
    .drawer-title{ font-weight:900; letter-spacing:.2px; }
    .drawer-grid{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 10px;
      margin: 8px 0 10px;
    }
    .drawer-col{
      display:flex; flex-direction:column; gap:8px;
    }
    .drawer-col a{
      text-decoration:none;
      color: rgba(17,24,39,.88);
      font-weight:700;
      padding: 10px 10px;
      border-radius: 14px;
      background: rgba(11,116,255,.04);
      border: 1px solid rgba(11,116,255,.10);
      transition: transform .15s ease, background .2s ease, border-color .2s ease;
    }
    .drawer-col a:hover{
      transform: translateY(-1px);
      background: rgba(11,116,255,.09);
      border-color: rgba(11,116,255,.20);
      color:#0b74ff;
    }
    .drawer-bottom{
      border-top: 1px solid rgba(17,24,39,.08);
      padding-top: 12px;
    }
    .drawer-meta{
      margin-top:10px;
      color: var(--muted2);
      font-size: 13px;
      line-height: 1.5;
    }

    .hero{
      padding: 42px 0 18px;
    }
    .hero-inner{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 22px;
      align-items: start;
      position:relative;
    }

    .hero-left{
      padding: 16px 0;
    }
    .hero-badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(11,116,255,.18);
      background: rgba(255,255,255,.62);
      box-shadow: 0 12px 28px rgba(11,116,255,.10);
    }
    .hero-badge .dot{
      width:10px; height:10px;
      border-radius:999px;
      background: radial-gradient(circle at 35% 35%, #ffffff, #22d3ee 35%, #0b74ff 70%);
      box-shadow: 0 0 0 4px rgba(34,211,238,.18);
    }
    .hero-badge span{
      font-weight:900;
      color: rgba(17,24,39,.88);
      font-size: 13px;
      letter-spacing:.2px;
      white-space:nowrap;
    }

    .hero-title{
      margin: 18px 0 10px;
      font-size: clamp(26px, 4vw, 42px);
      line-height: 1.12;
      letter-spacing: -0.6px;
      font-weight: 950;
    }

    .hero-sub{
      margin: 0 0 16px;
      color: var(--muted);
      line-height: 1.75;
      font-size: 15px;
      max-width: 62ch;
    }

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

    .hero-chips{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top: 10px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.58);
      color: rgba(17,24,39,.86);
      font-weight:800;
      font-size: 13px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease;
    }
    .chip:hover{
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(15,23,42,.10);
      border-color: rgba(11,116,255,.24);
    }
    .chip-ic{ color:#0b74ff; font-weight:900; }

    .hero-mini{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 18px;
      padding-top: 10px;
    }
    .mini-item{
      border-radius: 18px;
      border: 1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.56);
      padding: 12px 14px;
      box-shadow: 0 14px 30px rgba(15,23,42,.06);
    }
    .mini-title{
      font-weight: 950;
      letter-spacing:.2px;
      font-size: 13px;
      margin-bottom: 4px;
    }
    .mini-text{
      color: var(--muted2);
      font-size: 13px;
      line-height: 1.55;
    }

    .hero-right{
      display:flex;
      flex-direction:column;
      gap: 14px;
      padding-top: 6px;
    }

    .data-card{
      background: rgba(255,255,255,.74);
      border: 1px solid rgba(17,24,39,.10);
      border-radius: 22px;
      box-shadow: var(--shadow2);
      padding: 16px;
      position:relative;
      overflow:hidden;
      transform: translateZ(0);
      animation: floatIn .7s ease both;
    }
    @keyframes floatIn{
      from{ opacity:0; transform: translateY(10px); }
      to{ opacity:1; transform: translateY(0); }
    }
    .data-card:before{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(600px 220px at 20% -10%, rgba(34,211,238,.35), transparent 62%),
                  radial-gradient(520px 240px at 120% 0%, rgba(167,139,250,.30), transparent 55%);
      opacity:.9;
      pointer-events:none;
    }
    .data-card > *{ position:relative; z-index:1; }

    .data-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap: 10px;
      margin-bottom: 12px;
    }
    .data-title{
      font-weight: 950;
      letter-spacing:.2px;
      font-size: 16px;
      margin-top: 2px;
    }
    .data-tag{
      color: rgba(17,24,39,.72);
      font-size: 12.5px;
      font-weight: 800;
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(11,116,255,.15);
      background: rgba(255,255,255,.52);
      white-space:nowrap;
    }

    .data-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 12px;
    }
    .kpi{
      border-radius: 18px;
      border: 1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.55);
      padding: 12px 12px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .kpi:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 32px rgba(15,23,42,.10);
      border-color: rgba(11,116,255,.22);
    }
    .kpi-figure{
      font-weight: 950;
      letter-spacing:-0.2px;
      font-size: 16px;
      margin-bottom: 4px;
    }
    .kpi-label{
      color: var(--muted2);
      font-weight: 750;
      font-size: 12.5px;
      line-height: 1.35;
    }

    .data-actions{
      display:flex;
      align-items:center;
      gap: 10px;
      flex-wrap:wrap;
    }

    .capabilities{
      background: rgba(255,255,255,.70);
      border: 1px solid rgba(17,24,39,.10);
      border-radius: 22px;
      box-shadow: var(--shadow2);
      padding: 14px;
      overflow:hidden;
    }
    .cap-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap: 10px;
      margin-bottom: 10px;
    }
    .cap-title{
      font-weight: 950;
      letter-spacing:.2px;
      font-size: 16px;
    }
    .cap-sub{
      color: var(--muted2);
      font-size: 13px;
      font-weight: 800;
      margin-top: 2px;
      text-align:right;
    }
    .cap-list{
      display:flex;
      flex-direction:column;
      gap: 10px;
    }
    .cap-item{
      display:flex;
      gap: 12px;
      align-items:flex-start;
      padding: 12px 12px;
      border-radius: 18px;
      border: 1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.55);
      transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease;
    }
    .cap-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(15,23,42,.10);
      border-color: rgba(11,116,255,.22);
    }
    .cap-ic{
      width:26px; height:26px;
      border-radius: 10px;
      display:flex; align-items:center; justify-content:center;
      font-weight: 950;
      background: rgba(11,116,255,.10);
      color:#0b74ff;
      flex-shrink:0;
      margin-top: 2px;
    }
    .cap-name{
      font-weight: 950;
      margin-bottom: 4px;
      letter-spacing:.1px;
    }
    .cap-desc{
      color: var(--muted2);
      font-size: 13px;
      line-height: 1.55;
      font-weight: 650;
    }

    .cap-foot{
      display:flex;
      gap: 10px;
      margin-top: 12px;
      flex-wrap:wrap;
    }

    .section{
      padding: 46px 0;
    }
    .section-soft{
      background: linear-gradient(180deg, rgba(11,116,255,.06), rgba(255,255,255,0));
      border-top: 1px solid rgba(17,24,39,.06);
      border-bottom: 1px solid rgba(17,24,39,.06);
    }

    .section-head{
      display:flex;
      flex-direction:column;
      gap: 8px;
      margin-bottom: 18px;
    }
    .section-head h2{
      margin:0;
      font-size: 28px;
      letter-spacing:-.4px;
      font-weight: 950;
    }
    .section-head p{
      margin:0;
      color: var(--muted);
      line-height: 1.8;
      font-weight: 650;
      max-width: 75ch;
      font-size: 14.5px;
    }

    .split-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      align-items:stretch;
    }
    .text-card, .timeline-card{
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 18px 45px rgba(13,36,84,.08);
      padding: 18px;
      position:relative;
      overflow:hidden;
    }
    .text-card h3, .timeline-title{ font-size: 18px; margin: 2px 0 10px; font-weight: 950; }
    .text-card p{
      color: var(--muted);
      line-height: 1.8;
      margin: 0 0 14px;
      font-weight: 650;
    }

    .bullets{ display:flex; flex-direction:column; gap:10px; margin-bottom: 16px; }
    .bullet{
      display:flex; gap:10px; align-items:flex-start;
      color: rgba(17,24,39,.86);
      font-weight: 750;
      line-height: 1.6;
    }
    .b-ic{
      width:22px; height:22px;
      border-radius: 9px;
      background: rgba(34,197,94,.12);
      border:1px solid rgba(34,197,94,.22);
      display:flex; align-items:center; justify-content:center;
      color:#16a34a;
      font-weight: 950;
      flex-shrink:0;
      margin-top: 1px;
    }

    .cta-row{ display:flex; gap:10px; flex-wrap:wrap; }

    .timeline-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom: 8px;
    }
    .timeline-sub{
      color: var(--muted2);
      font-weight: 750;
      font-size: 13px;
      margin-top: 4px;
      line-height: 1.5;
    }
    .timeline-pill{
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(11,116,255,.15);
      background: rgba(11,116,255,.06);
      color:#0b74ff;
      font-weight: 950;
      font-size: 12.5px;
      white-space:nowrap;
      margin-top: 2px;
    }
    .timeline{ display:flex; flex-direction:column; gap: 12px; margin-top: 10px; }
    .t-item{
      display:flex; gap:12px;
      padding: 12px 12px;
      border-radius: 18px;
      border: 1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.55);
    }
    .t-dot{
      width:14px; height:14px; border-radius:999px;
      background: linear-gradient(135deg, #0b74ff, #22d3ee);
      box-shadow: 0 0 0 4px rgba(34,211,238,.16);
      margin-top: 3px;
      flex-shrink:0;
    }
    .t-title{ font-weight: 950; margin-bottom: 4px; }
    .t-desc{ color: var(--muted2); line-height: 1.6; font-weight: 650; font-size: 13.5px; }

    .timeline-bottom{
      display:flex;
      gap: 10px;
      flex-wrap:wrap;
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px solid rgba(17,24,39,.08);
    }

    .service-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      align-items:stretch;
    }
    .service-card{
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 18px 45px rgba(13,36,84,.08);
      padding: 16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease;
    }
    .service-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 24px 60px rgba(13,36,84,.14);
      border-color: rgba(11,116,255,.22);
    }
    .service-top{
      display:flex;
      align-items:center;
      gap: 12px;
      margin-bottom: 10px;
    }
    .service-ic{
      width:40px; height:40px;
      border-radius: 16px;
      background: rgba(11,116,255,.10);
      border: 1px solid rgba(11,116,255,.18);
      display:flex; align-items:center; justify-content:center;
      font-size: 18px;
      flex-shrink:0;
    }
    .service-name{ font-weight: 950; font-size: 16px; letter-spacing:-.2px; }
    .service-desc{
      margin: 0 0 12px;
      color: var(--muted);
      line-height: 1.8;
      font-weight: 650;
      font-size: 14px;
      min-height: 74px;
    }
    .service-tags{ display:flex; flex-wrap:wrap; gap:8px; }
    .tag{
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.60);
      color: rgba(17,24,39,.82);
      font-weight: 800;
      font-size: 12.5px;
    }

    .capability-row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .cap-block{
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 18px 45px rgba(13,36,84,.08);
      padding: 16px;
      position:relative;
      overflow:hidden;
    }
    .cap-block:before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(520px 240px at 15% 0%, rgba(11,116,255,.18), transparent 60%),
        radial-gradient(520px 240px at 110% 20%, rgba(34,197,94,.12), transparent 58%);
      opacity:.9;
      pointer-events:none;
    }
    .cap-block > *{ position:relative; z-index:1; }
    .cap-block h3{ margin: 2px 0 10px; font-weight: 950; font-size: 18px; letter-spacing:-.2px; }
    .cap-block p{ margin:0 0 14px; color: var(--muted); line-height:1.8; font-weight:650; }
    .cap-mini-actions{ display:flex; gap:10px; flex-wrap:wrap; }

    .tag-cloud{
      margin-top: 16px;
      display:flex;
      flex-wrap:wrap;
      gap: 10px;
      padding: 14px;
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 45px rgba(13,36,84,.06);
    }
    .cloud-item{
      text-decoration:none;
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(11,116,255,.16);
      background: rgba(11,116,255,.06);
      color:#0b74ff;
      font-weight: 900;
      font-size: 13px;
      transition: transform .18s ease, background .2s ease, border-color .2s ease;
    }
    .cloud-item:hover{
      transform: translateY(-2px);
      background: rgba(11,116,255,.12);
      border-color: rgba(11,116,255,.26);
    }

    .industry-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    .industry-card{
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 18px 45px rgba(13,36,84,.08);
      padding: 16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease;
    }
    .industry-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 24px 60px rgba(13,36,84,.14);
      border-color: rgba(11,116,255,.22);
    }
    .industry-top{
      display:flex; align-items:center; gap: 10px; margin-bottom: 10px;
    }
    .industry-ic{
      width:42px; height:42px; border-radius: 16px;
      background: rgba(34,197,94,.10);
      border: 1px solid rgba(34,197,94,.18);
      display:flex; align-items:center; justify-content:center;
      font-size: 18px;
      flex-shrink:0;
    }
    .industry-name{ font-weight: 950; font-size: 16px; letter-spacing:-.2px; }
    .clean-list{
      margin:0; padding-left: 18px;
      color: var(--muted);
      line-height: 1.8;
      font-weight: 650;
      font-size: 14px;
      display:flex; flex-direction:column; gap: 8px;
    }
    .clean-list-strong li{ color: rgba(17,24,39,.84); }

    .network-grid{
      display:grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 14px;
    }
    .network-card{
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 18px 45px rgba(13,36,84,.08);
      padding: 16px;
      overflow:hidden;
    }
    .network-title{ font-weight: 950; font-size: 18px; margin-bottom: 8px; }
    .network-desc{ color: var(--muted); line-height: 1.8; font-weight:650; margin-bottom: 14px; }
    .network-metas{ display:flex; flex-direction:column; gap: 10px; padding: 12px; border-radius: 18px; border: 1px solid rgba(17,24,39,.08); background: rgba(255,255,255,.58); }
    .meta-row{ display:flex; justify-content:space-between; gap: 12px; }
    .meta-k{ color: var(--muted2); font-weight: 800; font-size: 13px; }
    .meta-v{ font-weight: 950; font-size: 13px; color: rgba(17,24,39,.86); text-align:right; }
    .network-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px; }

    .model-slab{
      padding: 12px;
      border-radius: 18px;
      border: 1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.58);
    }
    .slab-head{
      display:flex; align-items:flex-start; justify-content:space-between; gap: 12px; margin-bottom: 12px;
    }
    .slab-title{ font-weight: 950; }
    .slab-sub{ color: var(--muted2); font-weight: 750; font-size: 13px; line-height: 1.5; text-align:right; }
    .slab-grid{
      display:flex; flex-wrap:wrap; gap: 8px;
      margin-bottom: 12px;
    }
    .slab-chip{
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(11,116,255,.16);
      background: rgba(11,116,255,.06);
      color:#0b74ff;
      font-weight: 900;
      font-size: 12.5px;
    }
    .slab-foot{
      display:flex; gap:10px; flex-wrap:wrap;
      padding-top: 12px;
      border-top: 1px solid rgba(17,24,39,.08);
    }

    .steps-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      align-items:stretch;
    }
    .step-card{
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 18px 45px rgba(13,36,84,.08);
      padding: 16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease;
      position:relative;
      overflow:hidden;
    }
    .step-card:before{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(460px 220px at 30% 0%, rgba(11,116,255,.18), transparent 60%);
      opacity:.9;
      pointer-events:none;
    }
    .step-card > *{ position:relative; z-index:1; }
    .step-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 24px 60px rgba(13,36,84,.14);
      border-color: rgba(11,116,255,.22);
    }
    .step-no{
      font-weight: 950;
      font-size: 14px;
      letter-spacing:.4px;
      color:#0b74ff;
      margin-bottom: 10px;
      background: rgba(11,116,255,.06);
      border: 1px solid rgba(11,116,255,.16);
      padding: 8px 10px;
      border-radius: 999px;
      display:inline-block;
    }
    .step-title{ font-weight: 950; font-size: 16px; margin-bottom: 8px; }
    .step-desc{ color: var(--muted); line-height: 1.8; font-weight:650; font-size: 14px; min-height: 64px; }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .case-card{
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 18px 45px rgba(13,36,84,.08);
      padding: 16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease;
      overflow:hidden;
      position:relative;
    }
    .case-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(440px 220px at 25% -10%, rgba(34,211,238,.20), transparent 60%),
        radial-gradient(420px 220px at 105% 20%, rgba(167,139,250,.15), transparent 58%);
      opacity:.9;
      pointer-events:none;
    }
    .case-card > *{ position:relative; z-index:1; }
    .case-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 24px 60px rgba(13,36,84,.14);
      border-color: rgba(11,116,255,.22);
    }
    .case-chip{
      display:inline-block;
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.58);
      font-weight: 950;
      color: rgba(17,24,39,.84);
      margin-bottom: 10px;
      font-size: 12.5px;
    }
    .case-title{ font-weight: 950; font-size: 16px; margin-bottom: 8px; letter-spacing:-.2px; }
    .case-desc{ color: var(--muted); line-height: 1.8; font-weight:650; font-size: 14px; min-height: 62px; }
    .case-metas{ display:flex; flex-wrap:wrap; gap: 8px; margin-top: 12px; }
    .case-meta{
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(11,116,255,.16);
      background: rgba(11,116,255,.06);
      color:#0b74ff;
      font-weight: 900;
      font-size: 12.5px;
    }

    .case-bottom{
      margin-top: 14px;
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 18px 45px rgba(13,36,84,.08);
      padding: 16px;
      display:flex; align-items:flex-start; justify-content:space-between; gap: 14px;
    }
    .case-bottom-title{ font-weight: 950; font-size: 18px; margin-bottom: 8px; }
    .case-bottom-desc{ color: var(--muted); line-height: 1.8; font-weight:650; }
    .case-bottom-right{ display:flex; gap:10px; flex-wrap:wrap; padding-top: 4px; }

    .compare-top{
      display:grid;
      grid-template-columns: .7fr 1.3fr;
      gap: 14px;
      align-items:stretch;
      margin-bottom: 14px;
    }
    .rating-card{
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 18px 45px rgba(13,36,84,.08);
      padding: 16px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .rating-row{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom: 8px; }
    .rating-stars{ color:#f59e0b; font-size: 20px; letter-spacing:2px; }
    .rating-figure{
      display:flex; align-items:baseline; gap:8px;
      font-weight: 1000;
    }
    .rating-number{
      font-size: 46px;
      line-height:1;
      background: linear-gradient(135deg, #0b74ff, #22d3ee);
      -webkit-background-clip:text;
      background-clip:text;
      color: transparent;
    }
    .rating-unit{ font-weight: 950; color: rgba(17,24,39,.82); font-size: 16px; }
    .rating-meta{ color: var(--muted2); font-weight: 850; }
    .compare-note{
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 18px 45px rgba(13,36,84,.08);
      padding: 16px;
    }
    .note-title{ font-weight: 950; font-size: 18px; margin-bottom: 8px; }
    .note-desc{ color: var(--muted); line-height: 1.8; font-weight:650; margin-bottom: 14px; }
    .note-actions{ display:flex; gap:10px; flex-wrap:wrap; }

    .compare-table-wrap{
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 18px 45px rgba(13,36,84,.08);
      padding: 12px;
    }
    .table-scroll{ overflow:auto; }
    .compare-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width: 860px;
      font-size: 14px;
    }
    .compare-table thead th{
      position:sticky; top:0;
      background: rgba(248,250,252,.92);
      backdrop-filter: blur(6px);
      text-align:left;
      padding: 12px 12px;
      border-bottom: 1px solid rgba(17,24,39,.10);
      color: rgba(17,24,39,.88);
      font-weight: 950;
      white-space:nowrap;
    }
    .compare-table tbody td{
      padding: 12px 12px;
      border-bottom: 1px solid rgba(17,24,39,.06);
      color: rgba(17,24,39,.86);
      vertical-align:top;
      line-height: 1.7;
      font-weight: 650;
    }
    .good-badge{
      display:inline-block;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(34,197,94,.12);
      border: 1px solid rgba(34,197,94,.22);
      color:#16a34a;
      font-weight: 950;
      margin-right: 8px;
      white-space:nowrap;
      font-size: 12.5px;
    }

    .compare-bottom{
      margin-top: 14px;
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 18px 45px rgba(13,36,84,.08);
      padding: 16px;
      display:flex; align-items:flex-start; justify-content:space-between; gap: 14px;
    }
    .compare-bottom-title{ font-weight: 950; font-size: 18px; margin-bottom: 8px; }
    .compare-bottom-desc{ color: var(--muted); line-height: 1.8; font-weight:650; }
    .compare-bottom-right{ display:flex; gap:10px; flex-wrap:wrap; padding-top: 4px; }

    .match-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items:start;
    }
    .form-card{
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 18px 45px rgba(13,36,84,.08);
      padding: 16px;
    }
    .form-head{ margin-bottom: 10px; }
    .form-title{ font-weight: 950; font-size: 18px; margin-bottom: 4px; }
    .form-sub{ color: var(--muted2); font-weight: 750; font-size: 13px; line-height: 1.5; }
    .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-text{
      font-weight: 900;
      color: rgba(17,24,39,.86);
      font-size: 13px;
    }
    input, select, textarea{
      width:100%;
      border-radius: 14px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.82);
      padding: 11px 12px;
      font-size: 14.5px;
      color: rgba(17,24,39,.90);
      outline:none;
      transition: border-color .2s ease, box-shadow .2s ease, transform .1s ease;
    }
    textarea{ resize: vertical; min-height: 110px; }
    input:focus, select:focus, textarea:focus{
      border-color: rgba(11,116,255,.35);
      box-shadow: 0 0 0 4px rgba(11,116,255,.10);
    }
    .form-foot{ display:flex; flex-direction:column; gap: 10px; }
    .form-hint{
      min-height: 18px;
      color:#0b74ff;
      font-weight: 800;
      font-size: 13px;
    }

    .micro-note{
      margin-top: 12px;
      border-radius: 18px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.60);
      padding: 12px 14px;
      box-shadow: 0 18px 45px rgba(13,36,84,.06);
      display:flex; gap:12px; align-items:flex-start;
    }
    .micro-badge{
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(11,116,255,.08);
      border: 1px solid rgba(11,116,255,.18);
      color:#0b74ff;
      font-weight: 950;
      font-size: 12.5px;
      flex-shrink:0;
      margin-top: 2px;
    }
    .micro-text{
      color: var(--muted2);
      font-weight: 750;
      line-height: 1.7;
      font-size: 13.5px;
    }

    .sticky-card{
      position: sticky;
      top: 92px;
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 18px 45px rgba(13,36,84,.08);
      padding: 16px;
      overflow:hidden;
    }
    .sticky-top{
      margin-bottom: 12px;
    }
    .sticky-title{ font-weight: 950; font-size: 18px; margin-bottom: 4px; }
    .sticky-sub{ color: var(--muted2); font-weight: 750; line-height:1.6; font-size: 13px; }
    .advice-list{ display:flex; flex-direction:column; gap: 10px; }
    .advice-item{
      display:flex; gap: 12px; align-items:flex-start;
      padding: 12px 12px;
      border-radius: 18px;
      border: 1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.58);
    }
    .advice-ic{
      width:36px; height:36px;
      border-radius: 16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(34,211,238,.10);
      border: 1px solid rgba(34,211,238,.20);
      font-size: 16px;
      flex-shrink:0;
    }
    .advice-name{ font-weight: 950; margin-bottom: 4px; }
    .advice-desc{ color: var(--muted2); font-weight: 700; line-height: 1.6; font-size: 13.5px; }
    .sticky-bottom{
      display:flex;
      gap: 10px;
      flex-wrap:wrap;
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px solid rgba(17,24,39,.08);
    }

    .poster-row{
      margin-top: 14px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .poster-card{
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 18px 45px rgba(13,36,84,.06);
      padding: 12px;
      overflow:hidden;
    }
    .poster-title{ font-weight: 950; margin-bottom: 10px; }
    .poster-images{
      display:flex;
      gap: 10px;
    }
    .poster-images img{
      width: 100%;
      height: 120px;
      object-fit: cover;
      border-radius: 16px;
      border: 1px solid rgba(17,24,39,.10);
      background:#fff;
    }
    .poster-square .poster-images img{
      height: 168px;
      object-fit: cover;
    }
    .poster-foot{
      margin-top: 10px;
      color: var(--muted2);
      font-weight: 750;
      font-size: 12.8px;
      line-height: 1.6;
    }

    .token-grid{
      display:grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 14px;
      align-items:stretch;
    }
    .token-card{
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 18px 45px rgba(13,36,84,.08);
      padding: 16px;
    }
    .token-title{ font-weight: 950; font-size: 18px; margin-bottom: 10px; }
    .token-quick{
      display:flex; flex-direction:column; gap:10px;
      margin-top: 12px;
      padding: 12px;
      border-radius: 18px;
      border: 1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.58);
    }
    .token-quick-row{ display:flex; gap: 10px; flex-wrap:wrap; }
    .token-pill{
      padding: 9px 11px;
      border-radius: 999px;
      border: 1px solid rgba(11,116,255,.16);
      background: rgba(11,116,255,.06);
      color:#0b74ff;
      font-weight: 900;
      font-size: 13px;
      white-space:nowrap;
    }
    .token-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px; }
    .token-table-card{ padding: 16px; }
    .mini-price-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width: 720px;
    }
    .mini-price-table th{
      text-align:left;
      padding: 12px 12px;
      border-bottom: 1px solid rgba(17,24,39,.10);
      color: rgba(17,24,39,.90);
      font-weight: 950;
      background: rgba(248,250,252,.92);
      white-space:nowrap;
      position: sticky;
      top: 0;
      backdrop-filter: blur(6px);
    }
    .mini-price-table td{
      padding: 12px 12px;
      border-bottom: 1px solid rgba(17,24,39,.06);
      color: rgba(17,24,39,.86);
      font-weight: 650;
      line-height: 1.7;
    }
    .price-level{
      display:inline-block;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(245,158,11,.12);
      border: 1px solid rgba(245,158,11,.22);
      color:#b45309;
      font-weight: 950;
      font-size: 12.5px;
    }
    .token-table-foot{ margin-top: 10px; }
    .fine-text{ color: var(--muted2); font-weight: 750; font-size: 12.5px; }

    .train-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items:stretch;
    }
    .train-card{
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 18px 45px rgba(13,36,84,.08);
      padding: 16px;
      overflow:hidden;
    }
    .train-right{ background: rgba(255,255,255,.70); }
    .train-title{ font-weight: 950; font-size: 18px; margin-bottom: 10px; }
    .train-list{ display:flex; flex-direction:column; gap: 10px; }
    .train-item{
      padding: 12px 12px;
      border-radius: 18px;
      border: 1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.58);
      font-weight: 900;
      color: rgba(17,24,39,.86);
      line-height: 1.4;
    }
    .train-note{ margin-top: 12px; color: var(--muted); font-weight: 700; line-height: 1.8; }
    .train-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px; }

    .help-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    .help-card{
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 18px 45px rgba(13,36,84,.08);
      padding: 16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease;
      display:flex;
      flex-direction:column;
      gap: 10px;
    }
    .help-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 24px 60px rgba(13,36,84,.14);
      border-color: rgba(11,116,255,.22);
    }
    .help-title{ font-weight: 950; font-size: 16px; }
    .help-desc{ color: var(--muted); line-height: 1.8; font-weight: 650; font-size: 14px; flex: 1; }

    .faq-grid{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 12px;
    }
    .faq-col{
      display:flex;
      flex-direction:column;
      gap: 10px;
    }
    .faq-item{
      width:100%;
      text-align:left;
      border-radius: 18px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 12px 28px rgba(13,36,84,.06);
      padding: 12px 12px;
      cursor:pointer;
      display:flex; align-items:center; justify-content:space-between; gap: 12px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .2s ease, background .2s ease;
      font-weight: 950;
      color: rgba(17,24,39,.90);
      outline:none;
    }
    .faq-item:hover{
      transform: translateY(-2px);
      border-color: rgba(11,116,255,.22);
      box-shadow: 0 18px 40px rgba(13,36,84,.10);
    }
    .faq-q{ font-size: 14.5px; line-height: 1.4; }
    .faq-ic{
      width:34px; height:34px;
      border-radius: 14px;
      border: 1px solid rgba(11,116,255,.18);
      background: rgba(11,116,255,.06);
      color:#0b74ff;
      display:flex; align-items:center; justify-content:center;
      font-size: 18px;
      flex-shrink:0;
      transition: transform .18s ease;
    }
    .faq-panel{
      max-height: 0;
      overflow:hidden;
      transition: max-height .25s ease;
    }
    .faq-a{
      padding: 0 12px 12px;
      border-radius: 0 0 18px 18px;
      color: var(--muted);
      line-height: 1.8;
      font-weight: 650;
      font-size: 14px;
      background: rgba(255,255,255,.74);
      border-left: 1px solid rgba(17,24,39,.10);
      border-right: 1px solid rgba(17,24,39,.10);
      border-bottom: 1px solid rgba(17,24,39,.10);
    }
    .faq-bottom{
      margin-top: 14px;
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 18px 45px rgba(13,36,84,.08);
      padding: 16px;
      display:flex; align-items:flex-start; justify-content:space-between; gap: 14px;
    }
    .faq-bottom-title{ font-weight: 950; font-size: 18px; margin-bottom: 8px; }
    .faq-bottom-desc{ color: var(--muted); line-height: 1.8; font-weight:650; }
    .faq-bottom-right{ display:flex; gap:10px; flex-wrap:wrap; padding-top: 4px; }

    .wiki-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    .wiki-card{
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 18px 45px rgba(13,36,84,.08);
      padding: 16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease;
    }
    .wiki-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 24px 60px rgba(13,36,84,.14);
      border-color: rgba(11,116,255,.22);
    }
    .wiki-title{ font-weight: 950; margin-bottom: 10px; font-size: 16px; }
    .wiki-desc{ color: var(--muted); font-weight: 650; line-height: 1.8; font-size: 14px; }

    .news-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 14px;
      align-items:stretch;
    }
    .news-card{
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 18px 45px rgba(13,36,84,.08);
      padding: 16px;
      overflow:hidden;
    }
    .news-spot{ background: rgba(255,255,255,.70); }
    .news-title{ font-weight: 950; font-size: 18px; margin-bottom: 12px; }
    .news-list{ display:flex; flex-direction:column; gap: 10px; }
    .news-item{
      text-decoration:none;
      padding: 12px 12px;
      border-radius: 18px;
      border: 1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.58);
      color: rgba(17,24,39,.88);
      font-weight: 850;
      line-height: 1.6;
      transition: transform .15s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .news-item:hover{
      transform: translateY(-2px);
      border-color: rgba(11,116,255,.22);
      box-shadow: 0 18px 40px rgba(13,36,84,.10);
      background: rgba(11,116,255,.06);
      color:#0b74ff;
    }
    .news-bottom{ margin-top: 14px; }
    .spot-images{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
    }
    .spot-images img{
      width:100%;
      height: 170px;
      object-fit: cover;
      border-radius: 18px;
      border: 1px solid rgba(17,24,39,.10);
    }
    .spot-meta{
      display:flex; flex-direction:column; gap: 10px;
    }
    .spot-line{
      display:flex; justify-content:space-between; gap: 12px;
      padding: 10px 12px;
      border-radius: 18px;
      border: 1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.58);
      color: rgba(17,24,39,.88);
      font-weight: 800;
    }
    .spot-k{ color: var(--muted2); }
    .spot-v{ text-align:right; }
    .spot-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 6px; }

    .contact-grid{
      display:grid;
      grid-template-columns: 1.35fr .65fr;
      gap: 14px;
      align-items:start;
    }
    .contact-card{
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 18px 45px rgba(13,36,84,.08);
      padding: 16px;
    }
    .contact-title{ font-weight: 950; font-size: 18px; margin-bottom: 8px; }
    .contact-desc{ color: var(--muted); font-weight:650; line-height: 1.8; margin-bottom: 10px; }
    .contact-divider{ height:1px; background: rgba(17,24,39,.08); margin: 10px 0 12px; }

    .contact-aside{
      display:flex;
      flex-direction:column;
      gap: 14px;
    }
    .aside-top{
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 18px 45px rgba(13,36,84,.08);
      padding: 16px;
      overflow:hidden;
    }
    .aside-title{ font-weight: 950; font-size: 18px; margin-bottom: 8px; }
    .aside-sub{ color: var(--muted); font-weight:650; line-height: 1.8; margin-bottom: 12px; }
    .qr-wrap{
      display:flex; align-items:center; justify-content:center;
      padding: 12px;
      border-radius: 18px;
      border: 1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.58);
      margin-bottom: 12px;
    }
    .qr-wrap img{
      width: 180px;
      max-width: 100%;
      height: auto;
      border-radius: 14px;
      border: 1px solid rgba(17,24,39,.10);
      background:#fff;
    }
    .aside-meta{ display:flex; flex-direction:column; gap: 10px; }
    .meta-line{
      display:flex; justify-content:space-between; gap:12px;
      padding: 10px 12px;
      border-radius: 18px;
      border: 1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.58);
      font-weight: 850;
      color: rgba(17,24,39,.88);
    }
    .meta-k{ color: var(--muted2); font-weight: 800; }
    .meta-v{ text-align:right; font-weight: 950; }
    .aside-links{
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 18px 45px rgba(13,36,84,.08);
      padding: 16px;
    }
    .pill-row{ display:flex; flex-direction:column; gap:10px; margin-top: 10px; }
    .pill{
      padding: 10px 12px;
      border-radius: 18px;
      border: 1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.58);
      font-weight: 850;
      color: rgba(17,24,39,.86);
      line-height: 1.6;
    }

    .join-grid{
      display:grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 14px;
      align-items:stretch;
    }
    .join-card{
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 18px 45px rgba(13,36,84,.08);
      padding: 16px;
      overflow:hidden;
    }
    .join-title{ font-weight: 950; font-size: 18px; margin-bottom: 12px; }
    .join-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px; }
    .support-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .support-item{
      border-radius: 18px;
      border: 1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.58);
      padding: 12px;
      display:flex; flex-direction:column; gap: 8px;
    }
    .support-ic{
      width:36px; height:36px; border-radius: 16px;
      background: rgba(11,116,255,.08);
      border:1px solid rgba(11,116,255,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight: 1000;
      color:#0b74ff;
    }
    .support-title{ font-weight: 950; }
    .support-desc{ color: var(--muted2); font-weight: 750; line-height: 1.6; font-size: 13.5px; }

    .join-foot{
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid rgba(17,24,39,.08);
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap: 12px;
    }
    .join-foot-title{ font-weight: 950; font-size: 16px; margin-bottom: 6px; }
    .join-foot-desc{ color: var(--muted); font-weight:650; line-height: 1.8; }

    .client-section{
      margin-top: 14px;
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 18px 45px rgba(13,36,84,.06);
      padding: 16px;
    }
    .client-head{ display:flex; align-items:flex-end; justify-content:space-between; gap: 12px; margin-bottom: 14px; }
    .client-title{ font-weight: 950; font-size: 22px; letter-spacing:-.3px; }
    .client-sub{ color: var(--muted2); font-weight: 750; line-height: 1.6; font-size: 13.5px; text-align:right; }

    .client-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    .review-card{
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 14px 34px rgba(13,36,84,.06);
      padding: 14px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease;
    }
    .review-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 24px 60px rgba(13,36,84,.14);
      border-color: rgba(11,116,255,.22);
    }
    .review-top{
      display:flex; align-items:center; gap: 12px; margin-bottom: 10px;
    }
    .review-avatar{
      width:44px; height:44px; border-radius: 18px;
      background: rgba(11,116,255,.10);
      border: 1px solid rgba(11,116,255,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight: 1000;
      color:#0b74ff;
      flex-shrink:0;
    }
    .review-name{ font-weight: 950; }
    .review-meta{ color: var(--muted2); font-weight: 800; font-size: 13px; margin-top: 2px; }
    .review-text{ color: var(--muted); line-height: 1.85; font-weight:650; font-size: 14px; min-height: 88px; }
    .review-stars{ color:#f59e0b; letter-spacing:2px; font-size: 14px; margin-top: 10px; }

    .footer-links-section{
      padding-top: 28px;
      padding-bottom: 26px;
    }
    .links-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      padding: 14px;
      border-radius: 22px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 18px 45px rgba(13,36,84,.06);
    }
    .links-grid a{
      text-decoration:none;
      padding: 12px 12px;
      border-radius: 18px;
      border: 1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.58);
      color: rgba(17,24,39,.86);
      font-weight: 900;
      font-size: 13.5px;
      line-height: 1.4;
      transition: transform .15s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, background .2s ease;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .links-grid a:hover{
      transform: translateY(-2px);
      border-color: rgba(11,116,255,.22);
      color:#0b74ff;
      background: rgba(11,116,255,.06);
      box-shadow: 0 18px 40px rgba(13,36,84,.10);
    }

    .site-footer{
      border-top: 1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.76);
    }
    .footer-inner{
      display:grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 14px;
      padding: 26px 0 18px;
      align-items:start;
    }
    .footer-left{ padding-right: 10px; }
    .footer-brand img{ width: 160px; height:auto; }
    .footer-text{ color: var(--muted2); font-weight: 750; margin-top: 10px; line-height: 1.7; }
    .footer-contact{ display:flex; flex-wrap:wrap; gap: 10px; margin-top: 12px; }
    .footer-pill{
      padding: 10px 12px;
      border-radius: 18px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.58);
      color: rgba(17,24,39,.86);
      font-weight: 900;
      font-size: 13px;
    }

    .footer-right{ display:flex; flex-direction:column; gap: 12px; }
    .footer-nav{
      display:flex;
      flex-wrap:wrap;
      gap: 10px;
    }
    .footer-nav a{
      text-decoration:none;
      color: rgba(17,24,39,.86);
      font-weight: 850;
      padding: 10px 12px;
      border-radius: 16px;
      border: 1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.58);
      transition: transform .15s ease, border-color .2s ease, color .2s ease, background .2s ease;
      font-size: 13px;
      white-space:nowrap;
    }
    .footer-nav a:hover{
      transform: translateY(-2px);
      border-color: rgba(11,116,255,.22);
      color:#0b74ff;
      background: rgba(11,116,255,.06);
    }
    .footer-actions{
      display:flex;
      gap: 10px;
      flex-wrap:wrap;
    }
    .footer-bottom{
      display:flex; justify-content:space-between; gap: 12px;
      padding-top: 12px;
      border-top: 1px solid rgba(17,24,39,.08);
      align-items:center;
      margin-top: 6px;
    }
    .copyright{
      color: var(--muted2);
      font-weight: 800;
      font-size: 13px;
      line-height: 1.6;
    }
    .footer-legal{
      color: var(--muted2);
      font-weight: 850;
      font-size: 13px;
      display:flex; align-items:center; gap: 8px;
    }
    .footer-legal-link{
      color: rgba(17,24,39,.86);
      text-decoration:none;
      padding: 8px 10px;
      border-radius: 14px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.58);
      transition: transform .15s ease, border-color .2s ease, color .2s ease;
      white-space:nowrap;
    }
    .footer-legal-link:hover{
      transform: translateY(-2px);
      border-color: rgba(11,116,255,.22);
      color:#0b74ff;
    }
    .sep{ opacity:.7; }

    .back-to-top{
      position: fixed;
      right: 16px;
      bottom: 22px;
      z-index: 40;
      opacity: 0;
      pointer-events:none;
      transition: opacity .2s ease;
    }
    .to-top-btn{
      border-radius: 18px;
      padding: 12px 14px;
      border: 1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 45px rgba(13,36,84,.16);
      color: rgba(17,24,39,.90);
      font-weight: 950;
      cursor:pointer;
      display:flex;
      align-items:center;
      gap:10px;
      transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .to-top-btn:hover{
      transform: translateY(-2px);
      border-color: rgba(11,116,255,.22);
      box-shadow: 0 24px 60px rgba(13,36,84,.22);
    }

    .floating-customer{
      position: fixed;
      left: 14px;
      bottom: 18px;
      z-index: 40;
    }
    .float-link{
      display:flex; align-items:center; gap: 10px;
      padding: 12px 14px;
      border-radius: 18px;
      background: rgba(11,116,255,.10);
      border: 1px solid rgba(11,116,255,.22);
      box-shadow: 0 18px 45px rgba(13,36,84,.14);
      text-decoration:none;
      color:#0b74ff;
      font-weight: 1000;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
      backdrop-filter: blur(8px);
    }
    .float-link:hover{
      transform: translateY(-2px);
      background: rgba(11,116,255,.14);
      box-shadow: 0 24px 60px rgba(13,36,84,.22);
    }
    .float-ic{
      width:34px; height:34px;
      border-radius: 14px;
      background: rgba(255,255,255,.74);
      border: 1px solid rgba(17,24,39,.10);
      display:flex; align-items:center; justify-content:center;
    }
    .float-text{ white-space:nowrap; }

    @media (max-width: 980px){
      .nav-desktop{ display:none; }
      .btn-nav-open{ display:inline-flex; }
      .hero-inner{ grid-template-columns: 1fr; }
      .hero-mini{ grid-template-columns: 1fr; }
      .split-grid{ grid-template-columns: 1fr; }
      .service-grid{ grid-template-columns: 1fr 1fr; }
      .industry-grid{ grid-template-columns: 1fr 1fr; }
      .network-grid{ grid-template-columns: 1fr; }
      .steps-grid{ grid-template-columns: 1fr 1fr; }
      .case-grid{ grid-template-columns: 1fr 1fr; }
      .compare-top{ grid-template-columns: 1fr; }
      .match-grid{ grid-template-columns: 1fr; }
      .sticky-card{ position: relative; top:auto; }
      .poster-row{ grid-template-columns: 1fr; }
      .token-grid{ grid-template-columns: 1fr; }
      .train-grid{ grid-template-columns: 1fr; }
      .help-grid{ grid-template-columns: 1fr 1fr; }
      .faq-grid{ grid-template-columns: 1fr; }
      .faq-col{ display:flex; flex-direction:column; gap:10px; }
      .wiki-grid{ grid-template-columns: 1fr 1fr; }
      .news-grid{ grid-template-columns: 1fr; }
      .contact-grid{ grid-template-columns: 1fr; }
      .join-grid{ grid-template-columns: 1fr; }
      .client-grid{ grid-template-columns: 1fr; }
      .links-grid{ grid-template-columns: 1fr 1fr; }
      .footer-inner{ grid-template-columns: 1fr; }
      .footer-bottom{ flex-direction:column; align-items:flex-start; }
      .drawer-grid{ grid-template-columns: 1fr; }
      .drawer-col{ gap:6px; }
      .hero-right{ padding-top: 0; }
    }

    @media (prefers-reduced-motion: reduce){
      *{ scroll-behavior:auto !important; transition:none !important; animation:none !important; }
    }