:root{
      --bg0:#ffffff;
      --bg1:#f6f7fb;
      --bg2:#f1f3fb;
      --text:#1b1f2a;
      --muted:#5b6476;
      --muted2:#7b859a;
      --line:rgba(18,25,36,.10);
      --card:#ffffff;
      --shadow:0 18px 50px rgba(16,24,40,.10);
      --shadow2:0 10px 30px rgba(16,24,40,.10);
      --radius:18px;
      --radius2:14px;
      --primary:#165dff;
      --primary2:#5b7cfa;
      --accent:#16c6a7;
      --accent2:#12a7ff;
      --warm:#ff7a3d;
      --soft:#f0f6ff;
      --soft2:#ecfff8;
      --focus: rgba(22,93,255,.22);
      --max: 1120px;
    }

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

    .page-bg{
      position:fixed;
      inset:0;
      pointer-events:none;
      z-index:-1;
      background:
        radial-gradient(1000px 420px at 15% 0%, rgba(22,198,167,.18), transparent 52%),
        radial-gradient(900px 420px at 88% 12%, rgba(22,93,255,.18), transparent 55%),
        radial-gradient(900px 520px at 55% 35%, rgba(255,122,61,.10), transparent 55%),
        linear-gradient(180deg, rgba(241,243,251,.65), rgba(255,255,255,0));
      filter: saturate(1.05);
    }

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

    .skip-link{
      position:absolute;
      left:-999px;
      top:10px;
      background:#fff;
      color:#000;
      padding:10px 12px;
      border-radius:10px;
      border:1px solid var(--line);
      z-index:1000;
    }
    .skip-link:focus{ left:14px; outline:none; box-shadow:0 0 0 4px var(--focus); }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background: rgba(255,255,255,.78);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(18,25,36,.08);
    }
    .header-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 260px;
    }
    .brand-link{ display:flex; align-items:center; gap:10px; text-decoration:none; }
    .ai-page-logo{ width:44px; height:44px; border-radius:12px; object-fit:contain; background: #fff; border:1px solid rgba(18,25,36,.08); padding:6px; }
    .brand-meta{ line-height:1.1; }
    .brand-name{ font-weight:800; letter-spacing:.2px; }
    .brand-sub{ margin-top:4px; font-size:12px; color:var(--muted); }

    .nav-desktop{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:16px;
      flex:1;
      padding:0 10px;
      flex-wrap:wrap;
    }
    .nav-item{
      text-decoration:none;
      color:var(--muted);
      font-size:14px;
      font-weight:650;
      padding:8px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, color 160ms ease;
    }
    .nav-item:hover{
      color:var(--text);
      background: rgba(22,93,255,.06);
      border-color: rgba(22,93,255,.18);
      transform: translateY(-1px);
    }

    .header-actions{ display:flex; align-items:center; gap:10px; }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      text-decoration:none;
      font-weight:750;
      border-radius:14px;
      padding:12px 16px;
      border:1px solid transparent;
      transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
      cursor:pointer;
      user-select:none;
      white-space:nowrap;
    }
    .btn:focus{ outline:none; box-shadow:0 0 0 4px var(--focus); }
    .btn-primary{
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 55%, #7a5cff 110%);
      color:#fff;
      box-shadow: 0 10px 25px rgba(22,93,255,.25);
      border-color: rgba(255,255,255,.18);
    }
    .btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 16px 34px rgba(22,93,255,.28); }
    .btn-ghost{
      background: rgba(255,255,255,.8);
      border-color: rgba(18,25,36,.12);
      color:var(--text);
      box-shadow: 0 8px 20px rgba(16,24,40,.06);
    }
    .btn-ghost:hover{ transform: translateY(-1px); border-color: rgba(22,93,255,.22); }
    .btn-lg{ padding:14px 18px; border-radius:16px; }
    .btn-full{ width:100%; }
    .btn-arrow{ margin-left:4px; font-weight:900; opacity:.95; }

    .icon-btn{
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid rgba(18,25,36,.12);
      background: rgba(255,255,255,.86);
      cursor:pointer;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
      box-shadow: 0 8px 18px rgba(16,24,40,.06);
    }
    .icon-btn:hover{ transform: translateY(-1px); border-color: rgba(22,93,255,.22); }
    .icon-btn:focus{ outline:none; box-shadow:0 0 0 4px var(--focus); }

    .icon-burger{
      width:18px; height:12px; position:relative; display:block;
    }
    .icon-burger::before,.icon-burger::after{
      content:""; position:absolute; left:0; right:0; height:2px; background: var(--text); border-radius:2px;
    }
    .icon-burger::before{ top:0; box-shadow: 0 5px 0 rgba(27,31,42,1), 0 10px 0 rgba(27,31,42,1); }
    .icon-burger::after{ display:none; }

    .icon-close{
      width:18px; height:18px; position:relative; display:block;
    }
    .icon-close::before,.icon-close::after{
      content:""; position:absolute; inset:0; margin:auto; width:18px; height:2px; background: var(--text); border-radius:2px;
      top:8px;
    }
    .icon-close::before{ transform: rotate(45deg); }
    .icon-close::after{ transform: rotate(-45deg); }

    .mobile-nav{
      display:none;
      position:fixed;
      inset:0;
      background: rgba(13,18,28,.42);
      backdrop-filter: blur(6px);
      z-index:80;
    }
    .mobile-nav.open{ display:block; }
    .mobile-nav-inner{
      position:absolute;
      right:0; top:0; bottom:0;
      width:min(420px, 92vw);
      background: rgba(255,255,255,.96);
      border-left: 1px solid rgba(18,25,36,.10);
      padding:14px 14px 16px;
      overflow:auto;
      box-shadow: -20px 0 60px rgba(0,0,0,.12);
    }
    .mobile-row{ display:flex; align-items:center; justify-content:space-between; gap:10px; padding:6px 2px 12px; border-bottom:1px solid rgba(18,25,36,.08); }
    .mobile-title{ font-weight:900; letter-spacing:.2px; }
    .mobile-links{ display:flex; flex-direction:column; gap:8px; padding:14px 2px; }
    .mobile-link{
      text-decoration:none;
      color:var(--text);
      font-weight:750;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.9);
      transition: transform 160ms ease, border-color 160ms ease;
    }
    .mobile-link:hover{ transform: translateY(-1px); border-color: rgba(22,93,255,.22); }
    .mobile-cta{ display:flex; gap:10px; padding:10px 2px 0; flex-direction:column; }

    .hero{
      position:relative;
      padding:46px 0 0;
    }
    .hero-inner{
      display:grid;
      grid-template-columns: 1.22fr .78fr;
      gap:22px;
      align-items:start;
      padding:18px 0 20px;
    }
    .hero-left{ padding:10px 0; }
    .hero-badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(18,25,36,.10);
      box-shadow: 0 10px 28px rgba(16,24,40,.06);
      color:var(--muted);
      font-weight:750;
      font-size:13px;
    }
    .badge-dot{
      width:10px; height:10px;
      border-radius:50%;
      background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,.1) 35%), linear-gradient(135deg, var(--accent) 0%, #4b8cff 55%, #7a5cff 110%);
      box-shadow: 0 0 0 6px rgba(22,198,167,.12);
    }
    .hero-title{
      margin:18px 0 10px;
      font-size: clamp(30px, 3.4vw, 48px);
      line-height:1.08;
      letter-spacing:-.7px;
      font-weight:950;
    }
    .hero-desc{
      color:var(--muted);
      font-size:16px;
      line-height:1.7;
      margin:0;
      max-width: 640px;
    }
    .hero-cta{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:18px;
      align-items:center;
    }

    .hero-quick{
      margin-top:18px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }
    .quick-item{
      flex: 1 1 220px;
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(18,25,36,.08);
      background: rgba(255,255,255,.75);
      box-shadow: 0 10px 26px rgba(16,24,40,.06);
      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    }
    .quick-item:hover{ transform: translateY(-2px); border-color: rgba(22,93,255,.18); box-shadow: 0 16px 40px rgba(16,24,40,.10); }
    .quick-icon{
      width:34px; height:34px;
      border-radius:12px;
      border:1px solid rgba(22,93,255,.18);
      background: linear-gradient(135deg, rgba(22,93,255,.12), rgba(22,198,167,.10));
      display:flex; align-items:center; justify-content:center;
      color: var(--primary);
    }
    .quick-title{ font-weight:900; }
    .quick-sub{ margin-top:4px; color:var(--muted2); font-size:13px; line-height:1.4; }

    .hero-right{ position:relative; }
    .data-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
      margin-top:6px;
    }

    .metric-card{
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
      padding:16px 16px 14px;
      overflow:hidden;
      position:relative;
      transform: translateY(12px);
      opacity:0;
      transition: opacity 520ms ease, transform 520ms ease;
    }
    .metric-card::before{
      content:"";
      position:absolute;
      inset:-80px -80px auto auto;
      width:180px; height:180px;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.85), rgba(255,255,255,0) 55%),
                  conic-gradient(from 210deg, rgba(22,93,255,.30), rgba(22,198,167,.22), rgba(255,122,61,.18), rgba(22,93,255,.30));
      border-radius:50%;
      filter: blur(2px);
      opacity:.55;
      pointer-events:none;
    }

    .metric-card.in-view{ opacity:1; transform: translateY(0); }
    .metric-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
    .metric-kicker{ color:var(--muted); font-weight:800; font-size:13px; }
    .metric-pill{
      font-weight:900;
      font-size:12px;
      padding:6px 10px;
      border-radius:999px;
      color: #0e2c66;
      background: rgba(22,93,255,.10);
      border:1px solid rgba(22,93,255,.20);
    }
    .metric-pill.alt{
      color:#0a3b34;
      background: rgba(22,198,167,.12);
      border-color: rgba(22,198,167,.22);
    }
    .metric-pill.warm{
      color:#5a230a;
      background: rgba(255,122,61,.14);
      border-color: rgba(255,122,61,.22);
    }
    .metric-value{
      margin-top:10px;
      font-weight:950;
      font-size:20px;
      letter-spacing:-.3px;
    }
    .metric-desc{
      margin-top:6px;
      color:var(--muted2);
      line-height:1.5;
      font-size:13px;
    }

    .hero-form-card{
      margin-top:12px;
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.70));
      box-shadow: 0 18px 55px rgba(16,24,40,.10);
      padding:16px;
      transform: translateY(14px);
      opacity:0;
      transition: opacity 520ms ease, transform 520ms ease;
    }
    .hero-form-card.in-view{ opacity:1; transform: translateY(0); }
    .form-card-head{ margin-bottom:12px; }
    .form-card-title{ font-weight:950; font-size:16px; letter-spacing:-.2px; }
    .form-card-sub{ margin-top:6px; color:var(--muted); line-height:1.5; font-size:13px; }

    .quick-form{ display:flex; flex-direction:column; gap:10px; }
    .form-row{ display:flex; gap:10px; flex-wrap:wrap; }
    .field{ display:flex; flex-direction:column; gap:8px; flex:1 1 180px; }
    .field-label{ font-weight:850; font-size:12px; color:var(--muted); }
    .input,.textarea{
      border:1px solid rgba(18,25,36,.12);
      background:#fff;
      border-radius:14px;
      padding:12px 12px;
      font-size:14px;
      color:var(--text);
      outline:none;
      transition: box-shadow 160ms ease, border-color 160ms ease;
    }
    .textarea{ resize:vertical; min-height:110px; }
    .input:focus,.textarea:focus{
      border-color: rgba(22,93,255,.35);
      box-shadow: 0 0 0 4px rgba(22,93,255,.16);
    }

    .form-hint{ color:var(--muted2); font-size:12px; line-height:1.45; margin-top:4px; }

    .hero-bottom-strip{
      margin-top:18px;
      padding:16px 0;
      border-top: 1px solid rgba(18,25,36,.08);
      border-bottom: 1px solid rgba(18,25,36,.08);
      background: linear-gradient(90deg, rgba(22,93,255,.06), rgba(22,198,167,.05), rgba(255,122,61,.04));
    }
    .strip-inner{
      display:flex;
      gap:12px;
      align-items:center;
      justify-content:space-between;
      flex-wrap:wrap;
    }
    .strip-item{
      display:flex; align-items:center; gap:10px;
      font-weight:850;
      color:var(--muted);
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(18,25,36,.08);
      background: rgba(255,255,255,.65);
    }
    .strip-dot{
      width:10px; height:10px;
      border-radius:50%;
      background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 55%, #7a5cff 110%);
      box-shadow: 0 0 0 6px rgba(22,93,255,.10);
    }

    .section{
      padding:56px 0;
    }
    .section.alt{
      background: linear-gradient(180deg, rgba(246,247,251,.55), rgba(255,255,255,0));
      border-top: 1px solid rgba(18,25,36,.06);
      border-bottom: 1px solid rgba(18,25,36,.06);
    }
    .section-head{ margin-bottom:22px; }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-weight:950;
      color: var(--primary);
      letter-spacing:.2px;
      font-size:13px;
      text-transform:none;
      margin-bottom:10px;
    }
    .h2{
      margin:0;
      font-size: clamp(22px, 2.4vw, 32px);
      line-height:1.2;
      letter-spacing:-.5px;
      font-weight:950;
    }
    .h3{
      margin:12px 0 8px;
      font-size:16px;
      font-weight:950;
      letter-spacing:-.2px;
    }
    .muted{ margin:10px 0 0; color:var(--muted); line-height:1.75; font-size:15px; max-width: 820px; }

    .appear{ transform: translateY(14px); opacity:0; transition: opacity 520ms ease, transform 520ms ease; }
    .appear.in-view{ transform: translateY(0); opacity:1; }
    .delay-1{ transition-delay: 70ms; }
    .delay-2{ transition-delay: 140ms; }
    .delay-3{ transition-delay: 210ms; }
    .delay-4{ transition-delay: 260ms; }
    .delay-5{ transition-delay: 310ms; }

    .feature-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
      align-items:stretch;
    }
    .feature-card{
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.76);
      box-shadow: 0 18px 50px rgba(16,24,40,.07);
      padding:18px 18px 16px;
      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
      min-height: 220px;
    }
    .feature-card:hover{ transform: translateY(-3px); border-color: rgba(22,93,255,.20); box-shadow: 0 22px 60px rgba(16,24,40,.10); }
    .feature-icon{
      width:44px; height:44px;
      border-radius:16px;
      display:flex;
      align-items:center; justify-content:center;
      color: var(--primary);
      background: linear-gradient(135deg, rgba(22,93,255,.12), rgba(22,198,167,.10));
      border:1px solid rgba(22,93,255,.18);
    }
    .feature-tags{ margin-top:14px; display:flex; gap:8px; flex-wrap:wrap; }
    .tag{
      font-weight:850;
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.85);
      color: var(--muted);
    }

    .service-grid{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap:14px;
      align-items:stretch;
    }
    .service-card{
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 18px 55px rgba(16,24,40,.07);
      padding:18px;
      transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
      min-height: 250px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .service-card:hover{ transform: translateY(-3px); border-color: rgba(22,93,255,.20); box-shadow: 0 24px 70px rgba(16,24,40,.10); }
    .service-top{ margin-bottom:10px; }
    .service-title{ font-weight:950; letter-spacing:-.25px; font-size:16px; }
    .service-meta{ margin-top:6px; color:var(--muted); font-size:13px; font-weight:750; }
    .list{ list-style:none; padding:0; margin:12px 0 0; display:flex; flex-direction:column; gap:10px; }
    .list li{ display:flex; gap:10px; align-items:flex-start; color:var(--muted); line-height:1.45; font-weight:650; }
    .check{
      width:18px; height:18px; border-radius:6px;
      background: linear-gradient(135deg, rgba(22,93,255,.18), rgba(22,198,167,.14));
      border:1px solid rgba(22,93,255,.18);
      display:inline-flex; align-items:center; justify-content:center;
      margin-top:2px;
      flex:0 0 auto;
      position:relative;
    }
    .check::after{
      content:"";
      width:8px; height:4px;
      border-left:2px solid rgba(22,93,255,.95);
      border-bottom:2px solid rgba(22,93,255,.95);
      transform: rotate(-45deg);
      position:absolute;
      left:5px; top:5px;
    }
    .service-actions{ margin-top:14px; }
    .link-pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      text-decoration:none;
      font-weight:900;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(22,93,255,.20);
      background: rgba(22,93,255,.08);
      color: var(--primary);
      transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
      white-space:nowrap;
    }
    .link-pill:hover{ transform: translateY(-1px); border-color: rgba(22,93,255,.32); background: rgba(22,93,255,.12); }
    .link-text{ color: var(--primary); font-weight:900; text-decoration:none; }
    .link-text:hover{ text-decoration:underline; }

    .timeline{
      position:relative;
      padding:10px 0;
      margin-top:8px;
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap:14px;
    }
    .timeline-line{
      position:absolute;
      left:50%;
      top:26px;
      bottom:26px;
      width:2px;
      transform: translateX(-50%);
      background: linear-gradient(180deg, rgba(22,93,255,.24), rgba(22,198,167,.22));
      border-radius:99px;
    }
    .step-card{
      position:relative;
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 18px 55px rgba(16,24,40,.06);
      padding:18px;
      display:flex;
      gap:14px;
      align-items:flex-start;
      min-height: 120px;
    }
    .step-num{
      width:42px; height:42px;
      border-radius:16px;
      display:flex;
      align-items:center; justify-content:center;
      font-weight:950;
      color:#0e2c66;
      background: rgba(22,93,255,.10);
      border:1px solid rgba(22,93,255,.20);
      flex:0 0 auto;
    }
    .step-title{ font-weight:950; letter-spacing:-.2px; }
    .step-desc{ margin-top:6px; color:var(--muted); line-height:1.65; font-weight:650; font-size:14px; }

    .cta-row{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:18px;
    }

    .industry-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .industry-card{
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 18px 55px rgba(16,24,40,.06);
      padding:18px;
      transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
      min-height: 210px;
    }
    .industry-card:hover{ transform: translateY(-3px); border-color: rgba(22,93,255,.20); box-shadow: 0 24px 70px rgba(16,24,40,.09); }
    .industry-title{ font-weight:950; letter-spacing:-.25px; font-size:16px; }
    .industry-desc{ margin-top:8px; color:var(--muted); line-height:1.7; font-weight:650; font-size:14px; }
    .industry-list{ margin-top:14px; display:flex; flex-direction:column; gap:10px; }
    .industry-item{ color:var(--muted); font-weight:750; display:flex; gap:10px; align-items:center; }
    .mini-bullet{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 55%, #7a5cff 110%);
      box-shadow: 0 0 0 6px rgba(22,93,255,.08);
    }

    .network-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
      align-items:stretch;
    }
    .network-card{
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 18px 55px rgba(16,24,40,.06);
      padding:18px;
      min-height: 190px;
      transition: transform 180ms ease, border-color 180ms ease;
    }
    .network-card:hover{ transform: translateY(-3px); border-color: rgba(22,93,255,.20); }
    .network-title{ font-weight:950; letter-spacing:-.2px; }
    .network-desc{ margin-top:8px; color:var(--muted); line-height:1.7; font-weight:650; }
    .network-badges{ margin-top:14px; display:flex; flex-wrap:wrap; gap:8px; }
    .badge-soft{
      padding:8px 10px;
      border-radius:999px;
      font-weight:900;
      font-size:12px;
      background: rgba(22,93,255,.07);
      border:1px solid rgba(22,93,255,.16);
      color: #0e2c66;
    }

    .contact-mini{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      margin-top:18px;
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: linear-gradient(135deg, rgba(22,93,255,.07), rgba(22,198,167,.06), rgba(255,122,61,.03));
      padding:16px 16px;
      box-shadow: 0 18px 50px rgba(16,24,40,.05);
    }
    .contact-mini-title{ font-weight:950; letter-spacing:-.2px; }
    .contact-mini-desc{ margin-top:6px; color:var(--muted); line-height:1.7; font-weight:650; }
    .contact-mini-right{ display:flex; gap:10px; flex-wrap:wrap; }

    .process-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .process-card{
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 18px 55px rgba(16,24,40,.06);
      padding:18px;
      transition: transform 200ms ease, border-color 200ms ease;
      min-height: 190px;
    }
    .process-card:hover{ transform: translateY(-3px); border-color: rgba(22,93,255,.20); }
    .process-step{
      width:42px; height:42px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      background: rgba(22,93,255,.10);
      border:1px solid rgba(22,93,255,.20);
      color:#0e2c66;
    }
    .process-title{ margin-top:12px; font-weight:950; letter-spacing:-.2px; }
    .process-desc{ margin-top:8px; color:var(--muted); line-height:1.7; font-weight:650; font-size:14px; }

    .process-callout{
      margin-top:18px;
      display:flex;
      gap:14px;
      align-items:center;
      justify-content:space-between;
      flex-wrap:wrap;
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 18px 55px rgba(16,24,40,.06);
      padding:16px;
    }
    .callout-icon{
      width:46px; height:46px;
      border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(22,93,255,.08);
      border:1px solid rgba(22,93,255,.18);
      color: var(--primary);
      flex:0 0 auto;
    }
    .callout-title{ font-weight:950; letter-spacing:-.2px; }
    .callout-desc{ margin-top:6px; color:var(--muted); line-height:1.7; font-weight:650; max-width: 520px; }
    .callout-actions{ display:flex; gap:10px; flex-wrap:wrap; }

    .cases-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .case-card{
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 18px 55px rgba(16,24,40,.06);
      padding:18px;
      transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
      min-height: 220px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .case-card:hover{ transform: translateY(-3px); border-color: rgba(22,93,255,.20); box-shadow: 0 24px 70px rgba(16,24,40,.09); }
    .case-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
    .case-kicker{ font-weight:950; color:var(--primary); }
    .case-pill{
      font-weight:950;
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      background: rgba(22,198,167,.12);
      border:1px solid rgba(22,198,167,.22);
      color:#0a3b34;
    }
    .case-pill.alt{
      background: rgba(22,93,255,.10);
      border-color: rgba(22,93,255,.20);
      color:#0e2c66;
    }
    .case-pill.warm{
      background: rgba(255,122,61,.14);
      border-color: rgba(255,122,61,.22);
      color:#5a230a;
    }
    .case-pill.alt2{
      background: rgba(122,92,255,.12);
      border-color: rgba(122,92,255,.22);
      color:#3a2b6e;
    }
    .case-title{ margin-top:10px; font-weight:980; letter-spacing:-.25px; font-size:16px; }
    .case-desc{ margin-top:8px; color:var(--muted); line-height:1.7; font-weight:650; font-size:14px; }
    .case-footer{ margin-top:14px; display:flex; align-items:center; justify-content:space-between; gap:12px; }
    .mini-metric{ color:var(--muted2); font-size:12.5px; font-weight:750; line-height:1.4; }

    .compare-grid{
      display:grid;
      grid-template-columns: .9fr 1.1fr;
      gap:14px;
      align-items:start;
    }
    .rating-card{
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 55px rgba(16,24,40,.07);
      padding:18px;
      min-height: 320px;
    }
    .rating-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
    .rating-title{ font-weight:950; letter-spacing:-.2px; }
    .stars{ color:#f5b301; font-size:18px; letter-spacing:2px; }
    .rating-score{ margin-top:18px; display:flex; align-items:baseline; gap:12px; }
    .score-num{ font-weight:1000; font-size:54px; letter-spacing:-1px; }
    .score-sub{ color:var(--muted); font-weight:850; }
    .rating-desc{ margin-top:10px; color:var(--muted); line-height:1.75; font-weight:650; }
    .rating-actions{ margin-top:16px; }

    .table-wrap{
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 55px rgba(16,24,40,.07);
      padding:18px;
      overflow:hidden;
    }
    .table-head{ display:flex; justify-content:space-between; gap:12px; align-items:flex-start; margin-bottom:10px; }
    .table-title{ font-weight:950; letter-spacing:-.2px; }
    .table-sub{ color:var(--muted); font-weight:750; font-size:13px; margin-top:6px; }
    .table-scroll{ overflow:auto; border-radius:14px; border:1px solid rgba(18,25,36,.10); background: rgba(255,255,255,.9); }
    .compare-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width: 640px;
    }
    .compare-table th, .compare-table td{
      padding:12px 12px;
      border-bottom: 1px solid rgba(18,25,36,.08);
      text-align:left;
      vertical-align:top;
      font-size:14px;
    }
    .compare-table th{
      background: linear-gradient(90deg, rgba(22,93,255,.08), rgba(22,198,167,.06));
      font-weight:950;
      color:#0f223d;
    }
    .compare-table tr:last-child td{ border-bottom:none; }
    .score-badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-weight:950;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(22,93,255,.18);
      background: rgba(22,93,255,.10);
      color:#0e2c66;
      white-space:nowrap;
    }
    .score-badge.good{
      border-color: rgba(22,93,255,.20);
      background: rgba(22,93,255,.10);
      color:#0e2c66;
    }
    .table-foot{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      margin-top:12px;
    }

    .match-grid{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:14px;
      align-items:start;
    }
    .panel{
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 55px rgba(16,24,40,.06);
      padding:18px;
    }
    .panel-title{ font-weight:980; letter-spacing:-.2px; font-size:16px; }
    .panel-sub{ margin-top:8px; color:var(--muted); line-height:1.7; font-weight:650; }
    .panel-note{ margin-top:12px; color:var(--muted2); line-height:1.7; font-weight:650; font-size:14px; }
    .panel-metrics{ margin-top:14px; display:grid; grid-template-columns: repeat(3, 1fr); gap:10px; }
    .mini-stat{
      border-radius:16px;
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.85);
      padding:12px;
    }
    .mini-stat-num{ font-weight:1000; letter-spacing:-.2px; }
    .mini-stat-label{ margin-top:6px; color:var(--muted); font-weight:750; font-size:13px; line-height:1.5; }

    .pill-row{ display:flex; flex-wrap:wrap; gap:10px; margin-top:12px; }
    .pill{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(22,93,255,.18);
      background: rgba(22,93,255,.08);
      color:#0e2c66;
      font-weight:950;
      font-size:13px;
    }
    .soft-banner{
      margin-top:14px;
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: linear-gradient(135deg, rgba(22,93,255,.08), rgba(22,198,167,.06), rgba(255,122,61,.03));
      padding:16px;
      box-shadow: 0 18px 55px rgba(16,24,40,.05);
    }
    .soft-banner-title{ font-weight:980; letter-spacing:-.25px; }
    .soft-banner-desc{ margin-top:8px; color:var(--muted); line-height:1.7; font-weight:650; }
    .soft-banner-actions{ margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; }

    .panel-form{ padding:18px; }
    .two-col{
      display:grid;
      grid-template-columns: repeat(2,1fr);
      gap:12px;
      margin-top:14px;
    }
    .mini-bullet-box{
      border-radius:16px;
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.85);
      padding:12px;
    }
    .mini-bullet-title{ font-weight:950; letter-spacing:-.2px; }
    .mini-bullet-desc{ margin-top:8px; color:var(--muted); line-height:1.7; font-weight:650; font-size:13.5px; }

    .token-grid{
      display:grid;
      grid-template-columns: 1fr 1.2fr;
      gap:14px;
      align-items:start;
    }
    .token-card{
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 55px rgba(16,24,40,.06);
      padding:18px;
      min-height: 280px;
    }
    .token-title{ font-weight:980; letter-spacing:-.2px; font-size:16px; }
    .ordered{ margin:12px 0 0; padding-left:18px; color:var(--muted); line-height:1.75; font-weight:700; }
    .ordered li{ margin:8px 0; }
    .token-actions{ margin-top:16px; }

    .token-table-card{ padding:18px; }
    .token-table-scroll{ overflow:auto; border-radius:14px; border:1px solid rgba(18,25,36,.10); background: rgba(255,255,255,.9); }
    .token-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width: 640px;
    }
    .token-table th, .token-table td{
      padding:12px;
      border-bottom:1px solid rgba(18,25,36,.08);
      text-align:left;
      font-size:14px;
      vertical-align:top;
    }
    .token-table th{
      background: linear-gradient(90deg, rgba(22,93,255,.08), rgba(22,198,167,.06));
      font-weight:950;
      color:#0f223d;
    }
    .token-table tr:last-child td{ border-bottom:none; }
    .cost-low,.cost-mid{
      display:inline-flex;
      align-items:center;
      padding:8px 10px;
      border-radius:999px;
      font-weight:950;
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.9);
      white-space:nowrap;
    }
    .cost-low{ border-color: rgba(22,198,167,.22); color:#0a3b34; background: rgba(22,198,167,.10); }
    .cost-mid{ border-color: rgba(22,93,255,.22); color:#0e2c66; background: rgba(22,93,255,.10); }
    .token-note{
      display:flex; gap:10px; align-items:flex-start;
      margin-top:12px; color:var(--muted); line-height:1.7; font-weight:650;
    }
    .note-dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 55%, #7a5cff 110%);
      box-shadow: 0 0 0 6px rgba(22,93,255,.08);
      margin-top:7px;
      flex:0 0 auto;
    }

    .token-bottom-cta{
      margin-top:14px;
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: linear-gradient(135deg, rgba(22,93,255,.08), rgba(22,198,167,.06), rgba(255,122,61,.03));
      padding:16px;
      box-shadow: 0 18px 55px rgba(16,24,40,.05);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    .token-bottom-title{ font-weight:980; letter-spacing:-.2px; }
    .token-bottom-desc{ margin-top:6px; color:var(--muted); line-height:1.7; font-weight:650; }

    .training-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .training-card{
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 55px rgba(16,24,40,.06);
      padding:18px;
      min-height: 280px;
    }
    .training-title{ font-weight:980; letter-spacing:-.2px; }
    .chip-list{ list-style:none; padding:0; margin:14px 0 0; display:flex; flex-wrap:wrap; gap:10px; }
    .chip{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(22,93,255,.18);
      background: rgba(22,93,255,.08);
      color:#0e2c66;
      font-weight:950;
      font-size:13px;
    }
    .training-desc{ margin-top:12px; color:var(--muted); line-height:1.7; font-weight:650; }
    .training-actions{ margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; }
    .training-note{
      margin-top:14px;
      display:flex; gap:10px; align-items:flex-start;
      color:var(--muted);
      line-height:1.7;
      font-weight:650;
    }

    .help-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .help-card{
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 55px rgba(16,24,40,.06);
      padding:18px;
      transition: transform 200ms ease, border-color 200ms ease;
      min-height: 220px;
    }
    .help-card:hover{ transform: translateY(-3px); border-color: rgba(22,93,255,.20); }
    .help-title{ font-weight:980; letter-spacing:-.2px; }
    .mini-list{ list-style:none; padding:0; margin:12px 0 14px; display:flex; flex-direction:column; gap:10px; }
    .mini-list li{ color:var(--muted); line-height:1.6; font-weight:700; display:flex; gap:10px; align-items:flex-start; }
    .dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 55%, #7a5cff 110%);
      box-shadow: 0 0 0 6px rgba(22,93,255,.08);
      margin-top:6px;
      flex:0 0 auto;
    }

    .faq-wrap{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
    .faq-col{ display:flex; flex-direction:column; gap:12px; }
    .faq-item{
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 55px rgba(16,24,40,.05);
      overflow:hidden;
    }
    .faq-q{
      width:100%;
      text-align:left;
      padding:14px 16px;
      border:none;
      background: transparent;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      font-weight:950;
      letter-spacing:-.2px;
      color:var(--text);
      transition: background 160ms ease;
    }
    .faq-q:hover{ background: rgba(22,93,255,.06); }
    .faq-icon{
      width:18px; height:18px; border-radius:8px;
      border:1px solid rgba(18,25,36,.12);
      background: rgba(255,255,255,.85);
      position:relative;
      flex:0 0 auto;
      transition: transform 180ms ease;
    }
    .faq-icon::before,.faq-icon::after{
      content:""; position:absolute; background: rgba(27,31,42,.85); left:50%; top:50%;
      transform: translate(-50%,-50%);
    }
    .faq-icon::before{ width:10px; height:2px; border-radius:2px; }
    .faq-icon::after{ width:2px; height:10px; border-radius:2px; transition: opacity 180ms ease; }
    .faq-item[aria-expanded="true"] .faq-icon{ transform: rotate(180deg); }
    .faq-item .faq-a{
      padding:0 16px 14px;
      color:var(--muted);
      line-height:1.85;
      font-weight:650;
      max-width: 100%;
    }

    .faq-bottom-cta{
      margin-top:18px;
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: linear-gradient(135deg, rgba(22,93,255,.08), rgba(22,198,167,.06), rgba(255,122,61,.03));
      padding:16px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      box-shadow: 0 18px 55px rgba(16,24,40,.05);
    }
    .faq-bottom-title{ font-weight:980; letter-spacing:-.2px; }
    .faq-bottom-desc{ margin-top:6px; color:var(--muted); line-height:1.7; font-weight:650; }

    .wiki-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
      align-items:stretch;
    }
    .wiki-card{
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 55px rgba(16,24,40,.06);
      padding:18px;
      transition: transform 200ms ease, border-color 200ms ease;
      min-height: 190px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:14px;
    }
    .wiki-card:hover{ transform: translateY(-3px); border-color: rgba(22,93,255,.20); }
    .wiki-title{ font-weight:980; letter-spacing:-.2px; }
    .wiki-desc{ margin-top:8px; color:var(--muted); line-height:1.75; font-weight:650; }
    .wiki-quick{ display:flex; gap:8px; flex-wrap:wrap; }
    .mini-chip{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.9);
      color: var(--muted);
      font-weight:900;
      font-size:12px;
      white-space:nowrap;
    }
    .wiki-bottom{ margin-top:16px; display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-start; }

    .news-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .article-list{
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 55px rgba(16,24,40,.06);
      padding:18px;
    }
    .list-head{ margin-bottom:10px; }
    .list-title{ font-weight:980; letter-spacing:-.2px; font-size:16px; }
    .list-sub{ margin-top:6px; color:var(--muted); font-weight:750; }
    .article-ul{ list-style:none; padding:0; margin:12px 0 0; display:flex; flex-direction:column; gap:10px; }
    .article-link{
      text-decoration:none;
      color:var(--text);
      font-weight:900;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.9);
      transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
      display:block;
    }
    .article-link:hover{
      transform: translateY(-2px);
      border-color: rgba(22,93,255,.22);
      box-shadow: 0 16px 40px rgba(16,24,40,.08);
    }

    .resource-panel{
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 55px rgba(16,24,40,.06);
      padding:18px;
    }
    .resource-title{ font-weight:980; letter-spacing:-.2px; }
    .resource-desc{ margin-top:8px; color:var(--muted); line-height:1.7; font-weight:650; }
    .two-images{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:14px;
    }
    .img-slot{
      border-radius:16px;
      overflow:hidden;
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.9);
      box-shadow: 0 16px 40px rgba(16,24,40,.06);
    }
    .img-slot img{
      width:100%;
      height:auto;
      display:block;
      object-fit:contain;
    }
    .img-caption{
      padding:10px 12px;
      color:var(--muted);
      font-weight:800;
      font-size:12.5px;
      border-top:1px solid rgba(18,25,36,.08);
      background: rgba(255,255,255,.8);
    }

    .price-mini{
      margin-top:14px;
      border-radius:16px;
      border:1px solid rgba(18,25,36,.10);
      background: linear-gradient(180deg, rgba(22,93,255,.06), rgba(255,255,255,.86));
      padding:14px;
    }
    .price-title{ font-weight:980; letter-spacing:-.2px; }
    .price-row{ margin-top:10px; display:flex; justify-content:space-between; gap:10px; }
    .price-label{ color:var(--muted2); font-weight:900; font-size:13px; }
    .price-value{ color:var(--muted); font-weight:750; font-size:13px; line-height:1.5; text-align:right; }
    .price-actions{ margin-top:14px; }

    .section-divider{ height:1px; background: rgba(18,25,36,.08); margin:22px 0; }

    .news-bottom{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
    }
    .news-bottom-title{ font-weight:980; letter-spacing:-.2px; }
    .news-bottom-desc{ margin-top:6px; color:var(--muted); line-height:1.7; font-weight:650; max-width: 640px; }
    .news-bottom-right{ display:flex; gap:10px; flex-wrap:wrap; }

    .contact-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .contact-card{
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 55px rgba(16,24,40,.06);
      padding:18px;
      min-height: 280px;
    }
    .contact-title{ font-weight:980; letter-spacing:-.2px; }
    .contact-item{ margin-top:12px; display:flex; justify-content:space-between; gap:12px; align-items:flex-start; border-top:1px dashed rgba(18,25,36,.10); padding-top:12px; }
    .contact-item:first-of-type{ border-top:none; padding-top:0; margin-top:14px; }
    .contact-label{ color:var(--muted2); font-weight:900; font-size:13px; }
    .contact-value{ color:var(--text); font-weight:800; }
    .contact-link{ color:var(--primary); text-decoration:none; font-weight:950; }
    .contact-link:hover{ text-decoration:underline; }
    .contact-actions{ margin-top:18px; display:flex; gap:10px; flex-wrap:wrap; }

    .contact-qr .qr-title{ font-weight:980; letter-spacing:-.2px; }
    .qr-desc{ margin-top:8px; color:var(--muted); line-height:1.7; font-weight:650; }
    .qr-box{
      margin-top:14px;
      border-radius:16px;
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.9);
      padding:12px;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .qr-box img{ width: 210px; height:auto; display:block; }
    .qr-meta{ margin-top:12px; display:flex; flex-direction:column; gap:10px; }
    .qr-meta-row{ color:var(--muted); font-weight:800; display:flex; gap:10px; align-items:center; }
    .qr-dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 55%, #7a5cff 110%);
      box-shadow: 0 0 0 6px rgba(22,93,255,.08);
    }

    .contact-mini-logos{
      margin-top:14px;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }
    .mini-logo{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.86);
      color: var(--muted);
      font-weight:900;
      font-size:13px;
    }

    .join-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .join-card{
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 55px rgba(16,24,40,.06);
      padding:18px;
      min-height: 300px;
      transition: transform 200ms ease, border-color 200ms ease;
    }
    .join-card:hover{ border-color: rgba(22,93,255,.20); }
    .join-title{ font-weight:980; letter-spacing:-.2px; }
    .join-actions{ margin-top:16px; display:flex; gap:10px; flex-wrap:wrap; }

    .join-right{ background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.80)); }
    .join-points{ margin-top:14px; display:flex; flex-direction:column; gap:12px; }
    .join-point{
      display:flex; gap:14px; align-items:flex-start;
      border-radius:16px;
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.88);
      padding:12px;
    }
    .jp-num{
      width:38px; height:38px;
      border-radius:15px;
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      background: rgba(22,93,255,.10);
      border:1px solid rgba(22,93,255,.18);
      color:#0e2c66;
      flex:0 0 auto;
    }
    .jp-title{ font-weight:980; letter-spacing:-.2px; }
    .jp-desc{ margin-top:6px; color:var(--muted); line-height:1.7; font-weight:650; font-size:13.5px; }

    .join-cta{
      margin-top:16px;
      border-radius:16px;
      border:1px solid rgba(18,25,36,.10);
      background: linear-gradient(135deg, rgba(22,93,255,.08), rgba(22,198,167,.06), rgba(255,122,61,.03));
      padding:14px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
    }
    .join-cta-title{ font-weight:980; letter-spacing:-.2px; }
    .join-cta-desc{ margin-top:6px; color:var(--muted); line-height:1.7; font-weight:650; }
    .square-media{ margin-top:14px; }
    .square-slot{
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 55px rgba(16,24,40,.06);
      padding:14px;
      display:flex;
      flex-direction:column;
      gap:10px;
      max-width: 520px;
    }
    .square-slot img{ width:100%; height:auto; display:block; object-fit:contain; }
    .square-caption{ color:var(--muted); font-weight:850; font-size:13px; line-height:1.5; }

    .links-grid{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .links-grid a{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.86);
      color: var(--muted);
      font-weight:950;
      transition: transform 160ms ease, border-color 160ms ease, color 160ms ease;
    }
    .links-grid a:hover{ transform: translateY(-1px); border-color: rgba(22,93,255,.22); color: var(--text); }
    .links-bottom-cta{
      margin-top:16px;
      border-radius:var(--radius);
      border:1px solid rgba(18,25,36,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 55px rgba(16,24,40,.06);
      padding:16px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
    }
    .links-bottom-title{ font-weight:980; letter-spacing:-.2px; }
    .links-bottom-desc{ margin-top:6px; color:var(--muted); line-height:1.7; font-weight:650; max-width: 640px; }

    .site-footer{
      background: #0f1520;
      color:#e8eef7;
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .site-footer .container{ padding-top:26px; padding-bottom:26px; }
    .footer-inner{ display:flex; flex-direction:column; gap:18px; }
    .footer-top{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .footer-brand-row{ display:flex; gap:12px; align-items:center; }
    .footer-logo{
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      padding:6px;
      object-fit:contain;
    }
    .footer-name{ font-weight:1000; letter-spacing:-.2px; font-size:16px; }
    .footer-sub{ margin-top:4px; color: rgba(232,238,247,.72); font-weight:750; font-size:13px; }
    .footer-note{ margin-top:12px; color: rgba(232,238,247,.78); line-height:1.7; font-weight:650; }
    .footer-actions{ margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; }

    .site-footer .btn-primary{
      box-shadow: 0 14px 35px rgba(22,93,255,.25);
    }
    .site-footer .btn-ghost{
      background: rgba(255,255,255,.06);
      border-color: rgba(255,255,255,.14);
      color:#eaf1ff;
      box-shadow:none;
    }
    .site-footer .btn-ghost:hover{ border-color: rgba(255,255,255,.26); }

    .footer-cols{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .footer-col-title{ font-weight:1000; letter-spacing:-.2px; margin-bottom:10px; }
    .footer-link{
      display:block;
      text-decoration:none;
      color: rgba(232,238,247,.80);
      font-weight:750;
      padding:8px 0;
      border-bottom: 1px dashed rgba(255,255,255,.12);
    }
    .footer-link:last-child{ border-bottom:none; }
    .footer-link:hover{ color:#fff; }
    .footer-text{
      color: rgba(232,238,247,.80);
      font-weight:750;
      padding:8px 0;
      border-bottom: 1px dashed rgba(255,255,255,.12);
    }

    .footer-bottom{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      border-top: 1px solid rgba(255,255,255,.10);
      padding-top:16px;
    }
    .footer-bottom-left{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
    .ai-page-home-link{
      color:#fff;
      text-decoration:none;
      font-weight:950;
      padding:10px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.14);
    }
    .ai-page-home-link:hover{ background: rgba(255,255,255,.12); }
    .footer-sep{ color: rgba(232,238,247,.55); }
    .footer-copy{ color: rgba(232,238,247,.74); font-weight:750; }
    .footer-bottom-right{ display:flex; gap:10px; flex-wrap:wrap; }
    .footer-mini-link{
      text-decoration:none;
      color: rgba(232,238,247,.75);
      font-weight:850;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
    }
    .footer-mini-link:hover{ color:#fff; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.10); }

    .to-top{
      position:fixed;
      right:16px;
      bottom:92px;
      width:46px; height:46px;
      border-radius:16px;
      border:1px solid rgba(18,25,36,.12);
      background: rgba(255,255,255,.92);
      box-shadow: 0 18px 40px rgba(16,24,40,.14);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      opacity:0;
      transform: translateY(10px);
      pointer-events:none;
      transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
      z-index:60;
    }
    .to-top.show{ opacity:1; transform: translateY(0); pointer-events:auto; }
    .to-top:hover{ border-color: rgba(22,93,255,.25); }
    .to-top:focus{ outline:none; box-shadow:0 0 0 4px var(--focus); }

    .floating-chat{
      position:fixed;
      right:16px;
      bottom:22px;
      z-index:70;
    }
    .chat-btn{
      display:flex; align-items:center; gap:10px;
      text-decoration:none;
      color:#fff;
      font-weight:950;
      padding:12px 14px;
      border-radius:18px;
      background: linear-gradient(135deg, #0f7a6a, #165dff 70%);
      border:1px solid rgba(255,255,255,.16);
      box-shadow: 0 20px 60px rgba(22,93,255,.22);
      transition: transform 160ms ease, box-shadow 160ms ease;
    }
    .chat-btn:hover{ transform: translateY(-2px); box-shadow: 0 26px 80px rgba(22,93,255,.28); }
    .chat-dot{
      width:10px; height:10px; border-radius:50%;
      background: rgba(255,255,255,.95);
      box-shadow: 0 0 0 6px rgba(255,255,255,.18);
    }
    .chat-text{ font-size:13px; letter-spacing:.2px; }

    @media (max-width: 980px){
      .nav-desktop{ display:none; }
      .hero-inner{ grid-template-columns: 1fr; }
      .hero-right{ order:2; }
      .feature-grid{ grid-template-columns: 1fr; }
      .service-grid{ grid-template-columns: 1fr; }
      .industry-grid{ grid-template-columns: 1fr; }
      .network-grid{ grid-template-columns: 1fr; }
      .process-grid{ grid-template-columns: 1fr; }
      .cases-grid{ grid-template-columns: 1fr; }
      .compare-grid{ grid-template-columns: 1fr; }
      .token-grid{ grid-template-columns: 1fr; }
      .match-grid{ grid-template-columns: 1fr; }
      .training-grid{ grid-template-columns: 1fr; }
      .help-grid{ grid-template-columns: 1fr; }
      .faq-wrap{ grid-template-columns: 1fr; }
      .wiki-grid{ grid-template-columns: 1fr; }
      .news-grid{ grid-template-columns: 1fr; }
      .two-images{ grid-template-columns: 1fr; }
      .contact-grid{ grid-template-columns: 1fr; }
      .join-grid{ grid-template-columns: 1fr; }
      .footer-top{ grid-template-columns: 1fr; }
      .footer-cols{ grid-template-columns: 1fr; }
      .timeline-line{ display:none; }
      .timeline{ grid-template-columns: 1fr; }
      .square-slot{ max-width: 100%; }
    }
    @media (prefers-reduced-motion: reduce){
      .appear,.metric-card,.hero-form-card{ transition:none !important; transform:none !important; opacity:1 !important; }
      .btn,.nav-item,.article-link,.case-card,.service-card,.feature-card,.to-top,.chat-btn{ transition:none !important; }
    }