:root{
      --bg0:#fbfbfe;
      --bg1:#ffffff;
      --text:#1f2937;
      --muted:#5b667a;
      --line:rgba(15, 23, 42, .10);
      --card:rgba(255,255,255,.78);
      --shadow:0 18px 50px rgba(15, 23, 42, .10);
      --shadow2:0 10px 30px rgba(15, 23, 42, .10);
      --radius:18px;
      --radius2:24px;

      --g1:#00c2ff;
      --g2:#7c3aed;
      --g3:#22c55e;
      --g4:#f97316;

      --primary:#2563eb;
      --primary2:#7c3aed;
      --accent:#06b6d4;
      --danger:#ef4444;

      --focus: rgba(37,99,235,.35);
      --container: 1120px;
      --pad: 20px;
    }

    *{ 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", "Noto Sans SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 600px at 10% -10%, rgba(124,58,237,.18), transparent 55%),
        radial-gradient(820px 520px at 95% 0%, rgba(0,194,255,.16), transparent 52%),
        radial-gradient(820px 560px at 40% 105%, rgba(34,197,94,.10), transparent 58%),
        linear-gradient(180deg, #fbfbfe 0%, #f7f8ff 55%, #fbfbfe 100%);
      overflow-x:hidden;
    }

    a{ color:inherit; text-decoration:none; }
    a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
      outline: 3px solid var(--focus);
      outline-offset: 2px;
      border-radius: 10px;
    }

    .skip-link{
      position:absolute;
      left:-999px;
      top:8px;
      background:#111827;
      color:#fff;
      padding:10px 12px;
      border-radius:12px;
      z-index:10000;
    }
    .skip-link:focus{ left:12px; }

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

    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,255,255,.72);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(15, 23, 42, .08);
    }
    .nav-wrap{
      min-height:72px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 260px;
    }
    .brand-link{
      display:block;
      width:44px;
      height:44px;
      border-radius:14px;
      background: linear-gradient(135deg, rgba(37,99,235,.15), rgba(124,58,237,.15));
      border:1px solid rgba(124,58,237,.20);
      box-shadow: 0 12px 25px rgba(124,58,237,.10);
      overflow:hidden;
      flex:0 0 auto;
    }
    .ai-page-logo{ display:block; width:100%; height:auto; }
    .brand-meta{ line-height:1.1; }
    .brand-name{
      font-weight:800;
      letter-spacing:.2px;
      font-size:15px;
    }
    .brand-sub{
      margin-top:4px;
      font-size:12px;
      color:var(--muted);
      white-space:nowrap;
    }

    .nav{
      display:flex;
      align-items:center;
      gap:12px;
      justify-content:flex-end;
      flex:1 1 auto;
    }
    .nav-toggle{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.7);
      cursor:pointer;
      box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
    }
    .nav-toggle .bar{
      display:block;
      width:18px;
      height:2px;
      background:rgba(31,41,55,.75);
      margin:4px auto;
      border-radius:2px;
    }

    .nav-right{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:14px;
      flex-wrap:nowrap;
    }
    .nav-links{
      display:flex;
      align-items:center;
      gap:16px;
      flex-wrap:nowrap;
      white-space:nowrap;
    }
    .nav-links a{
      font-size:14px;
      color:rgba(31,41,55,.82);
      padding:10px 0;
      position:relative;
    }
    .nav-links a::after{
      content:"";
      position:absolute;
      left:0;
      right:0;
      bottom:6px;
      height:2px;
      background: linear-gradient(90deg, var(--g1), var(--g2));
      transform:scaleX(0);
      transform-origin:left;
      transition:transform .2s ease;
      opacity:.9;
    }
    .nav-links a:hover{ color:rgba(31,41,55,.95); }
    .nav-links a:hover::after{ transform:scaleX(1); }

    .cta-primary{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:12px 16px;
      border-radius:14px;
      background: linear-gradient(135deg, rgba(37,99,235,1), rgba(124,58,237,1));
      color:#fff;
      border:1px solid rgba(255,255,255,.18);
      box-shadow: 0 18px 45px rgba(37,99,235,.25);
      transition: transform .15s ease, box-shadow .15s ease;
      font-weight:700;
      font-size:14px;
      cursor:pointer;
    }
    .cta-primary:hover{
      transform: translateY(-1px);
      box-shadow: 0 22px 55px rgba(124,58,237,.28);
    }
    .cta-primary.large{ padding:14px 18px; font-size:15px; }
    .cta-primary.small{ padding:10px 12px; font-size:13px; border-radius:12px; }
    .cta-outline{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:12px 16px;
      border-radius:14px;
      border:1px solid rgba(37,99,235,.22);
      background: rgba(255,255,255,.62);
      color:rgba(17,24,39,.92);
      box-shadow: 0 14px 35px rgba(15,23,42,.07);
      transition: transform .15s ease, background .15s ease;
      font-weight:700;
      font-size:14px;
      cursor:pointer;
    }
    .cta-outline:hover{ transform: translateY(-1px); background: rgba(255,255,255,.78); }
    .cta-outline.large{ padding:14px 18px; font-size:15px; }
    .cta-outline.small{ padding:10px 12px; font-size:13px; border-radius:12px; }
    .cta-text{
      color: rgba(37,99,235,.95);
      font-weight:700;
      font-size:14px;
      position:relative;
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 0;
    }
    .cta-text::after{
      content:"";
      height:2px;
      background: linear-gradient(90deg, var(--g1), var(--g2));
      width:0%;
      transition:width .22s ease;
      opacity:.9;
    }
    .cta-text:hover::after{ width:100%; }
    .cta-arrow{
      width:18px; height:18px;
      display:inline-flex; align-items:center; justify-content:center;
      border-radius:9px;
      background: rgba(255,255,255,.16);
      border:1px solid rgba(255,255,255,.18);
      transform: translateY(-.5px);
    }

    .mobile-menu{
      display:none;
      position:fixed;
      inset:0;
      z-index:999;
      background:rgba(3,7,18,.45);
      backdrop-filter: blur(6px);
      padding:18px;
      align-items:flex-start;
      justify-content:center;
      opacity:0;
      transition: opacity .18s ease;
    }
    .mobile-menu.open{
      display:flex;
      opacity:1;
    }
    .mobile-inner{
      width:min(560px, 100%);
      border-radius:18px;
      background: rgba(255,255,255,.92);
      border:1px solid rgba(15,23,42,.10);
      box-shadow: var(--shadow);
      padding:14px;
      max-height: calc(100vh - 24px);
      overflow:auto;
    }
    .mobile-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:6px 6px 12px;
      border-bottom:1px solid rgba(15,23,42,.08);
      margin-bottom:10px;
    }
    .mobile-title{ font-weight:900; letter-spacing:.2px; }
    .nav-close{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.7);
      width:40px; height:40px;
      border-radius:14px;
      cursor:pointer;
      color: rgba(31,41,55,.8);
    }
    .mobile-links{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      padding:10px 6px 14px;
    }
    .mobile-links a{
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.65);
      font-weight:800;
      font-size:14px;
      color: rgba(31,41,55,.92);
    }
    .mobile-actions{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:0 6px 8px;
    }
    .cta-secondary{
      flex:1 1 auto;
      display:inline-flex;
      justify-content:center;
      align-items:center;
      padding:12px 14px;
      border-radius:14px;
      border:1px solid rgba(124,58,237,.22);
      background: linear-gradient(135deg, rgba(124,58,237,.13), rgba(37,99,235,.10));
      font-weight:800;
      cursor:pointer;
      color: rgba(31,41,55,.95);
    }
    .cta-text{
      white-space:nowrap;
    }

    .hero{
      position:relative;
      padding: 46px 0 26px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:24px;
      align-items: start;
      position:relative;
      z-index:2;
    }
    .hero-left{
      padding: 22px 0 0;
    }
    .hero-pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.55);
      background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.30));
      box-shadow: 0 18px 40px rgba(15,23,42,.08);
      color: rgba(17,24,39,.88);
      font-weight:800;
      font-size:13px;
      letter-spacing:.2px;
    }
    .hero-pill .dot{
      width:10px; height:10px; border-radius:50%;
      background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,.1) 32%), linear-gradient(135deg, var(--g1), var(--g2));
      box-shadow: 0 10px 20px rgba(37,99,235,.25);
      border:1px solid rgba(124,58,237,.22);
    }

    .hero-title{
      margin:16px 0 10px;
      font-size: clamp(26px, 4.2vw, 44px);
      line-height:1.08;
      letter-spacing: -0.6px;
      font-weight: 950;
    }
    .hero-desc{
      margin:0;
      font-size: 15.5px;
      line-height:1.8;
      color: rgba(31,41,55,.78);
      max-width: 58ch;
    }

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

    .hero-meta{
      margin-top:18px;
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:12px;
    }
    .meta-item{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.55);
      box-shadow: 0 14px 35px rgba(15,23,42,.06);
    }
    .meta-k{
      font-weight:900;
      font-size:13.5px;
      color: rgba(31,41,55,.95);
    }
    .meta-v{
      margin-top:6px;
      font-size:12.5px;
      color: rgba(91,102,122,.95);
      line-height:1.35;
    }

    .hero-right{
      position:relative;
      min-height: 420px;
      display:flex;
      align-items:flex-start;
      justify-content:flex-end;
    }
    .hero-card{
      width:100%;
      max-width: 420px;
      border-radius: var(--radius2);
      border:1px solid rgba(255,255,255,.58);
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.55));
      box-shadow: var(--shadow2);
      overflow:hidden;
      transform: translateZ(0);
    }
    .card-head{
      padding:18px 18px 0;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }
    .card-title{
      font-weight: 950;
      letter-spacing: -0.2px;
      font-size:15.5px;
    }
    .card-badge{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(124,58,237,.18);
      background: rgba(124,58,237,.10);
      color: rgba(91,33,182,.95);
      font-weight:900;
      font-size:12px;
      white-space:nowrap;
    }

    .stats{
      padding:16px 18px 0;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .stat{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.60);
    }
    .stat-value{
      font-weight: 1000;
      font-size: 22px;
      letter-spacing:-0.4px;
    }
    .stat-label{
      margin-top:6px;
      font-size:12.5px;
      color: rgba(91,102,122,.95);
      line-height:1.35;
      font-weight:800;
    }

    .mini-steps{
      padding:14px 18px 0;
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    .mini-step{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.55);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .mini-step:hover{
      transform: translateY(-1px);
      box-shadow: 0 16px 40px rgba(15,23,42,.08);
    }
    .step-idx{
      width:30px; height:30px;
      border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      color:#fff;
      background: linear-gradient(135deg, rgba(37,99,235,1), rgba(124,58,237,1));
      box-shadow: 0 16px 35px rgba(37,99,235,.20);
      flex:0 0 auto;
    }
    .step-t{
      font-weight:950;
      margin-top:2px;
      letter-spacing:-.2px;
      font-size:13.5px;
    }
    .step-d{
      margin-top:6px;
      color: rgba(91,102,122,.95);
      font-size:12.5px;
      line-height:1.35;
      font-weight:800;
    }

    .card-foot{
      padding:14px 18px 18px;
      display:flex;
      align-items:center;
      gap:10px;
      justify-content:center;
      flex-wrap:wrap;
      border-top:1px solid rgba(15,23,42,.08);
      margin-top:14px;
      background: linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.35));
    }
    .sep{ color: rgba(91,102,122,.8); font-weight:900; }

    .hero-surface{
      position:absolute;
      inset:-40px -30px -30px -30px;
      z-index:-1;
      pointer-events:none;
    }
    .orb{
      position:absolute;
      width:220px; height:220px;
      border-radius:50%;
      filter: blur(0px);
      opacity:.55;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.8), rgba(255,255,255,.0) 38%),
                  linear-gradient(135deg, rgba(0,194,255,.45), rgba(124,58,237,.35));
      border:1px solid rgba(124,58,237,.12);
      box-shadow: 0 40px 90px rgba(124,58,237,.18);
      transform: translateZ(0);
      animation: floaty 6.5s ease-in-out infinite;
    }
    .orb-a{ left: -10px; top: 70px; }
    .orb-b{ right: -35px; top: 10px; width:260px; height:260px; opacity:.42; animation-duration: 7.6s; }
    .gridlines{
      position:absolute; inset:0;
      background:
        linear-gradient(to right, rgba(15,23,42,.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15,23,42,.04) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(circle at 65% 20%, #000 0%, rgba(0,0,0,.65) 48%, transparent 70%);
      opacity:.6;
    }

    @keyframes floaty{
      0%, 100%{ transform: translateY(0px) translateX(0px); }
      50%{ transform: translateY(-10px) translateX(6px); }
    }

    .ticker{
      margin-top:22px;
      border-top:1px solid rgba(15,23,42,.08);
      border-bottom:1px solid rgba(15,23,42,.08);
      background: linear-gradient(90deg, rgba(37,99,235,.06), rgba(124,58,237,.06));
      padding: 12px 0;
      overflow:hidden;
    }
    .ticker-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
    }
    .ticker-label{
      font-weight:950;
      color: rgba(31,41,55,.92);
      font-size:13px;
      white-space:nowrap;
    }
    .ticker-items{
      display:flex;
      gap:16px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .ticker-item{
      font-weight:850;
      color: rgba(91,102,122,.95);
      font-size:12.5px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.55);
      white-space:nowrap;
    }

    .section{
      padding: 56px 0;
    }
    .alt-bg{
      background: linear-gradient(180deg, rgba(255,255,255,.0), rgba(124,58,237,.03));
      border-top:1px solid rgba(15,23,42,.06);
      border-bottom:1px solid rgba(15,23,42,.06);
    }
    .alt-bg2{
      background: linear-gradient(180deg, rgba(0,194,255,.04), rgba(255,255,255,.0));
      border-top:1px solid rgba(15,23,42,.06);
      border-bottom:1px solid rgba(15,23,42,.06);
    }

    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      margin-bottom: 22px;
    }
    .section-head h2{
      margin:0;
      font-size: clamp(20px, 2.2vw, 28px);
      letter-spacing: -0.4px;
      font-weight: 1000;
      line-height:1.2;
    }
    .section-sub{
      margin:10px 0 0;
      color: rgba(91,102,122,.95);
      font-weight:750;
      line-height:1.6;
      max-width: 68ch;
      font-size:14.5px;
    }

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

    .about-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:18px;
      align-items:stretch;
    }
    .feature-card{
      border-radius: var(--radius2);
      background: rgba(255,255,255,.68);
      border:1px solid rgba(15,23,42,.08);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:18px 18px;
      overflow:hidden;
      position:relative;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .feature-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 24px 65px rgba(15,23,42,.10);
    }
    .feature-card.alt{
      background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.55));
    }
    .feature-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .feature-icon{
      width:44px; height:44px;
      border-radius:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      color: rgba(37,99,235,.95);
      background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(124,58,237,.08));
      border:1px solid rgba(37,99,235,.22);
      box-shadow: 0 18px 40px rgba(37,99,235,.10);
      flex:0 0 auto;
    }
    .feature-title{
      font-weight:1000;
      font-size:16px;
      letter-spacing:-.2px;
      margin:0;
      color: rgba(31,41,55,.97);
      line-height:1.2;
    }
    .feature-desc{
      margin:12px 0 0;
      color: rgba(91,102,122,.95);
      font-weight:780;
      line-height:1.75;
      font-size:14px;
    }

    .checklist{
      margin:14px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .checklist li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color: rgba(31,41,55,.90);
      font-weight:820;
      font-size:13.5px;
      line-height:1.45;
    }
    .checklist li::before{
      content:"";
      width:9px; height:9px;
      margin-top:6px;
      border-radius:3px;
      background: linear-gradient(135deg, rgba(37,99,235,1), rgba(124,58,237,1));
      box-shadow: 0 10px 20px rgba(37,99,235,.20);
    }

    .callout{
      margin-top:14px;
      padding:12px 12px;
      border-radius:16px;
      background: rgba(37,99,235,.07);
      border:1px solid rgba(37,99,235,.15);
    }
    .callout-k{
      font-weight:950;
      color: rgba(29,78,216,.95);
      font-size:13.5px;
    }
    .callout-v{
      margin-top:6px;
      font-weight:950;
      color: rgba(31,41,55,.95);
      font-size:14px;
      line-height:1.35;
    }

    .pill-row{
      margin-top:14px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .pill{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.60);
      font-weight:900;
      font-size:12.5px;
      color: rgba(31,41,55,.92);
      white-space:nowrap;
    }
    .pill.soft{
      background: rgba(255,255,255,.55);
    }

    .grid-split{
      margin-top:18px;
      display:grid;
      grid-template-columns: 1.3fr .7fr;
      gap:18px;
      align-items:start;
    }
    .panel{
      border-radius: var(--radius2);
      background: rgba(255,255,255,.68);
      border:1px solid rgba(15,23,42,.08);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:18px;
    }
    .panel-title{
      margin:0;
      font-weight:1000;
      letter-spacing:-.3px;
      font-size:16px;
    }
    .panel-body{
      margin-top:12px;
    }
    .kv-list{ display:grid; gap:12px; }
    .kv{
      display:grid;
      grid-template-columns: 170px 1fr;
      gap:12px;
      align-items:start;
      padding:12px;
      border-radius:16px;
      background: rgba(255,255,255,.55);
      border:1px solid rgba(15,23,42,.07);
    }
    .kv-k{
      font-weight:1000;
      color: rgba(31,41,55,.95);
      font-size:13.5px;
      line-height:1.35;
    }
    .kv-v{
      color: rgba(91,102,122,.95);
      font-weight:780;
      line-height:1.6;
      font-size:13.5px;
    }
    .panel-actions{
      margin-top:14px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      justify-content:flex-start;
    }

    .side-stack{
      display:grid;
      gap:14px;
    }
    .side-card{
      border-radius: var(--radius2);
      background: rgba(255,255,255,.66);
      border:1px solid rgba(15,23,42,.08);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px 16px;
    }
    .side-card.emphasize{
      background: linear-gradient(180deg, rgba(124,58,237,.10), rgba(255,255,255,.55));
      border:1px solid rgba(124,58,237,.18);
    }
    .side-title{
      font-weight:1000;
      font-size:15.5px;
      letter-spacing:-.2px;
    }
    .side-desc{
      margin-top:8px;
      color: rgba(91,102,122,.95);
      font-weight:780;
      line-height:1.7;
      font-size:13.8px;
    }
    .side-tags{
      margin-top:12px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .tag{
      padding:9px 11px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.55);
      font-weight:900;
      font-size:12.5px;
    }

    .side-hint{
      margin-top:10px;
      font-size:12.5px;
      color: rgba(91,102,122,.95);
      font-weight:800;
    }
    .side-bars{
      margin-top:12px;
      display:grid;
      gap:10px;
    }
    .bar-row{
      display:grid;
      grid-template-columns: 92px 1fr;
      gap:10px;
      align-items:center;
      color: rgba(31,41,55,.90);
      font-weight:900;
      font-size:13px;
    }
    .bar-row i{
      display:block;
      height:10px;
      border-radius:999px;
      background: rgba(15,23,42,.08);
      position:relative;
      overflow:hidden;
    }
    .bar-row i::after{
      content:"";
      position:absolute;
      left:0; top:0; bottom:0;
      width: var(--w);
      border-radius:999px;
      background: linear-gradient(90deg, rgba(37,99,235,1), rgba(124,58,237,1), rgba(34,197,94,.9));
      box-shadow: 0 14px 25px rgba(37,99,235,.20);
    }

    .cards-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:16px;
    }
    .service-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:18px;
      transition: transform .18s ease, box-shadow .18s ease;
      position:relative;
      overflow:hidden;
    }
    .service-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 26px 70px rgba(15,23,42,.10);
    }
    .service-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .service-icon{
      width:44px; height:44px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(0,194,255,.20);
      background: linear-gradient(135deg, rgba(0,194,255,.12), rgba(124,58,237,.08));
      color: rgba(14,116,144,.95);
      box-shadow: 0 18px 40px rgba(6,182,212,.10);
      flex:0 0 auto;
    }
    .service-card h3{
      margin:0;
      font-size:16px;
      font-weight:1000;
      letter-spacing:-.25px;
      line-height:1.2;
    }
    .service-card p{
      margin:12px 0 0;
      color: rgba(91,102,122,.95);
      font-weight:780;
      line-height:1.75;
      font-size:14px;
      min-height: 56px;
    }
    .service-list{
      margin:14px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .service-list li{
      padding-left: 18px;
      position:relative;
      color: rgba(31,41,55,.90);
      font-weight:850;
      font-size:13.5px;
      line-height:1.45;
    }
    .service-list li::before{
      content:"";
      position:absolute;
      left:0; top:8px;
      width:10px; height:10px;
      border-radius:3px;
      background: linear-gradient(135deg, rgba(0,194,255,1), rgba(124,58,237,1));
      box-shadow: 0 10px 20px rgba(0,194,255,.20);
    }
    .service-card .cta-text{ margin-top:14px; display:inline-flex; }

    .two-col{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:16px;
      align-items:start;
      margin-top:22px;
    }
    .table-wrap{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
    }
    .table-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:12px;
    }
    .table-title{
      margin:0;
      font-weight:1000;
      letter-spacing:-.25px;
      font-size:16px;
    }
    .table-sub{
      margin-top:6px;
      color: rgba(91,102,122,.95);
      font-weight:800;
      font-size:13.5px;
      line-height:1.4;
    }
    .table-scroll{ overflow:auto; border-radius:16px; }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width: 700px;
      background: rgba(255,255,255,.52);
      border:1px solid rgba(15,23,42,.08);
    }
    th, td{
      padding:12px 12px;
      border-bottom:1px solid rgba(15,23,42,.08);
      text-align:left;
      vertical-align:top;
    }
    th{
      font-size:13px;
      color: rgba(31,41,55,.92);
      font-weight:1000;
      background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.55));
      position:sticky;
      top:0;
      z-index:1;
    }
    td{
      font-size:13.5px;
      color: rgba(91,102,122,.95);
      font-weight:780;
      line-height:1.6;
    }
    tr:last-child td{ border-bottom:none; }

    .side-quote{
      display:flex;
      align-items:stretch;
    }
    .quote-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.54));
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
      width:100%;
    }
    .quote-k{
      font-weight:1000;
      color: rgba(37,99,235,.95);
      font-size:13.5px;
      letter-spacing:.2px;
      text-transform: none;
    }
    .quote-v{
      margin-top:10px;
      font-size:15.5px;
      font-weight:950;
      letter-spacing:-.2px;
      line-height:1.5;
      color: rgba(31,41,55,.95);
    }
    .quote-actions{
      margin-top:14px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }
    .quote-foot{
      margin-top:14px;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }
    .chip{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.55);
      font-weight:900;
      font-size:12.5px;
      color: rgba(31,41,55,.92);
    }

    .steps-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
      align-items:stretch;
    }
    .step-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
      position:relative;
      overflow:hidden;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .step-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 26px 70px rgba(15,23,42,.10);
    }
    .step-num{
      font-weight:1000;
      letter-spacing:-.5px;
      color: rgba(124,58,237,.95);
      font-size:13px;
      background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(37,99,235,.08));
      border:1px solid rgba(124,58,237,.18);
      display:inline-flex;
      padding:8px 10px;
      border-radius:999px;
    }
    .step-main h3{
      margin:12px 0 0;
      font-weight:1000;
      letter-spacing:-.25px;
      font-size:15.5px;
      line-height:1.3;
    }
    .step-main p{
      margin:10px 0 0;
      color: rgba(91,102,122,.95);
      font-weight:780;
      line-height:1.7;
      font-size:13.8px;
      min-height: 66px;
    }

    .industry-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .industry-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .industry-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 26px 70px rgba(15,23,42,.10);
    }
    .industry-card h3{
      margin:0;
      font-size:16px;
      font-weight:1000;
      letter-spacing:-.25px;
    }
    .industry-card p{
      margin:10px 0 0;
      color: rgba(91,102,122,.95);
      font-weight:780;
      line-height:1.75;
      font-size:13.9px;
      min-height: 70px;
    }
    .industry-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:12px;
    }
    .industry-card .cta-text{ margin-top:12px; display:inline-flex; }

    .network-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:16px;
      align-items:stretch;
    }
    .network-map-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
      display:flex;
      flex-direction:column;
      gap:12px;
      overflow:hidden;
      position:relative;
    }
    .network-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }
    .network-note{
      color: rgba(91,102,122,.95);
      font-weight:800;
      font-size:13px;
      line-height:1.4;
      max-width: 26ch;
    }
    .map-shell{
      height: 250px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.08);
      background:
        radial-gradient(600px 240px at 30% 20%, rgba(0,194,255,.14), transparent 60%),
        radial-gradient(520px 220px at 90% 70%, rgba(124,58,237,.13), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.42));
      position:relative;
      overflow:hidden;
    }
    .map-glow{
      position:absolute; inset:-60px -60px -60px -60px;
      background: radial-gradient(circle at 60% 35%, rgba(37,99,235,.18), transparent 55%);
      filter: blur(0px);
    }
    .map-nodes .node{
      position:absolute;
      width:12px; height:12px;
      border-radius:50%;
      background: linear-gradient(135deg, rgba(37,99,235,1), rgba(124,58,237,1));
      border:1px solid rgba(255,255,255,.6);
      box-shadow: 0 18px 40px rgba(37,99,235,.25);
      animation: pulse 2.8s ease-in-out infinite;
    }
    .node.n1{ left: 20%; top: 38%; animation-delay:0s; }
    .node.n2{ left: 42%; top: 28%; animation-delay:.4s; }
    .node.n3{ left: 62%; top: 46%; animation-delay:.7s; }
    .node.n4{ left: 72%; top: 24%; animation-delay:.2s; }
    .node.n5{ left: 50%; top: 64%; animation-delay:1s; }

    .map-lines .line{
      position:absolute; height:2px; background: linear-gradient(90deg, rgba(37,99,235,.55), rgba(124,58,237,.45));
      transform-origin:left center;
      opacity:.6;
      border-radius:999px;
    }
    .line.l1{ left: 22%; top: 40%; width: 130px; transform: rotate(-10deg); }
    .line.l2{ left: 34%; top: 30%; width: 180px; transform: rotate(8deg); }
    .line.l3{ left: 50%; top: 62%; width: 150px; transform: rotate(-6deg); }
    .line.l4{ left: 62%; top: 46%; width: 120px; transform: rotate(12deg); }

    @keyframes pulse{
      0%,100%{ transform: scale(1); opacity: .85; }
      50%{ transform: scale(1.35); opacity: 1; }
    }

    .network-bottom{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }
    .small-badge{
      font-weight:900;
      font-size:12.5px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.55);
      color: rgba(31,41,55,.92);
    }
    .network-actions{
      display:flex;
      gap:12px;
      align-items:center;
      flex-wrap:wrap;
      justify-content:flex-end;
    }

    .network-right{
      display:grid;
      gap:14px;
      align-content:start;
    }
    .network-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
    }
    .network-card.alt{
      background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.55));
    }
    .network-card-title{
      font-weight:1000;
      font-size:15.5px;
      letter-spacing:-.25px;
      margin-bottom:12px;
    }
    .soft-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .soft-list.compact{ gap:9px; }
    .soft-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color: rgba(31,41,55,.90);
      font-weight:860;
      font-size:13.5px;
      line-height:1.45;
    }
    .bullet{
      width:10px; height:10px;
      border-radius:3px;
      background: linear-gradient(135deg, rgba(0,194,255,1), rgba(124,58,237,1));
      box-shadow: 0 12px 26px rgba(0,194,255,.16);
      margin-top:5px;
      flex:0 0 auto;
    }

    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .tagCloud{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.55);
      font-weight:950;
      font-size:12.5px;
      color: rgba(31,41,55,.92);
    }

    .timeline{
      margin-top:10px;
      display:grid;
      gap:12px;
    }
    .timeline-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px;
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
    }
    .t-dot{
      width:14px; height:14px;
      border-radius:50%;
      margin-top:6px;
      background: linear-gradient(135deg, rgba(37,99,235,1), rgba(124,58,237,1));
      box-shadow: 0 18px 40px rgba(37,99,235,.22);
      border:1px solid rgba(255,255,255,.7);
      flex:0 0 auto;
    }
    .t-body h3{
      margin:0;
      font-weight:1000;
      letter-spacing:-.25px;
      font-size:16px;
    }
    .t-body p{
      margin:8px 0 0;
      color: rgba(91,102,122,.95);
      font-weight:780;
      line-height:1.7;
      font-size:13.8px;
      max-width: 90ch;
    }
    .workflow-cta{
      margin-top:18px;
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: linear-gradient(135deg, rgba(37,99,235,.10), rgba(124,58,237,.08), rgba(0,194,255,.06));
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    .workflow-cta-k{ font-weight:1000; color: rgba(31,41,55,.95); }
    .workflow-cta-left .cta-k{
      font-weight:1000; color: rgba(37,99,235,.95); font-size:13.5px;
      letter-spacing:.2px;
    }
    .workflow-cta-left .cta-v{
      margin-top:8px;
      font-weight:950;
      color: rgba(31,41,55,.95);
      line-height:1.45;
    }
    .workflow-cta-right{
      display:flex;
      gap:12px;
      align-items:center;
      flex-wrap:wrap;
      justify-content:flex-end;
    }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
      align-items:stretch;
    }
    .case-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
      transition: transform .18s ease, box-shadow .18s ease;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .case-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 26px 70px rgba(15,23,42,.10);
    }
    .case-top{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .case-badge{
      width:fit-content;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(37,99,235,.20);
      background: rgba(37,99,235,.08);
      color: rgba(29,78,216,.95);
      font-weight:1000;
      font-size:12.5px;
    }
    .case-card h3{
      margin:0;
      font-size:16px;
      font-weight:1000;
      letter-spacing:-.25px;
      line-height:1.25;
    }
    .case-card p{
      margin:0;
      color: rgba(91,102,122,.95);
      font-weight:780;
      line-height:1.75;
      font-size:13.8px;
      min-height: 72px;
    }
    .case-meta{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:auto;
    }
    .meta-chip{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.55);
      font-weight:900;
      font-size:12.3px;
      color: rgba(31,41,55,.92);
    }
    .case-card .cta-text{
      margin-top:2px;
      display:inline-flex;
    }

    .comparison-top{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:16px;
      align-items:stretch;
      margin-bottom: 16px;
    }
    .rating-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.70);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .rating-row{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
    }
    .stars .star{
      font-size:18px;
      color: rgba(245,158,11,.95);
      text-shadow: 0 10px 25px rgba(245,158,11,.25);
      letter-spacing:-2px;
    }
    .rating-k{
      font-size:13px;
      color: rgba(91,102,122,.95);
      font-weight:900;
      margin-bottom:6px;
    }
    .rating-v{
      font-size:18px;
      font-weight:1000;
      letter-spacing:-.25px;
      color: rgba(31,41,55,.95);
    }
    .score{
      display:flex;
      align-items:baseline;
      gap:12px;
    }
    .score-num{
      font-weight:1000;
      font-size:44px;
      letter-spacing:-1.2px;
      color: rgba(37,99,235,.98);
    }
    .score-sub{
      font-weight:950;
      color: rgba(31,41,55,.92);
      font-size:14px;
    }
    .rating-note{
      color: rgba(91,102,122,.95);
      font-weight:800;
      font-size:13px;
      line-height:1.6;
    }

    .comparison-actions{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      gap:12px;
    }
    .action-row{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }
    .action-small{
      color: rgba(91,102,122,.95);
      font-weight:800;
      font-size:13.5px;
      line-height:1.6;
    }

    .compare-table-wrap{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
      overflow:hidden;
    }
    .comparison-table{
      min-width: 820px;
      background: rgba(255,255,255,.52);
      border:1px solid rgba(15,23,42,.08);
    }
    .comparison-table th{ position:sticky; top:0; }
    .strong{
      font-weight:1000;
      color: rgba(31,41,55,.95);
      white-space:nowrap;
    }

    .compare-bottom{
      margin-top:14px;
      display:flex;
      justify-content:space-between;
      gap:14px;
      align-items:center;
      flex-wrap:wrap;
      border-top:1px solid rgba(15,23,42,.08);
      padding-top:14px;
    }
    .compare-bottom-k{
      font-weight:1000;
      letter-spacing:-.25px;
    }
    .compare-bottom-v{
      margin-top:8px;
      color: rgba(91,102,122,.95);
      font-weight:800;
      line-height:1.6;
      font-size:13.8px;
    }
    .compare-bottom-right{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      justify-content:flex-end;
      align-items:center;
    }

    .form-grid{
      display:grid;
      grid-template-columns: 1.12fr .88fr;
      gap:16px;
      align-items:start;
    }
    .form-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.72);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
    }
    .form{
      display:grid;
      gap:12px;
    }
    .form-row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .field{
      display:grid;
      gap:8px;
    }
    .label-text{
      font-weight:1000;
      font-size:13.5px;
      color: rgba(31,41,55,.95);
    }
    input, textarea, select{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.72);
      color: rgba(31,41,55,.95);
      font-weight:800;
      font-size:14px;
      transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
    }
    textarea{ resize: vertical; min-height: 120px; }
    input::placeholder, textarea::placeholder{ color: rgba(91,102,122,.65); font-weight:750; }
    input:focus, textarea:focus, select:focus{
      border-color: rgba(37,99,235,.45);
      box-shadow: 0 0 0 4px rgba(37,99,235,.12);
      background: rgba(255,255,255,.86);
      outline:none;
    }
    .form-foot{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      margin-top:4px;
    }
    .form-tip{
      color: rgba(91,102,122,.95);
      font-weight:850;
      font-size:13px;
      line-height:1.6;
      max-width: 40ch;
      padding-top: 10px;
    }

    .form-side{
      display:grid;
      gap:14px;
    }
    .info-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: linear-gradient(180deg, rgba(37,99,235,.07), rgba(255,255,255,.60));
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
    }
    .info-title{
      font-weight:1000;
      letter-spacing:-.25px;
      font-size:16px;
      margin-bottom:12px;
    }
    .info-list{
      display:grid;
      gap:12px;
    }
    .info-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:12px;
      border-radius:16px;
      background: rgba(255,255,255,.62);
      border:1px solid rgba(15,23,42,.08);
    }
    .info-dot{
      width:12px; height:12px;
      border-radius:4px;
      margin-top:6px;
      background: linear-gradient(135deg, rgba(37,99,235,1), rgba(124,58,237,1));
      box-shadow: 0 18px 40px rgba(37,99,235,.22);
      flex:0 0 auto;
    }
    .info-k{
      font-weight:1000;
      font-size:14px;
      letter-spacing:-.2px;
    }
    .info-v{
      margin-top:6px;
      color: rgba(91,102,122,.95);
      font-weight:800;
      font-size:13.3px;
      line-height:1.5;
    }
    .info-foot{ margin-top:12px; display:flex; gap:12px; flex-wrap:wrap; }

    .small-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.66);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
    }
    .small-card-title{
      font-weight:1000;
      font-size:15.5px;
      letter-spacing:-.25px;
      margin-bottom:12px;
    }
    .chip-grid{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .chip2{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.56);
      font-weight:950;
      font-size:12.5px;
      color: rgba(31,41,55,.92);
    }
    .small-card-note{
      margin-top:12px;
      color: rgba(91,102,122,.95);
      font-weight:820;
      line-height:1.6;
      font-size:13px;
    }

    .token-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
      align-items:start;
    }
    .token-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
    }
    .token-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:12px;
    }
    .token-top h3{
      margin:0;
      font-weight:1000;
      letter-spacing:-.25px;
      font-size:16px;
    }
    .token-sub{
      margin-top:6px;
      color: rgba(91,102,122,.95);
      font-weight:800;
      line-height:1.5;
      font-size:13.5px;
    }
    .token-badge{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(0,194,255,.20);
      background: rgba(0,194,255,.08);
      color: rgba(14,116,144,.95);
      font-weight:1000;
      font-size:12.5px;
      white-space:nowrap;
    }
    .token-form{
      display:grid;
      gap:12px;
      padding-top: 4px;
    }
    .token-row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:end;
    }
    .smallField select{ padding-top: 11px; padding-bottom: 11px; }

    .range-wrap{
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.56);
    }
    .range-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:10px;
    }
    .range-val{
      font-weight:1000;
      color: rgba(31,41,55,.95);
      font-size:13.5px;
    }
    input[type="range"]{
      width:100%;
      accent-color: rgba(37,99,235,1);
    }
    .range-labels{
      margin-top:8px;
      display:flex;
      justify-content:space-between;
      color: rgba(91,102,122,.95);
      font-weight:850;
      font-size:12px;
    }
    .token-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      justify-content:flex-end;
    }

    .token-result{
      display:grid;
      gap:14px;
      align-content:start;
    }
    .result-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
    }
    .result-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:12px;
    }
    .result-card h3{
      margin:0;
      font-weight:1000;
      letter-spacing:-.25px;
      font-size:16px;
    }
    .result-badge{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(124,58,237,.20);
      background: rgba(124,58,237,.08);
      color: rgba(91,33,182,.95);
      font-weight:1000;
      font-size:12.5px;
      white-space:nowrap;
    }
    .result-list{
      display:grid;
      gap:12px;
    }
    .result-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.56);
    }
    .result-ico{
      width:26px; height:26px;
      border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(37,99,235,.12);
      border:1px solid rgba(37,99,235,.20);
      color: rgba(37,99,235,.98);
      font-weight:1000;
      flex:0 0 auto;
    }
    .result-k{
      font-weight:1000;
      letter-spacing:-.2px;
      font-size:14px;
      color: rgba(31,41,55,.95);
    }
    .result-v{
      margin-top:6px;
      color: rgba(91,102,122,.95);
      font-weight:820;
      line-height:1.5;
      font-size:13.5px;
    }
    .result-metric{
      margin-top:14px;
      padding-top: 14px;
      border-top:1px solid rgba(15,23,42,.08);
    }
    .metric-row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-bottom:12px;
    }
    .metric{
      border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.56);
      padding:12px;
    }
    .metric-k{
      font-weight:1000;
      font-size:13px;
      color: rgba(91,102,122,.95);
      letter-spacing:.2px;
      margin-bottom:8px;
    }
    .metric-v{
      font-weight:1000;
      color: rgba(31,41,55,.95);
      line-height:1.45;
      font-size:14px;
    }
    .metric-row:last-child{ margin-bottom:0; }
    .result-foot{
      margin-top:10px;
      display:flex;
      justify-content:flex-end;
    }
    .token-advice{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.55));
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
    }
    .advice-title{
      font-weight:1000;
      font-size:15.5px;
      letter-spacing:-.25px;
      margin-bottom:12px;
    }

    .training-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:16px;
      align-items:start;
    }
    .training-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
    }
    .training-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:12px;
    }
    .training-icon{
      width:44px; height:44px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(124,58,237,.20);
      background: rgba(124,58,237,.08);
      color: rgba(91,33,182,.95);
      box-shadow: 0 18px 40px rgba(124,58,237,.10);
      flex:0 0 auto;
    }
    .training-card h3{
      margin:0;
      font-weight:1000;
      letter-spacing:-.25px;
      font-size:16px;
    }
    .training-sub{
      margin-top:6px;
      color: rgba(91,102,122,.95);
      font-weight:820;
      line-height:1.5;
      font-size:13.5px;
    }
    .training-list{
      margin-top:12px;
      display:grid;
      gap:10px;
    }
    .training-item{
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.56);
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:baseline;
    }
    .training-k{
      font-weight:1000;
      color: rgba(31,41,55,.95);
      font-size:14px;
      letter-spacing:-.2px;
    }
    .training-v{
      color: rgba(91,102,122,.95);
      font-weight:840;
      font-size:13.5px;
      line-height:1.4;
      text-align:right;
    }
    .training-cta{
      margin-top:14px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
    }

    .training-side{
      display:grid;
      gap:14px;
    }
    .train-side-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.66);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
    }
    .train-side-card.alt{
      background: linear-gradient(180deg, rgba(0,194,255,.06), rgba(255,255,255,.55));
    }
    .train-side-title{
      font-weight:1000;
      font-size:15.5px;
      letter-spacing:-.25px;
      margin-bottom:12px;
    }
    .train-side-steps{
      display:grid;
      gap:12px;
    }
    .sideStep{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.56);
    }
    .snum{
      width:30px; height:30px;
      border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      color:#fff;
      background: linear-gradient(135deg, rgba(37,99,235,1), rgba(124,58,237,1));
      flex:0 0 auto;
    }
    .shead{
      font-weight:1000;
      color: rgba(31,41,55,.95);
      font-size:14px;
      letter-spacing:-.2px;
    }
    .sdesc{
      margin-top:6px;
      color: rgba(91,102,122,.95);
      font-weight:830;
      font-size:13.5px;
      line-height:1.5;
    }
    .train-side-actions{ margin-top:12px; display:flex; gap:12px; flex-wrap:wrap; }
    .train-side-desc{
      color: rgba(91,102,122,.95);
      font-weight:820;
      line-height:1.7;
      font-size:13.8px;
      margin-bottom:12px;
    }

    .help-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
      align-items:start;
    }
    .help-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
    }
    .help-card.alt{
      background: linear-gradient(180deg, rgba(124,58,237,.06), rgba(255,255,255,.55));
    }
    .help-card h3{
      margin:0;
      font-weight:1000;
      letter-spacing:-.25px;
      font-size:16px;
    }
    .help-list{
      margin:12px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:12px;
    }
    .help-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.56);
    }
    .h-ico{
      width:28px; height:28px;
      border-radius:12px;
      background: rgba(37,99,235,.12);
      border:1px solid rgba(37,99,235,.20);
      color: rgba(37,99,235,.98);
      font-weight:1000;
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
    }
    .h-title{
      font-weight:1000;
      color: rgba(31,41,55,.95);
      letter-spacing:-.2px;
      font-size:14px;
    }
    .h-desc{
      margin-top:6px;
      color: rgba(91,102,122,.95);
      font-weight:830;
      line-height:1.5;
      font-size:13.5px;
    }
    .help-actions{
      margin-top:14px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      justify-content:flex-end;
      align-items:center;
    }
    .cost-widgets{
      margin-top:12px;
      display:grid;
      gap:10px;
    }
    .cost-widget{
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.56);
    }
    .cw-k{
      font-weight:1000;
      color: rgba(31,41,55,.95);
      letter-spacing:-.2px;
      font-size:14px;
      margin-bottom:6px;
    }
    .cw-v{
      color: rgba(91,102,122,.95);
      font-weight:830;
      line-height:1.5;
      font-size:13.5px;
    }
    .quick-links{
      margin-top:12px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .quick-links a{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.56);
      font-weight:950;
      color: rgba(31,41,55,.95);
      font-size:14px;
      text-align:left;
    }
    .help-note{
      margin-top:12px;
      color: rgba(91,102,122,.95);
      font-weight:830;
      line-height:1.7;
      font-size:13.5px;
    }

    .faq-wrap{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
      align-items:start;
    }
    .faq-col{}
    .faq-h{
      margin:0 0 12px;
      font-weight:1000;
      letter-spacing:-.25px;
      font-size:16px;
      color: rgba(31,41,55,.95);
    }
    .faq{
      display:grid;
      gap:10px;
    }
    .faq-item{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 50px rgba(15,23,42,.05);
      overflow:hidden;
    }
    .faq-q{
      width:100%;
      text-align:left;
      background: transparent;
      border:none;
      padding:14px 14px;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      font-weight:1000;
      color: rgba(31,41,55,.95);
      letter-spacing:-.2px;
      font-size:14.5px;
    }
    .faq-a{
      max-height:0;
      overflow:hidden;
      transition: max-height .28s ease;
      padding:0 14px;
      color: rgba(91,102,122,.98);
      font-weight:820;
      line-height:1.75;
      font-size:13.8px;
    }
    .faq-icon{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.55);
      position:relative;
      flex:0 0 auto;
    }
    .faq-icon::before, .faq-icon::after{
      content:"";
      position:absolute;
      left:50%; top:50%;
      width:14px; height:2px;
      background: rgba(31,41,55,.72);
      transform: translate(-50%,-50%);
      border-radius:2px;
      transition: transform .2s ease, opacity .2s ease;
    }
    .faq-icon::after{
      width:2px; height:14px;
    }
    .faq-q[aria-expanded="true"] .faq-icon::after{ opacity:0; }
    .faq-q[aria-expanded="true"] .faq-icon::before{ transform: translate(-50%,-50%) rotate(90deg); }

    .faq-bottom{
      margin-top:16px;
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: linear-gradient(135deg, rgba(37,99,235,.10), rgba(124,58,237,.08), rgba(0,194,255,.06));
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    .faq-bottom-k{
      font-weight:1000;
      letter-spacing:-.25px;
    }
    .faq-bottom-v{
      margin-top:8px;
      color: rgba(91,102,122,.95);
      font-weight:830;
      line-height:1.6;
      font-size:13.8px;
    }
    .faq-bottom-right{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      justify-content:flex-end;
      align-items:center;
    }

    .ency-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .ency-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
      transition: transform .18s ease, box-shadow .18s ease;
      display:flex;
      flex-direction:column;
      gap:10px;
      min-height: 160px;
    }
    .ency-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 26px 70px rgba(15,23,42,.10);
    }
    .ency-card h3{
      margin:0;
      font-weight:1000;
      letter-spacing:-.25px;
      font-size:16px;
    }
    .ency-card p{
      margin:0;
      color: rgba(91,102,122,.95);
      font-weight:830;
      line-height:1.75;
      font-size:13.8px;
      flex:1 1 auto;
    }
    .ency-foot{ display:flex; justify-content:flex-start; }

    .article-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:16px;
      align-items:start;
    }
    .articles-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
    }
    .articles-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:12px;
    }
    .articles-card h3{
      margin:0;
      font-weight:1000;
      letter-spacing:-.25px;
      font-size:16px;
    }
    .articles-sub{
      margin-top:6px;
      color: rgba(91,102,122,.95);
      font-weight:830;
      font-size:13.5px;
      line-height:1.5;
    }
    .article-list{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:10px;
    }
    .article-list li a{
      display:grid;
      grid-template-columns: 12px 1fr auto;
      gap:12px;
      align-items:center;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.56);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .article-list li a:hover{
      transform: translateY(-1px);
      box-shadow: 0 22px 60px rgba(15,23,42,.08);
    }
    .a-dot{
      width:10px; height:10px;
      border-radius:4px;
      background: linear-gradient(135deg, rgba(37,99,235,1), rgba(124,58,237,1));
      box-shadow: 0 16px 35px rgba(37,99,235,.20);
    }
    .a-title{
      font-weight:1000;
      letter-spacing:-.2px;
      color: rgba(31,41,55,.95);
      font-size:14.2px;
      line-height:1.35;
    }
    .a-meta{
      color: rgba(91,102,122,.95);
      font-weight:850;
      font-size:12.8px;
      white-space:nowrap;
    }
    .articles-more{
      margin-top:12px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      justify-content:flex-start;
    }

    .review-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .review-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
      transition: transform .18s ease, box-shadow .18s ease;
      display:flex;
      flex-direction:column;
      gap:12px;
      min-height: 235px;
    }
    .review-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 26px 70px rgba(15,23,42,.10);
    }
    .review-top{
      display:flex;
      gap:12px;
      align-items:flex-start;
      justify-content:space-between;
    }
    .review-avatar{
      width:44px; height:44px;
      border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      color:#fff;
      background: linear-gradient(135deg, rgba(37,99,235,1), rgba(124,58,237,1));
      border:1px solid rgba(255,255,255,.35);
      box-shadow: 0 18px 40px rgba(37,99,235,.18);
      flex:0 0 auto;
    }
    .review-role{
      font-weight:1000;
      color: rgba(31,41,55,.95);
      letter-spacing:-.2px;
      font-size:14.2px;
    }
    .review-stars{
      margin-top:6px;
      color: rgba(245,158,11,.95);
      font-weight:1000;
      letter-spacing:-1px;
      font-size:14px;
    }
    .review-text{
      margin:0;
      color: rgba(91,102,122,.98);
      font-weight:820;
      line-height:1.75;
      font-size:13.8px;
      flex:1 1 auto;
    }
    .review-foot{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:auto;
    }
    .review-chip{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.56);
      font-weight:950;
      font-size:12.5px;
      color: rgba(31,41,55,.92);
    }

    .contact-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
      align-items:start;
    }
    .contact-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
    }
    .contact-top{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:12px;
      margin-bottom:12px;
    }
    .contact-sub{
      margin-top:6px;
      color: rgba(91,102,122,.95);
      font-weight:830;
      font-size:13.5px;
      line-height:1.5;
    }
    .contact-badges{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
    .badgeMini{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.56);
      font-weight:1000;
      font-size:12.5px;
      color: rgba(31,41,55,.92);
    }
    .contact-kv{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:8px;
    }
    .kv2{
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.56);
    }
    .kv2-k{
      font-weight:1000;
      font-size:13px;
      color: rgba(91,102,122,.95);
      margin-bottom:8px;
      letter-spacing:.2px;
    }
    .kv2-v{
      font-weight:950;
      color: rgba(31,41,55,.95);
      font-size:14px;
      line-height:1.4;
    }
    .link{ color: rgba(37,99,235,.98); text-decoration: underline; text-decoration-thickness:2px; text-underline-offset:3px; }

    .contact-qrcode{
      margin-top:14px;
      display:flex;
      gap:14px;
      align-items:center;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.56);
      padding:12px;
    }
    .qr-wrap{
      width:92px; height:92px;
      border-radius:18px;
      background: rgba(255,255,255,.75);
      border:1px solid rgba(15,23,42,.08);
      display:flex;
      align-items:center;
      justify-content:center;
      overflow:hidden;
      flex:0 0 auto;
    }
    .qr-img{
      width:100%;
      height:auto;
      display:block;
      object-fit:contain;
    }
    .qr-text{ flex:1 1 auto; }
    .qr-title{
      font-weight:1000;
      letter-spacing:-.2px;
      font-size:15px;
    }
    .qr-desc{
      margin-top:8px;
      color: rgba(91,102,122,.95);
      font-weight:830;
      line-height:1.6;
      font-size:13.5px;
    }
    .qr-actions{ margin-top:12px; display:flex; gap:12px; flex-wrap:wrap; }

    .contact-foot{
      margin-top:14px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      justify-content:flex-start;
      align-items:center;
    }

    .contact-side{ display:grid; gap:14px; }
    .compact-form{
      display:grid;
      gap:12px;
    }
    .compact-tip{
      color: rgba(91,102,122,.95);
      font-weight:830;
      line-height:1.6;
      font-size:13.3px;
      margin-top:-2px;
    }
    .side-divider{
      height:1px;
      background: rgba(15,23,42,.08);
      margin:12px 0;
    }

    .join-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
      align-items:start;
    }
    .join-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
    }
    .join-card h3{
      margin:0;
      font-weight:1000;
      letter-spacing:-.25px;
      font-size:16px;
    }
    .join-pills{ margin-top:12px; display:flex; flex-wrap:wrap; gap:10px; }
    .join-actions{
      margin-top:14px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
    }
    .join-side{
      display:grid;
      gap:14px;
      align-content:start;
    }

    .price-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
      overflow:hidden;
    }
    .price-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:12px;
    }
    .price-k{
      font-weight:1000;
      color: rgba(37,99,235,.98);
      font-size:13.5px;
      letter-spacing:.2px;
    }
    .price-v{
      margin-top:8px;
      font-weight:1000;
      letter-spacing:-.25px;
      font-size:15px;
      line-height:1.45;
      color: rgba(31,41,55,.95);
      max-width: 40ch;
    }
    .price-badge{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(245,158,11,.25);
      background: rgba(245,158,11,.10);
      color: rgba(180,83,9,.95);
      font-weight:1000;
      font-size:12.5px;
      white-space:nowrap;
    }
    .price-body{
      display:grid;
      gap:12px;
      margin-top:10px;
    }
    .price-row2{
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.56);
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }
    .pr-title{
      font-weight:1000;
      letter-spacing:-.2px;
      color: rgba(31,41,55,.95);
      font-size:14px;
      margin-bottom:6px;
    }
    .pr-desc{
      color: rgba(91,102,122,.95);
      font-weight:830;
      line-height:1.5;
      font-size:13.3px;
    }
    .pr-right{ text-align:right; }
    .pr-num{
      font-weight:1000;
      color: rgba(31,41,55,.95);
      font-size:14px;
    }
    .pr-sub{
      margin-top:6px;
      font-weight:900;
      color: rgba(91,102,122,.95);
      font-size:12.8px;
      line-height:1.4;
    }
    .price-foot{
      margin-top:10px;
      display:flex;
      justify-content:flex-end;
    }

    .join-side-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.66);
      box-shadow: 0 18px 50px rgba(15,23,42,.06);
      padding:16px;
    }
    .join-side-title{
      font-weight:1000;
      letter-spacing:-.25px;
      font-size:15.5px;
    }
    .join-side-hint{
      margin-top:10px;
      color: rgba(91,102,122,.95);
      font-weight:830;
      font-size:13.3px;
      line-height:1.6;
    }
    .join-side-actions{ margin-top:14px; display:flex; gap:12px; flex-wrap:wrap; }

    .footer{
      background: linear-gradient(180deg, rgba(255,255,255,.0), rgba(15,23,42,.03));
      border-top:1px solid rgba(15,23,42,.08);
      padding: 26px 0 36px;
    }
    .footer-inner{
      display:grid;
      gap:18px;
    }
    .footer-top{
      display:flex;
      gap:16px;
      align-items:flex-start;
      justify-content:space-between;
      flex-wrap:wrap;
    }
    .footer-brand{
      display:flex;
      gap:12px;
      align-items:center;
      min-width: 260px;
    }
    .footer-logo{
      width:46px; height:46px;
      border-radius:16px;
      background: linear-gradient(135deg, rgba(37,99,235,.13), rgba(124,58,237,.12));
      border:1px solid rgba(124,58,237,.20);
      box-shadow: 0 18px 40px rgba(124,58,237,.10);
      overflow:hidden;
      flex:0 0 auto;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .footer-logo-img{
      width:100%;
      height:auto;
      display:block;
    }
    .footer-title{
      font-weight:1000;
      letter-spacing:-.3px;
      font-size:16px;
    }
    .footer-sub{
      margin-top:6px;
      color: rgba(91,102,122,.95);
      font-weight:850;
      font-size:13.5px;
      line-height:1.4;
      max-width: 46ch;
    }

    .footer-links{
      display:grid;
      grid-template-columns: repeat(3, minmax(160px, 1fr));
      gap:14px;
      width: min(720px, 100%);
    }
    .footer-col{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.62);
      padding:14px;
      box-shadow: 0 18px 50px rgba(15,23,42,.05);
    }
    .foot-k{
      font-weight:1000;
      color: rgba(31,41,55,.95);
      font-size:13.5px;
      margin-bottom:10px;
      letter-spacing:.2px;
    }
    .footer-col a{
      display:block;
      padding:8px 0;
      color: rgba(91,102,122,.95);
      font-weight:850;
      font-size:13.5px;
    }
    .footer-col a:hover{
      color: rgba(37,99,235,.98);
      text-decoration: underline;
      text-decoration-thickness:2px;
      text-underline-offset:3px;
    }

    .footer-mid{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.62);
      padding:14px;
      box-shadow: 0 18px 50px rgba(15,23,42,.05);
    }
    .footer-net{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    .footer-net-k{
      font-weight:1000;
      color: rgba(31,41,55,.95);
      font-size:13.5px;
      letter-spacing:.2px;
    }
    .footer-net-links{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .footer-net-links a{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.56);
      font-weight:950;
      font-size:12.5px;
      color: rgba(31,41,55,.92);
    }
    .footer-net-links a:hover{
      color: rgba(37,99,235,.98);
      border-color: rgba(37,99,235,.25);
    }

    .footer-bottom{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      color: rgba(91,102,122,.95);
      font-weight:850;
      font-size:13.5px;
    }
    .footer-legal{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
    }
    .footer-legal a{
      color: rgba(91,102,122,.95);
      font-weight:900;
    }
    .footer-legal a:hover{
      color: rgba(37,99,235,.98);
      text-decoration: underline;
      text-decoration-thickness:2px;
      text-underline-offset:3px;
    }

    .to-top{
      position:fixed;
      right:16px;
      bottom:16px;
      width:46px; height:46px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 22px 60px rgba(15,23,42,.12);
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      color: rgba(31,41,55,.92);
      opacity:0;
      transform: translateY(10px);
      pointer-events:none;
      transition: opacity .18s ease, transform .18s ease;
      z-index:1000;
    }
    .to-top.show{
      opacity:1;
      transform: translateY(0);
      pointer-events:auto;
    }

    .float-kefu{
      position:fixed;
      left:16px;
      bottom:16px;
      z-index:1000;
      pointer-events:none;
    }
    .float-kefu-btn{
      pointer-events:auto;
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:12px 14px;
      border-radius:18px;
      border:1px solid rgba(124,58,237,.22);
      background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(37,99,235,.10));
      box-shadow: 0 22px 60px rgba(124,58,237,.16);
      font-weight:1000;
      color: rgba(31,41,55,.95);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .float-kefu-btn:hover{
      transform: translateY(-2px);
      box-shadow: 0 28px 70px rgba(124,58,237,.22);
    }
    .float-dot{
      width:12px; height:12px;
      border-radius:4px;
      background: linear-gradient(135deg, rgba(37,99,235,1), rgba(124,58,237,1));
      box-shadow: 0 18px 40px rgba(37,99,235,.20);
    }
    .float-text{ font-size:13.8px; }

    @media (max-width: 980px){
      .hero-grid{ grid-template-columns: 1fr; }
      .hero-right{ min-height:auto; justify-content:flex-start; }
      .hero-card{ max-width: 100%; }
      .hero-meta{ grid-template-columns: 1fr; }
      .about-grid{ grid-template-columns: 1fr; }
      .grid-split{ grid-template-columns: 1fr; }
      .kv{ grid-template-columns: 1fr; }
      .cards-3{ grid-template-columns: 1fr; }
      .two-col{ grid-template-columns: 1fr; }
      .steps-grid{ grid-template-columns: 1fr; }
      .industry-grid{ grid-template-columns: 1fr; }
      .network-grid{ grid-template-columns: 1fr; }
      .case-grid{ grid-template-columns: 1fr; }
      .comparison-top{ grid-template-columns: 1fr; }
      .token-grid{ grid-template-columns: 1fr; }
      .training-grid{ grid-template-columns: 1fr; }
      .help-grid{ grid-template-columns: 1fr; }
      .faq-wrap{ grid-template-columns: 1fr; }
      .ency-grid{ grid-template-columns: 1fr; }
      .article-grid{ grid-template-columns: 1fr; }
      .review-grid{ grid-template-columns: 1fr; }
      .contact-grid{ grid-template-columns: 1fr; }
      .join-grid{ grid-template-columns: 1fr; }
      .footer-links{ grid-template-columns: 1fr; width:100%; }
      table{ min-width: 640px; }
      .metric-row{ grid-template-columns: 1fr; }
      .form-grid{ grid-template-columns: 1fr; }
      .nav-links{ display:none; }
      .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
      .mobile-links{ grid-template-columns: 1fr; }
    }