:root{
      --bg: #f6f7fb;
      --panel: rgba(255,255,255,.72);
      --panel-strong: rgba(255,255,255,.88);
      --text: #0b1220;
      --muted: rgba(11,18,32,.68);
      --muted-2: rgba(11,18,32,.52);
      --border: rgba(20,28,45,.12);
      --shadow: 0 18px 50px rgba(10, 20, 40, .10);
      --shadow-2: 0 10px 30px rgba(10, 20, 40, .12);
      --brand: #6d5cff;
      --brand-2: #00d4ff;
      --brand-3: #ff4fd8;
      --ok: #0aa36e;
      --warn: #ffb020;
      --radius: 18px;
      --radius2: 24px;
      --container: 1120px;
      --padX: 18px;
      --focus: 0 0 0 4px rgba(109,92,255,.18);
    }

    *{ box-sizing:border-box; }
    html{ scroll-behavior: smooth; }
    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(1200px 500px at 15% 0%, rgba(109,92,255,.14), transparent 60%),
        radial-gradient(900px 420px at 85% 20%, rgba(0,212,255,.10), transparent 55%),
        linear-gradient(180deg, #fbfcff 0%, var(--bg) 52%, #f8f9ff 100%);
    }

    a{ color: inherit; text-decoration: none; }
    a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible{
      outline: none;
      box-shadow: var(--focus);
      border-color: rgba(109,92,255,.35) !important;
    }

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

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

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

    .brand-link{ display:inline-flex; align-items:center; gap:10px; }
    .ai-page-logo{
      width: 136px;
      height:auto;
      display:block;
    }

    .nav-desktop{
      display:flex;
      align-items:center;
      gap: 18px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    .nav-link{
      font-size: 14px;
      color: rgba(11,18,32,.78);
      padding: 10px 10px;
      border-radius: 999px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
      white-space: nowrap;
    }
    .nav-link:hover{
      background: rgba(109,92,255,.10);
      color: rgba(11,18,32,.92);
      transform: translateY(-1px);
    }
    .nav-cta{
      background: linear-gradient(135deg, rgba(109,92,255,.15), rgba(0,212,255,.10));
      border: 1px solid rgba(109,92,255,.18);
      color: rgba(11,18,32,.9);
    }

    .nav-toggle{
      display:none;
      align-items:center;
      gap:10px;
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.65);
      border-radius: 14px;
      padding: 10px 12px;
      cursor:pointer;
      color: rgba(11,18,32,.9);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      box-shadow: 0 10px 26px rgba(10, 20, 40, .08);
    }
    .nav-toggle:hover{ transform: translateY(-1px); border-color: rgba(109,92,255,.25); }
    .toggle-text{ font-size: 14px; font-weight: 650; }
    .hamburger{
      width: 18px; height: 12px; display:inline-block; position: relative;
    }
    .hamburger::before, .hamburger::after{
      content:""; position:absolute; left:0; right:0; height:2px; background: rgba(11,18,32,.85); border-radius: 999px;
    }
    .hamburger::before{ top:0; box-shadow: 0 5px 0 rgba(11,18,32,.85); }
    .hamburger::after{ bottom:0; }

    .mobile-menu{
      display:none;
      position: absolute;
      left:0; right:0;
      top: 100%;
      background: rgba(251, 252, 255, .92);
      border-bottom: 1px solid rgba(20,28,45,.08);
      padding: 14px 0 18px;
      transform: translateY(-8px);
      opacity: 0;
      transition: opacity .2s ease, transform .2s ease;
    }
    .mobile-menu.open{
      display:block;
      transform: translateY(0);
      opacity: 1;
    }
    .mobile-menu-inner{
      border: 1px solid rgba(20,28,45,.10);
      background: rgba(255,255,255,.72);
      border-radius: 18px;
      padding: 14px;
      box-shadow: 0 18px 60px rgba(10,20,40,.12);
    }
    .mobile-head{
      display:flex;
      align-items:center;
      justify-content: space-between;
      padding-bottom: 10px;
      border-bottom: 1px dashed rgba(20,28,45,.12);
      margin-bottom: 12px;
    }
    .mobile-title{ font-weight: 780; letter-spacing:.2px; }
    .mobile-close{
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.7);
      border-radius: 12px;
      padding: 8px 10px;
      cursor:pointer;
      font-weight: 650;
      color: rgba(11,18,32,.9);
    }
    .mobile-links{
      display:flex;
      flex-direction: column;
      gap: 8px;
    }
    .mobile-link{
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid rgba(20,28,45,.10);
      background: rgba(255,255,255,.66);
      color: rgba(11,18,32,.88);
      font-weight: 620;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .mobile-link:hover{
      transform: translateY(-1px);
      border-color: rgba(109,92,255,.25);
      background: rgba(109,92,255,.08);
    }
    .mobile-primary{
      margin-top: 6px;
      padding: 12px 14px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(109,92,255,.95), rgba(0,212,255,.75));
      color: #fff;
      font-weight: 800;
      border: 0;
      text-align:center;
      box-shadow: 0 14px 40px rgba(109,92,255,.25);
    }

    .hero{
      position: relative;
      overflow: hidden;
      padding: 56px 0 28px;
    }
    .hero-bg{
      position:absolute; inset: 0;
      pointer-events:none;
    }
    .gridlines{
      position:absolute; inset: -50px;
      background:
        linear-gradient(transparent 0 24px, rgba(109,92,255,.06) 24px 25px),
        linear-gradient(90deg, transparent 0 24px, rgba(0,212,255,.05) 24px 25px);
      background-size: 60px 60px;
      opacity:.8;
      mask-image: radial-gradient(closest-side at 50% 15%, black 55%, transparent 95%);
    }
    .glow{
      position:absolute;
      width: 520px; height: 520px;
      border-radius: 50%;
      filter: blur(30px);
      opacity: .9;
      animation: floaty 9s ease-in-out infinite;
    }
    .glow-a{
      left: -160px; top: -180px;
      background: radial-gradient(circle at 30% 30%, rgba(109,92,255,.55), transparent 60%);
    }
    .glow-b{
      right: -190px; top: -60px;
      background: radial-gradient(circle at 35% 35%, rgba(0,212,255,.48), transparent 62%);
      animation-delay: -3s;
    }
    @keyframes floaty{
      0%,100%{ transform: translate3d(0,0,0) scale(1); }
      50%{ transform: translate3d(0,18px,0) scale(1.03); }
    }

    .hero-inner{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 22px;
      align-items: start;
      position: relative;
      z-index: 1;
    }

    .pill-row{ display:flex; flex-wrap: wrap; gap: 10px; margin: 6px 0 14px; }
    .pill{
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(20,28,45,.10);
      background: rgba(255,255,255,.66);
      color: rgba(11,18,32,.86);
      font-weight: 650;
      font-size: 13px;
      box-shadow: 0 10px 22px rgba(10,20,40,.06);
    }

    .hero-title{
      margin: 0 0 12px;
      font-size: clamp(26px, 3.2vw, 44px);
      letter-spacing: -0.6px;
      line-height: 1.12;
      font-weight: 900;
    }
    .hero-sub{
      margin: 0 0 18px;
      max-width: 58ch;
      color: rgba(11,18,32,.74);
      font-size: 15.5px;
      line-height: 1.75;
    }
    .hero-actions{
      display:flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 18px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap: 10px;
      padding: 12px 16px;
      border-radius: 14px;
      border: 1px solid rgba(20,28,45,.12);
      cursor:pointer;
      font-weight: 780;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
      color: rgba(11,18,32,.92);
      background: rgba(255,255,255,.62);
      user-select:none;
    }
    .btn-wide{ width: 100%; }
    .btn-small{ padding: 10px 12px; border-radius: 12px; font-weight: 760; }
    .btn:hover{ transform: translateY(-1px); box-shadow: 0 18px 40px rgba(10,20,40,.12); border-color: rgba(109,92,255,.24); }
    .btn-primary{
      border: 0;
      background: linear-gradient(135deg, rgba(109,92,255,.98), rgba(0,212,255,.86));
      color: #fff;
      box-shadow: 0 18px 50px rgba(109,92,255,.22);
    }
    .btn-primary:hover{ box-shadow: 0 22px 60px rgba(109,92,255,.26); }
    .btn-ghost{
      background: rgba(255,255,255,.55);
    }
    .btn-soft{
      background: linear-gradient(135deg, rgba(255,79,216,.10), rgba(109,92,255,.10));
      border-color: rgba(109,92,255,.18);
    }

    .hero-quick{
      margin-top: 18px;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    .quick-item{
      display:flex;
      gap: 12px;
      align-items:flex-start;
      background: rgba(255,255,255,.62);
      border: 1px solid rgba(20,28,45,.10);
      border-radius: 16px;
      padding: 12px 12px;
      box-shadow: 0 16px 40px rgba(10,20,40,.06);
      transition: transform .18s ease, border-color .18s ease;
      min-height: 82px;
    }
    .quick-item:hover{
      transform: translateY(-2px);
      border-color: rgba(109,92,255,.26);
    }
    .quick-icon{
      width: 38px; height: 38px;
      border-radius: 14px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(109,92,255,.15), rgba(0,212,255,.12));
      color: rgba(11,18,32,.92);
      border: 1px solid rgba(109,92,255,.18);
      flex: 0 0 auto;
    }
    .quick-title{ font-weight: 900; font-size: 13.6px; margin-bottom: 2px; }
    .quick-desc{ color: rgba(11,18,32,.62); font-size: 12.8px; line-height: 1.4; }

    .hero-right{
      display:flex;
      flex-direction: column;
      gap: 14px;
      align-items: stretch;
    }

    .data-card{
      border-radius: var(--radius2);
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.58));
      border: 1px solid rgba(20,28,45,.12);
      box-shadow: 0 22px 70px rgba(10,20,40,.12);
      padding: 16px;
      overflow: hidden;
      position: relative;
    }
    .data-card::after{
      content:"";
      position:absolute; inset: -1px;
      background: radial-gradient(400px 160px at 15% 0%, rgba(109,92,255,.20), transparent 60%),
                  radial-gradient(320px 150px at 85% 10%, rgba(0,212,255,.16), transparent 55%);
      pointer-events:none;
      opacity: .95;
    }
    .data-card > *{ position: relative; z-index: 1; }

    .data-head{
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }
    .data-title{ font-weight: 920; letter-spacing: -.2px; }
    .data-tag{
      font-size: 12px;
      font-weight: 820;
      padding: 7px 10px;
      border-radius: 999px;
      border: 1px solid rgba(109,92,255,.22);
      background: rgba(109,92,255,.08);
      color: rgba(11,18,32,.86);
      white-space: nowrap;
    }

    .data-grid{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin: 10px 0 6px;
    }
    .data-metric{
      background: rgba(255,255,255,.62);
      border: 1px solid rgba(20,28,45,.10);
      border-radius: 16px;
      padding: 12px;
      min-height: 78px;
      display:flex;
      flex-direction: column;
      justify-content: center;
    }
    .metric-num{
      font-size: 26px;
      font-weight: 950;
      letter-spacing: -0.6px;
      line-height: 1.05;
    }
    .metric-label{
      margin-top: 4px;
      font-size: 12.8px;
      color: rgba(11,18,32,.62);
      line-height: 1.4;
      font-weight: 650;
    }
    .data-foot{
      display:flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items:center;
      justify-content: space-between;
      margin-top: 12px;
    }

    .inline-link{
      color: rgba(11,18,32,.88);
      font-weight: 800;
      font-size: 13.6px;
      position: relative;
      padding: 8px 0;
      display:inline-block;
      transition: color .2s ease, transform .2s ease;
    }
    .inline-link::after{
      content:"";
      position:absolute; left:0; bottom:4px;
      width: 100%; height: 2px;
      background: linear-gradient(90deg, rgba(109,92,255,.85), rgba(0,212,255,.75));
      transform: scaleX(.2);
      transform-origin:left;
      opacity: .9;
      transition: transform .2s ease;
      border-radius: 999px;
    }
    .inline-link:hover{ transform: translateY(-1px); }
    .inline-link:hover::after{ transform: scaleX(1); }

    .mini-panel{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.60);
      box-shadow: 0 16px 45px rgba(10,20,40,.09);
      padding: 16px;
    }
    .mini-title{ font-weight: 920; margin-bottom: 10px; letter-spacing:-.2px; }
    .mini-choices{
      display:flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 10px;
    }
    .chip{
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.62);
      border-radius: 999px;
      padding: 9px 12px;
      font-weight: 820;
      font-size: 13px;
      cursor:pointer;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      color: rgba(11,18,32,.86);
      user-select:none;
    }
    .chip:hover{ transform: translateY(-1px); border-color: rgba(109,92,255,.24); background: rgba(109,92,255,.08); }
    .chip.is-active{
      border-color: rgba(109,92,255,.40);
      background: linear-gradient(135deg, rgba(109,92,255,.16), rgba(0,212,255,.10));
      box-shadow: 0 16px 40px rgba(109,92,255,.12);
    }
    .mini-note{
      color: rgba(11,18,32,.62);
      font-size: 12.8px;
      line-height: 1.6;
      padding-top: 4px;
    }

    .section{
      padding: 54px 0;
    }
    .section.alt{
      background: linear-gradient(180deg, rgba(109,92,255,.06), rgba(255,255,255,0) 65%);
      border-top: 1px solid rgba(20,28,45,.06);
      border-bottom: 1px solid rgba(20,28,45,.06);
    }
    .section-inner{
      padding: 0;
    }

    .section-head{
      margin-bottom: 22px;
      text-align: left;
    }
    .kicker{
      display:inline-flex;
      align-items:center;
      gap: 10px;
      font-weight: 900;
      letter-spacing: .2px;
      color: rgba(11,18,32,.88);
      font-size: 13px;
      text-transform: uppercase;
    }
    .kicker::before{
      content:"";
      width: 10px; height: 10px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(109,92,255,1), rgba(0,212,255,1));
      box-shadow: 0 0 0 6px rgba(109,92,255,.10);
    }
    .h2{
      margin: 10px 0 10px;
      font-size: clamp(22px, 2.4vw, 32px);
      letter-spacing: -.5px;
      line-height: 1.2;
      font-weight: 950;
    }
    .h3{
      margin: 10px 0 6px;
      font-size: 16.6px;
      font-weight: 950;
      letter-spacing: -.2px;
    }
    .muted{ color: var(--muted); line-height: 1.75; margin: 0; }
    .p{ color: rgba(11,18,32,.72); line-height: 1.75; margin: 10px 0 12px; font-size: 14.6px; }
    .ul{
      margin: 0; padding: 0; list-style:none;
      display:flex; flex-direction: column; gap: 9px;
    }
    .ul li{
      display:flex; align-items:flex-start; gap: 10px;
      color: rgba(11,18,32,.72);
      font-weight: 650;
      font-size: 13.6px;
    }
    .ul li::before{
      content:"";
      width: 10px; height: 10px;
      border-radius: 3px;
      margin-top: 4px;
      background: linear-gradient(135deg, rgba(109,92,255,.95), rgba(0,212,255,.8));
      box-shadow: 0 0 0 6px rgba(109,92,255,.08);
      flex: 0 0 auto;
    }

    .about-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .feature-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.60);
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      padding: 16px;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
      min-height: 260px;
    }
    .feature-card:hover{
      transform: translateY(-3px);
      border-color: rgba(109,92,255,.24);
      box-shadow: 0 24px 70px rgba(10,20,40,.12);
    }
    .feature-top{ display:flex; align-items:center; gap: 12px; }
    .feature-icon{
      width: 44px; height: 44px;
      border-radius: 16px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(109,92,255,.14), rgba(0,212,255,.10));
      border: 1px solid rgba(109,92,255,.18);
      color: rgba(11,18,32,.9);
      flex: 0 0 auto;
    }

    .services-wrap{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items: start;
    }
    .service-badge{
      display:inline-flex; align-items:center; gap: 10px;
      padding: 10px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.60);
      border: 1px solid rgba(20,28,45,.12);
      font-weight: 900;
      margin-bottom: 12px;
    }
    .badge-dot{
      width: 10px; height: 10px; border-radius: 50%;
      background: linear-gradient(135deg, rgba(255,79,216,.95), rgba(109,92,255,.95));
      box-shadow: 0 0 0 7px rgba(255,79,216,.10);
    }

    .scene-grid{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 8px;
    }
    .scene-card{
      background: rgba(255,255,255,.62);
      border: 1px solid rgba(20,28,45,.10);
      border-radius: 18px;
      padding: 14px;
      box-shadow: 0 16px 45px rgba(10,20,40,.07);
      min-height: 120px;
      transition: transform .18s ease, border-color .18s ease;
    }
    .scene-card:hover{ transform: translateY(-2px); border-color: rgba(0,212,255,.24); }
    .scene-title{ font-weight: 950; margin-bottom: 6px; letter-spacing: -.2px; }
    .scene-desc{ color: rgba(11,18,32,.66); line-height: 1.65; font-size: 13.6px; font-weight: 650; }

    .panel-glass{
      border-radius: var(--radius2);
      background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.55));
      border: 1px solid rgba(20,28,45,.12);
      box-shadow: 0 22px 70px rgba(10,20,40,.10);
      padding: 16px;
      position: relative;
      overflow:hidden;
    }
    .panel-glass::before{
      content:"";
      position:absolute;
      inset:-2px;
      background: radial-gradient(480px 200px at 20% 0%, rgba(255,79,216,.14), transparent 60%),
                  radial-gradient(400px 220px at 90% 10%, rgba(0,212,255,.13), transparent 55%);
      pointer-events:none;
      opacity: .9;
    }
    .panel-glass > *{ position: relative; z-index:1; }
    .panel-head{ margin-bottom: 10px; }
    .panel-title{ font-weight: 950; font-size: 18px; letter-spacing: -.3px; }
    .panel-sub{ color: rgba(11,18,32,.66); font-weight: 650; font-size: 13.6px; line-height: 1.6; margin-top: 6px; }
    .model-tags{
      display:flex; flex-wrap: wrap; gap: 10px;
      padding: 12px;
      border-radius: 18px;
      background: rgba(255,255,255,.55);
      border: 1px solid rgba(20,28,45,.10);
    }
    .tag{
      display:inline-flex;
      align-items:center;
      padding: 9px 11px;
      border-radius: 999px;
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.65);
      font-weight: 860;
      font-size: 13px;
      color: rgba(11,18,32,.86);
      white-space: nowrap;
    }
    .tag-soft{ background: rgba(109,92,255,.08); border-color: rgba(109,92,255,.18); }
    .panel-divider{ height: 1px; background: rgba(20,28,45,.10); margin: 12px 0; }
    .panel-actions{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .panel-foot{
      margin-top: 12px;
      display:flex;
      align-items:flex-start;
      gap: 10px;
      color: rgba(11,18,32,.64);
      font-weight: 650;
      font-size: 13.4px;
      line-height: 1.6;
      padding: 10px 12px;
      border-radius: 16px;
      border: 1px dashed rgba(20,28,45,.14);
      background: rgba(255,255,255,.52);
    }
    .foot-dot{
      width: 10px; height: 10px; border-radius: 50%;
      background: linear-gradient(135deg, rgba(0,212,255,.95), rgba(109,92,255,.95));
      box-shadow: 0 0 0 7px rgba(0,212,255,.10);
      margin-top: 6px;
      flex: 0 0 auto;
    }

    .steps{
      display:grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 12px;
      align-items: stretch;
    }
    .step{
      background: rgba(255,255,255,.60);
      border: 1px solid rgba(20,28,45,.12);
      border-radius: var(--radius2);
      padding: 14px;
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      transition: transform .2s ease, border-color .2s ease;
      min-height: 210px;
      opacity: .98;
    }
    .step:hover{ transform: translateY(-3px); border-color: rgba(109,92,255,.24); }
    .step-num{
      width: 44px; height: 44px;
      display:flex; align-items:center; justify-content:center;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(109,92,255,.15), rgba(0,212,255,.10));
      border: 1px solid rgba(109,92,255,.18);
      font-weight: 950;
      margin-bottom: 10px;
      color: rgba(11,18,32,.92);
    }
    .step-title{ font-weight: 950; letter-spacing: -.25px; font-size: 15.8px; }
    .step-desc{ margin-top: 8px; color: rgba(11,18,32,.66); line-height: 1.7; font-weight: 650; font-size: 13.6px; }

    .split-callout{
      margin-top: 16px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items: stretch;
    }
    .callout-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.60);
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      padding: 16px;
    }
    .callout-cta{
      background: linear-gradient(180deg, rgba(255,255,255,.64), rgba(255,255,255,.52));
    }
    .callout-title{ font-weight: 980; letter-spacing: -.3px; margin-bottom: 10px; }
    .callout-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .callout-item{
      border-radius: 18px;
      border: 1px solid rgba(20,28,45,.10);
      background: rgba(255,255,255,.58);
      padding: 12px;
      min-height: 74px;
      display:flex;
      flex-direction: column;
      justify-content: center;
    }
    .callout-k{ font-weight: 950; margin-bottom: 6px; }
    .callout-v{ color: rgba(11,18,32,.64); font-weight: 650; font-size: 13.6px; line-height: 1.4; }
    .cta-row{ display:flex; gap: 10px; flex-wrap: wrap; }
    .micro-list{ margin-top: 12px; display:flex; flex-direction: column; gap: 8px; }
    .micro-item{ color: rgba(11,18,32,.66); font-weight: 650; font-size: 13.6px; }

    .solution-grid{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }
    .solution-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.60);
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      padding: 16px;
      transition: transform .2s ease, border-color .2s ease;
      min-height: 260px;
    }
    .solution-card:hover{ transform: translateY(-3px); border-color: rgba(0,212,255,.24); }
    .solution-top{ display:flex; align-items:center; gap: 12px; }
    .solution-icon{
      width: 44px; height: 44px;
      border-radius: 16px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(0,212,255,.14), rgba(109,92,255,.10));
      border: 1px solid rgba(0,212,255,.16);
      color: rgba(11,18,32,.92);
    }

    .network-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items: stretch;
    }
    .network-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.60);
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      padding: 16px;
    }
    .network-title{ font-weight: 980; letter-spacing: -.3px; }
    .network-sub{ margin-top: 6px; color: rgba(11,18,32,.66); font-weight: 650; }
    .network-list{ margin-top: 12px; display:flex; flex-direction: column; gap: 10px; }
    .network-item{
      display:flex; align-items:flex-start; gap: 10px;
      color: rgba(11,18,32,.72);
      font-weight: 700;
      line-height: 1.6;
      font-size: 13.8px;
    }
    .net-mark{
      width: 10px; height: 10px; border-radius: 50%;
      background: linear-gradient(135deg, rgba(255,79,216,.95), rgba(109,92,255,.95));
      box-shadow: 0 0 0 7px rgba(255,79,216,.10);
      margin-top: 6px;
      flex: 0 0 auto;
    }

    .network-map{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background:
        radial-gradient(700px 300px at 20% 0%, rgba(109,92,255,.16), transparent 55%),
        radial-gradient(600px 260px at 85% 20%, rgba(0,212,255,.12), transparent 55%),
        rgba(255,255,255,.52);
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      padding: 16px;
      overflow:hidden;
      position: relative;
    }
    .map-shell{
      border-radius: 20px;
      border: 1px solid rgba(20,28,45,.10);
      background: rgba(255,255,255,.55);
      padding: 14px;
      position: relative;
      z-index: 1;
      height: 100%;
      display:flex;
      flex-direction: column;
    }
    .map-title{ font-weight: 980; letter-spacing: -.3px; }
    .map-sub{ margin-top: 6px; color: rgba(11,18,32,.66); font-weight: 650; font-size: 13.4px; }
    .map-nodes{
      margin-top: 16px;
      flex: 1;
      position: relative;
      border-radius: 18px;
      border: 1px dashed rgba(20,28,45,.14);
      background:
        radial-gradient(circle at 30% 30%, rgba(109,92,255,.12), transparent 55%),
        radial-gradient(circle at 75% 45%, rgba(0,212,255,.10), transparent 55%);
      overflow:hidden;
    }
    .node{
      position:absolute;
      width: 12px; height: 12px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(109,92,255,.95), rgba(0,212,255,.85));
      box-shadow: 0 0 0 10px rgba(109,92,255,.10);
      opacity: .95;
      animation: pulse 2.4s ease-in-out infinite;
    }
    .node.n1{ left: 12%; top: 30%; animation-delay: 0s; }
    .node.n2{ left: 26%; top: 55%; animation-delay: .4s; }
    .node.n3{ left: 46%; top: 38%; animation-delay: .7s; }
    .node.n4{ left: 62%; top: 60%; animation-delay: 1.1s; }
    .node.n5{ left: 78%; top: 35%; animation-delay: 1.4s; }
    .node.n6{ left: 18%; top: 68%; animation-delay: .9s; }
    .node.n7{ left: 34%; top: 25%; animation-delay: 1.6s; }
    .node.n8{ left: 55%; top: 22%; animation-delay: 1.9s; }
    .node.n9{ left: 72%; top: 70%; animation-delay: 2.2s; }

    @keyframes pulse{
      0%,100%{ transform: translateZ(0) scale(1); }
      50%{ transform: translateZ(0) scale(1.18); }
    }
    .map-legend{
      margin-top: 12px;
      display:flex;
      gap: 14px;
      flex-wrap: wrap;
      color: rgba(11,18,32,.68);
      font-weight: 700;
      font-size: 13.2px;
    }
    .legend-item{ display:flex; align-items:center; gap: 8px; }
    .legend-dot{
      width: 10px; height: 10px; border-radius: 50%;
      box-shadow: 0 0 0 7px rgba(109,92,255,.10);
    }
    .legend-dot.d1{ background: linear-gradient(135deg, rgba(109,92,255,.95), rgba(0,212,255,.85)); }
    .legend-dot.d2{ background: linear-gradient(135deg, rgba(255,79,216,.95), rgba(109,92,255,.85)); }
    .legend-dot.d3{ background: linear-gradient(135deg, rgba(0,212,255,.95), rgba(10,163,110,.85)); }

    .workflow-wrap{
      display:flex;
      flex-direction: column;
      gap: 14px;
    }
    .workflow-row{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      align-items: stretch;
    }
    .wf-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.60);
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      padding: 16px;
      min-height: 210px;
      transition: transform .2s ease, border-color .2s ease;
      opacity: .98;
    }
    .wf-card:hover{ transform: translateY(-3px); border-color: rgba(109,92,255,.24); }
    .wf-top{ display:flex; flex-direction: column; gap: 8px; }
    .wf-step{
      font-weight: 980;
      color: rgba(11,18,32,.78);
      font-size: 12.8px;
      letter-spacing: .6px;
      text-transform: uppercase;
    }
    .wf-title{ font-weight: 980; letter-spacing:-.25px; font-size: 16.2px; }
    .wf-desc{ margin-top: 10px; color: rgba(11,18,32,.66); font-weight: 650; line-height: 1.75; font-size: 13.8px; }

    .workflow-cta{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: linear-gradient(135deg, rgba(109,92,255,.12), rgba(0,212,255,.08));
      box-shadow: 0 20px 60px rgba(10,20,40,.10);
      padding: 16px;
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
    }
    .workflow-cta-title{ font-weight: 990; letter-spacing:-.3px; font-size: 16.8px; margin-bottom: 6px; }
    .workflow-cta-right{ display:flex; gap: 10px; flex-wrap: wrap; }

    .is-in{ animation: inUp .55s ease both; }
    @keyframes inUp{ from{ opacity:.0; transform: translateY(10px); } to{ opacity:1; transform: translateY(0);} }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .case-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.60);
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      overflow:hidden;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
      display:flex;
      flex-direction: column;
      min-height: 360px;
    }
    .case-card:hover{
      transform: translateY(-3px);
      border-color: rgba(0,212,255,.22);
      box-shadow: 0 26px 80px rgba(10,20,40,.12);
    }
    .case-thumb{
      position: relative;
      height: 120px;
      background: rgba(255,255,255,.55);
      overflow:hidden;
      border-bottom: 1px solid rgba(20,28,45,.10);
    }
    .thumb-bg{
      position:absolute; inset: 0;
      background:
        radial-gradient(320px 120px at 20% 20%, rgba(109,92,255,.40), transparent 60%),
        radial-gradient(280px 140px at 80% 40%, rgba(0,212,255,.30), transparent 55%);
      opacity: .9;
      transform: scale(1.04);
    }
    .thumb-bg.t1{ background:
      radial-gradient(320px 120px at 20% 20%, rgba(255,79,216,.35), transparent 60%),
      radial-gradient(280px 140px at 80% 40%, rgba(0,212,255,.28), transparent 55%); }
    .thumb-bg.t2{ background:
      radial-gradient(320px 120px at 20% 20%, rgba(109,92,255,.35), transparent 60%),
      radial-gradient(280px 140px at 80% 40%, rgba(0,212,255,.28), transparent 55%); }
    .thumb-bg.t3{ background:
      radial-gradient(320px 120px at 20% 20%, rgba(0,212,255,.30), transparent 60%),
      radial-gradient(280px 140px at 80% 40%, rgba(255,79,216,.22), transparent 55%); }
    .thumb-lines{
      position:absolute; inset:-30px;
      background:
        linear-gradient(transparent 0 18px, rgba(255,255,255,.35) 18px 19px),
        linear-gradient(90deg, transparent 0 18px, rgba(255,255,255,.25) 18px 19px);
      background-size: 46px 46px;
      opacity: .4;
      mask-image: radial-gradient(closest-side at 50% 40%, black 55%, transparent 90%);
      transform: rotate(-6deg);
    }
    .thumb-badge{
      position:absolute;
      left: 14px; top: 12px;
      padding: 9px 11px;
      border-radius: 999px;
      background: rgba(11,18,32,.65);
      color:#fff;
      font-weight: 900;
      font-size: 12.6px;
      border: 1px solid rgba(255,255,255,.16);
      backdrop-filter: blur(10px);
    }
    .case-body{
      padding: 16px;
      display:flex;
      flex-direction: column;
      gap: 10px;
      flex: 1;
    }
    .case-title{ font-weight: 980; letter-spacing:-.3px; line-height: 1.25; font-size: 16.6px; }
    .case-desc{ color: rgba(11,18,32,.66); font-weight: 650; line-height: 1.7; font-size: 13.8px; margin-top: -2px; }
    .case-meta{
      display:flex; flex-wrap: wrap; gap: 8px;
      margin-top: 6px;
    }
    .meta-pill{
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.64);
      border: 1px solid rgba(20,28,45,.10);
      font-size: 12.8px;
      font-weight: 780;
      color: rgba(11,18,32,.78);
    }

    .case-press{
      margin-top: 18px;
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.58);
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      padding: 16px;
      display:grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 14px;
      align-items:start;
    }
    .press-title{ font-weight: 980; letter-spacing:-.3px; font-size: 16.6px; }
    .press-list{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px 14px;
    }
    .press-link{
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid rgba(20,28,45,.10);
      background: rgba(255,255,255,.60);
      color: rgba(11,18,32,.86);
      font-weight: 780;
      font-size: 13.6px;
      line-height: 1.35;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .press-link:hover{
      transform: translateY(-2px);
      border-color: rgba(109,92,255,.24);
      background: rgba(109,92,255,.07);
    }

    .compare-top{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items: stretch;
      margin-bottom: 14px;
    }
    .rating-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.60);
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      padding: 16px;
      min-height: 220px;
    }
    .rating-row{
      display:flex;
      align-items:flex-start;
      justify-content: space-between;
      gap: 14px;
    }
    .stars{ font-size: 22px; letter-spacing: 2px; color: rgba(255,176,32,1); }
    .rating-score{
      display:flex; align-items:flex-end; gap: 6px;
      font-weight: 990;
    }
    .score-num{ font-size: 42px; letter-spacing:-1px; line-height:1; }
    .score-max{ font-size: 16px; color: rgba(11,18,32,.62); font-weight: 900; margin-bottom: 8px; }
    .rating-desc{
      margin-top: 12px;
      color: rgba(11,18,32,.66);
      line-height: 1.75;
      font-weight: 650;
      font-size: 13.8px;
    }

    .compare-note{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: linear-gradient(135deg, rgba(109,92,255,.10), rgba(0,212,255,.08));
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      padding: 16px;
      min-height: 220px;
    }
    .note-title{ font-weight: 980; letter-spacing:-.3px; font-size: 16.6px; margin-bottom: 10px; }
    .note-ul{
      margin:0; padding:0; list-style:none;
      display:flex; flex-direction: column; gap: 10px;
      color: rgba(11,18,32,.72);
      font-weight: 720;
      line-height: 1.65;
      font-size: 13.8px;
    }
    .note-ul li::before{
      content:"";
      width: 9px; height: 9px;
      border-radius: 50%;
      margin-right: 10px;
      background: linear-gradient(135deg, rgba(109,92,255,.95), rgba(0,212,255,.85));
      box-shadow: 0 0 0 7px rgba(109,92,255,.10);
      display:inline-block;
      vertical-align: middle;
    }
    .note-actions{ margin-top: 14px; display:flex; gap: 10px; flex-wrap: wrap; }

    .compare-table-wrap{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.60);
      box-shadow: 0 22px 70px rgba(10,20,40,.10);
      padding: 16px;
    }
    .table-title{ font-weight: 990; letter-spacing:-.3px; font-size: 16.6px; margin-bottom: 10px; }
    .table-scroll{ overflow:auto; border-radius: 16px; border: 1px solid rgba(20,28,45,.10); }
    table.compare-table{
      width: 100%;
      border-collapse: collapse;
      min-width: 720px;
      background: rgba(255,255,255,.55);
    }
    th, td{
      padding: 12px 12px;
      border-bottom: 1px solid rgba(20,28,45,.10);
      text-align:left;
      vertical-align: top;
      font-size: 13.6px;
      line-height: 1.55;
      color: rgba(11,18,32,.78);
      font-weight: 650;
    }
    th{
      background: linear-gradient(135deg, rgba(109,92,255,.12), rgba(0,212,255,.08));
      color: rgba(11,18,32,.9);
      font-weight: 950;
      border-bottom: 1px solid rgba(20,28,45,.12);
    }
    tbody tr:hover td{
      background: rgba(109,92,255,.05);
    }
    .yes{ font-weight: 980; color: rgba(10,163,110,1); }
    .mid{ font-weight: 980; color: rgba(255,176,32,1); }

    .compare-bottom{
      margin-top: 12px;
      display:flex;
      align-items:flex-start;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }
    .compare-mini{
      flex: 1 1 480px;
      padding: 12px;
      border-radius: 18px;
      border: 1px dashed rgba(20,28,45,.14);
      background: rgba(255,255,255,.50);
    }
    .mini-k{ font-weight: 980; letter-spacing:-.3px; margin-bottom: 6px; }
    .mini-v{ color: rgba(11,18,32,.66); line-height: 1.75; font-weight: 650; font-size: 13.8px; }
    .compare-mini-cta{ display:flex; gap: 10px; flex-wrap: wrap; }

    .form-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.60);
      box-shadow: 0 22px 70px rgba(10,20,40,.10);
      padding: 16px;
    }
    .form-head{ margin-bottom: 10px; }
    .form-title{ font-weight: 990; letter-spacing:-.3px; font-size: 18px; }
    .form-sub{ margin-top: 6px; color: rgba(11,18,32,.66); font-weight: 650; font-size: 13.6px; line-height:1.6; }
    .form-grid{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 6px;
    }
    .field{
      display:flex; flex-direction: column;
      gap: 8px;
    }
    .field-span{ grid-column: 1 / -1; }
    .label{
      font-weight: 900;
      font-size: 13.6px;
      color: rgba(11,18,32,.82);
    }
    input, select, textarea{
      width: 100%;
      border-radius: 14px;
      padding: 12px 12px;
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.66);
      color: rgba(11,18,32,.92);
      font-size: 14.2px;
      font-weight: 650;
      transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
    }
    textarea{ resize: vertical; min-height: 120px; }
    input::placeholder, textarea::placeholder{ color: rgba(11,18,32,.40); font-weight: 650; }

    .form-actions{
      grid-column: 1 / -1;
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 4px;
    }
    .form-remark{ color: rgba(11,18,32,.62); font-weight: 650; }

    .micro-sections{
      margin-top: 14px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items: stretch;
    }
    .micro-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.60);
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      padding: 16px;
      min-height: 240px;
    }
    .micro-card-soft{
      background: linear-gradient(135deg, rgba(109,92,255,.10), rgba(0,212,255,.06));
    }
    .micro-title{ font-weight: 990; letter-spacing:-.3px; font-size: 16.6px; margin-bottom: 10px; }
    .micro-row{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 10px;
    }
    .micro-item2{
      border-radius: 18px;
      border: 1px solid rgba(20,28,45,.10);
      background: rgba(255,255,255,.58);
      padding: 12px;
      min-height: 88px;
      display:flex;
      gap: 10px;
      align-items:flex-start;
    }
    .micro-num2{
      width: 34px; height: 34px;
      border-radius: 14px;
      background: rgba(109,92,255,.12);
      border: 1px solid rgba(109,92,255,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight: 980;
      color: rgba(11,18,32,.88);
      flex: 0 0 auto;
    }
    .micro-text2{ font-weight: 850; color: rgba(11,18,32,.80); line-height:1.5; padding-top: 4px; }

    .micro-text{ color: rgba(11,18,32,.66); line-height: 1.75; font-weight: 650; }

    .wechat-row{
      display:flex;
      align-items:center;
      gap: 12px;
      margin-top: 12px;
    }
    .wechat-qr{
      width: 114px; height: 114px;
      border-radius: 18px;
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.62);
      padding: 8px;
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      flex: 0 0 auto;
    }
    .wechat-qr img{ width: 100%; height:auto; display:block; border-radius: 12px; }
    .wechat-info{ flex: 1; }
    .wechat-name{ font-weight: 980; letter-spacing:-.3px; }
    .wechat-actions{ margin-top: 10px; }

    .token-layout{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 14px;
      align-items: start;
    }
    .token-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.60);
      box-shadow: 0 22px 70px rgba(10,20,40,.10);
      padding: 16px;
    }
    .token-title{ font-weight: 990; letter-spacing:-.3px; font-size: 18px; }
    .token-sub{ margin-top: 8px; }
    .token-controls{ margin-top: 12px; display:flex; flex-direction: column; gap: 12px; }
    .control-row{
      border-radius: 18px;
      border: 1px solid rgba(20,28,45,.10);
      background: rgba(255,255,255,.58);
      padding: 12px;
    }
    .control-label{ display:block; font-weight: 900; margin-bottom: 8px; color: rgba(11,18,32,.82); font-size: 13.6px; }
    .control-select{
      border-radius: 14px;
      border: 1px solid rgba(20,28,45,.12);
      padding: 12px 12px;
      width: 100%;
      background: rgba(255,255,255,.68);
      font-weight: 700;
    }
    .priority-chips{ display:flex; gap: 10px; flex-wrap: wrap; }
    .chip-prio{ padding: 10px 12px; border-radius: 999px; }
    .chip-prio.is-active{
      border-color: rgba(0,212,255,.34);
      background: linear-gradient(135deg, rgba(0,212,255,.12), rgba(109,92,255,.10));
      box-shadow: 0 18px 55px rgba(0,212,255,.10);
    }

    .token-result{
      margin-top: 14px;
      border-radius: 18px;
      border: 1px dashed rgba(20,28,45,.14);
      background: rgba(255,255,255,.52);
      padding: 12px;
    }
    .result-title{ font-weight: 980; letter-spacing:-.3px; margin-bottom: 8px; }
    .result-text{ color: rgba(11,18,32,.66); font-weight: 650; line-height: 1.75; }
    .result-bullets{ margin-top: 10px; display:flex; flex-direction: column; gap: 8px; }
    .bullet{
      color: rgba(11,18,32,.70);
      font-weight: 680;
      line-height: 1.6;
      position: relative;
      padding-left: 16px;
    }
    .bullet::before{
      content:"";
      width: 8px; height: 8px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(109,92,255,.95), rgba(0,212,255,.85));
      position:absolute;
      left: 0; top: 8px;
      box-shadow: 0 0 0 7px rgba(109,92,255,.08);
    }
    .result-actions{ margin-top: 12px; display:flex; gap: 10px; flex-wrap: wrap; }

    .token-right{
      display:flex;
      flex-direction: column;
      gap: 14px;
    }
    .token-stats-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: linear-gradient(180deg, rgba(255,255,255,.64), rgba(255,255,255,.52));
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      padding: 16px;
    }
    .token-stats-title{ font-weight: 990; letter-spacing:-.3px; font-size: 18px; }
    .stats-list{ margin-top: 12px; display:flex; flex-direction: column; gap: 10px; }
    .stat-row{
      display:flex; gap: 12px;
      border-radius: 18px;
      border: 1px solid rgba(20,28,45,.10);
      background: rgba(255,255,255,.58);
      padding: 12px;
      align-items: flex-start;
    }
    .stat-k{ font-weight: 980; min-width: 90px; }
    .stat-v{ color: rgba(11,18,32,.66); font-weight: 650; line-height: 1.6; }
    .token-stats-foot{
      margin-top: 12px;
      display:flex; flex-wrap: wrap; gap: 10px;
    }
    .token-chip{
      padding: 9px 11px;
      border-radius: 999px;
      border: 1px solid rgba(20,28,45,.10);
      background: rgba(255,255,255,.60);
      font-weight: 880;
      font-size: 13px;
      color: rgba(11,18,32,.82);
    }

    .token-logos-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.60);
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      padding: 16px;
    }
    .logos-title{ font-weight: 990; letter-spacing:-.3px; font-size: 18px; margin-bottom: 10px; }
    .logos-grid{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
    .logo-item{
      border-radius: 18px;
      border: 1px solid rgba(20,28,45,.10);
      background: rgba(255,255,255,.58);
      padding: 12px;
      font-weight: 780;
      color: rgba(11,18,32,.80);
      display:flex;
      gap: 10px;
      align-items:center;
      font-size: 13.6px;
      line-height: 1.4;
    }
    .logo-dot{
      width: 10px; height: 10px; border-radius: 50%;
      background: linear-gradient(135deg, rgba(255,79,216,.95), rgba(109,92,255,.85));
      box-shadow: 0 0 0 7px rgba(255,79,216,.10);
      flex: 0 0 auto;
    }

    .token-action-strip{
      margin-top: 14px;
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: linear-gradient(135deg, rgba(109,92,255,.14), rgba(0,212,255,.10));
      box-shadow: 0 22px 70px rgba(10,20,40,.10);
      padding: 16px;
      display:flex;
      justify-content: space-between;
      align-items:center;
      gap: 14px;
      flex-wrap: wrap;
    }
    .strip-title{ font-weight: 990; letter-spacing:-.3px; font-size: 18px; margin-bottom: 6px; }
    .strip-right{ display:flex; gap: 10px; flex-wrap: wrap; }

    .training-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items: start;
    }
    .training-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.60);
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      padding: 16px;
      min-height: 360px;
    }
    .training-title{ font-weight: 990; letter-spacing:-.3px; font-size: 18px; }
    .training-sub{ margin-top: 8px; }
    .training-list{
      margin-top: 14px;
      list-style:none;
      padding:0;
      display:flex; flex-direction: column; gap: 10px;
    }
    .training-list li{
      display:flex; align-items:flex-start; gap: 10px;
      color: rgba(11,18,32,.74);
      font-weight: 720;
      line-height: 1.6;
    }
    .t-dot{
      width: 10px; height: 10px; border-radius: 50%;
      background: linear-gradient(135deg, rgba(109,92,255,.95), rgba(0,212,255,.85));
      box-shadow: 0 0 0 7px rgba(109,92,255,.10);
      margin-top: 6px;
      flex: 0 0 auto;
    }
    .training-call{ margin-top: 18px; display:flex; gap: 10px; flex-wrap: wrap; }

    .train-steps{
      display:flex;
      flex-direction: column;
      gap: 14px;
    }
    .rail-title{ font-weight: 990; letter-spacing:-.3px; font-size: 18px; margin-bottom: 10px; }
    .rail-list{ display:flex; flex-direction: column; gap: 12px; }
    .rail-item{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.60);
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      padding: 16px;
      display:flex;
      gap: 14px;
      align-items:flex-start;
    }
    .rail-num{
      width: 44px; height: 44px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(109,92,255,.15), rgba(0,212,255,.10));
      border: 1px solid rgba(109,92,255,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight: 990;
      flex: 0 0 auto;
      color: rgba(11,18,32,.9);
    }
    .rail-head{ font-weight: 990; letter-spacing:-.25px; margin-bottom: 6px; }
    .rail-desc{ color: rgba(11,18,32,.66); font-weight: 650; line-height: 1.7; }
    .training-snapshot{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: linear-gradient(180deg, rgba(255,255,255,.64), rgba(255,255,255,.52));
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      padding: 16px;
    }
    .snap-title{ font-weight: 990; letter-spacing:-.3px; font-size: 18px; }
    .snap-tags{ margin-top: 12px; display:flex; flex-wrap: wrap; gap: 10px; }
    .snap-foot{ margin-top: 10px; }

    .help-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .help-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.60);
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      padding: 16px;
      min-height: 230px;
      display:flex;
      flex-direction: column;
      gap: 10px;
      transition: transform .2s ease, border-color .2s ease;
    }
    .help-card:hover{ transform: translateY(-3px); border-color: rgba(109,92,255,.24); }
    .help-title{ font-weight: 990; letter-spacing:-.3px; font-size: 16.6px; }
    .help-desc{ color: rgba(11,18,32,.66); font-weight: 650; line-height: 1.75; }

    .faq-wrap{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .faq-item{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.60);
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      padding: 0 14px;
      overflow:hidden;
      transition: border-color .2s ease, transform .2s ease;
    }
    .faq-item:hover{ transform: translateY(-2px); border-color: rgba(0,212,255,.22); }
    .faq-summary{
      cursor:pointer;
      padding: 14px 0;
      list-style:none;
      font-weight: 920;
      color: rgba(11,18,32,.88);
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 12px;
      user-select:none;
    }
    .faq-summary::-webkit-details-marker{ display:none; }
    .faq-icon{
      width: 34px; height: 34px;
      border-radius: 14px;
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.62);
      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(11,18,32,.75);
      transform: translate(-50%, -50%);
      border-radius: 999px;
      transition: transform .2s ease;
    }
    .faq-icon::after{
      width: 2px; height: 14px;
      background: rgba(11,18,32,.75);
    }
    .faq-item[open] .faq-icon::after{ transform: translate(-50%, -50%) rotate(90deg); }
    .faq-content{
      padding: 0 0 14px;
      color: rgba(11,18,32,.68);
      font-weight: 650;
      line-height: 1.75;
      font-size: 13.8px;
    }

    .faq-bottom-cta{
      margin-top: 14px;
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: linear-gradient(135deg, rgba(255,79,216,.10), rgba(109,92,255,.10));
      box-shadow: 0 22px 70px rgba(10,20,40,.10);
      padding: 16px;
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
    }
    .faq-cta-title{ font-weight: 990; letter-spacing:-.3px; font-size: 18px; margin-bottom: 6px; }

    .wiki-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .wiki-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.60);
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      padding: 16px;
      min-height: 190px;
      transition: transform .2s ease, border-color .2s ease;
      display:flex;
      flex-direction: column;
      gap: 10px;
    }
    .wiki-card:hover{ transform: translateY(-3px); border-color: rgba(109,92,255,.24); }
    .wiki-title{ font-weight: 990; letter-spacing:-.3px; font-size: 16.6px; }
    .wiki-desc{ color: rgba(11,18,32,.66); font-weight: 650; line-height: 1.75; }
    .wiki-foot{ margin-top: auto; }

    .timeline-card{
      margin-top: 14px;
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.60);
      box-shadow: 0 22px 70px rgba(10,20,40,.10);
      padding: 16px;
    }
    .timeline-head{ margin-bottom: 8px; }
    .timeline-title{ font-weight: 990; letter-spacing:-.3px; font-size: 18px; }
    .timeline{
      margin-top: 12px;
      display:grid;
      grid-template-columns: 1fr auto 1fr auto 1fr;
      gap: 12px;
      align-items: start;
    }
    .t-item{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.58);
      padding: 14px;
      min-height: 122px;
    }
    .t-bullet{
      width: 12px; height: 12px; border-radius: 50%;
      background: linear-gradient(135deg, rgba(109,92,255,.95), rgba(0,212,255,.85));
      box-shadow: 0 0 0 8px rgba(109,92,255,.10);
      margin-bottom: 10px;
    }
    .t-k{ font-weight: 990; letter-spacing:-.3px; margin-bottom: 6px; }
    .t-v{ color: rgba(11,18,32,.66); font-weight: 650; line-height: 1.65; font-size: 13.8px; }
    .t-line{
      width: 18px; height: 100%;
      position: relative;
      align-self: center;
    }
    .t-line::before{
      content:"";
      position:absolute;
      left: 50%; top: 0; bottom: 0;
      width: 2px; background: linear-gradient(180deg, rgba(109,92,255,.65), rgba(0,212,255,.25));
      transform: translateX(-50%);
      border-radius: 999px;
      opacity: .7;
    }
    .timeline-foot{
      margin-top: 12px;
      display:flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .news-layout{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 14px;
      align-items: start;
    }
    .news-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.60);
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      padding: 16px;
    }
    .news-title{ font-weight: 990; letter-spacing:-.3px; font-size: 18px; }
    .news-desc{ margin-top: 8px; }
    .news-list{
      margin-top: 12px;
      display:flex; flex-direction: column; gap: 10px;
    }
    .news-link{
      padding: 12px 12px;
      border-radius: 16px;
      border: 1px solid rgba(20,28,45,.10);
      background: rgba(255,255,255,.58);
      font-weight: 820;
      color: rgba(11,18,32,.86);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      line-height: 1.4;
    }
    .news-link:hover{
      transform: translateY(-2px);
      border-color: rgba(0,212,255,.24);
      background: rgba(0,212,255,.06);
    }

    .reviews-head{ margin-bottom: 10px; }
    .reviews-title{ font-weight: 990; letter-spacing:-.3px; font-size: 18px; }
    .reviews-sub{ margin-top: 8px; }
    .reviews-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .review-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.60);
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      padding: 14px;
      transition: transform .2s ease, border-color .2s ease;
      min-height: 172px;
    }
    .review-card:hover{ transform: translateY(-2px); border-color: rgba(109,92,255,.22); }
    .review-top{
      display:flex; gap: 12px; align-items:flex-start;
      margin-bottom: 10px;
    }
    .avatar{
      width: 42px; height: 42px;
      border-radius: 16px;
      border: 1px solid rgba(20,28,45,.12);
      background: linear-gradient(135deg, rgba(109,92,255,.14), rgba(0,212,255,.10));
      display:flex; align-items:center; justify-content:center;
      font-weight: 990;
      color: rgba(11,18,32,.9);
      flex: 0 0 auto;
    }
    .review-name{ font-weight: 980; letter-spacing:-.25px; }
    .review-tag{
      margin-top: 6px;
      font-size: 12.8px;
      padding: 7px 10px;
      border-radius: 999px;
      border: 1px solid rgba(20,28,45,.10);
      background: rgba(255,255,255,.58);
      color: rgba(11,18,32,.74);
      font-weight: 820;
      width: fit-content;
    }
    .review-text{
      color: rgba(11,18,32,.66);
      font-weight: 650;
      line-height: 1.75;
      font-size: 13.8px;
    }

    .contact-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items: start;
      margin-bottom: 14px;
    }
    .contact-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.60);
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      padding: 16px;
    }
    .contact-card-soft{
      background: linear-gradient(135deg, rgba(109,92,255,.10), rgba(0,212,255,.06));
    }
    .contact-title{ font-weight: 990; letter-spacing:-.3px; font-size: 18px; margin-bottom: 10px; }
    .contact-list{ display:flex; flex-direction: column; gap: 10px; }
    .contact-item{
      border-radius: 18px;
      border: 1px solid rgba(20,28,45,.10);
      background: rgba(255,255,255,.58);
      padding: 12px;
      display:flex; justify-content: space-between; gap: 12px; align-items: center;
    }
    .contact-k{ font-weight: 900; color: rgba(11,18,32,.82); font-size: 13.6px; }
    .contact-v{ color: rgba(11,18,32,.76); font-weight: 720; font-size: 13.6px; }
    .contact-link{ font-weight: 900; }
    .contact-actions{ margin-top: 14px; display:flex; gap: 10px; flex-wrap: wrap; }

    .qr-row{ display:flex; gap: 12px; align-items:center; }
    .qr-box{
      width: 132px; height: 132px;
      border-radius: 22px;
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.62);
      padding: 10px;
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      flex: 0 0 auto;
    }
    .qr-box img{ width:100%; height:auto; border-radius: 16px; display:block; }
    .qr-text{ flex:1; }
    .qr-name{ font-weight: 990; letter-spacing:-.3px; font-size: 16px; }
    .qr-bullets{ margin-top: 12px; display:flex; flex-direction: column; gap: 8px; }
    .qr-bullet{
      display:flex; gap: 10px; align-items:center;
      color: rgba(11,18,32,.68);
      font-weight: 720;
      line-height: 1.6;
      font-size: 13.6px;
    }
    .tick{
      width: 10px; height: 10px; border-radius: 3px;
      background: linear-gradient(135deg, rgba(10,163,110,.95), rgba(0,212,255,.75));
      box-shadow: 0 0 0 7px rgba(10,163,110,.10);
      flex: 0 0 auto;
    }

    .contact-logos{
      margin-top: 14px;
      border-top: 1px dashed rgba(20,28,45,.14);
      padding-top: 12px;
    }
    .contact-logo-title{ font-weight: 900; color: rgba(11,18,32,.82); font-size: 13.6px; margin-bottom: 10px; }
    .contact-img-row{ display:flex; gap: 10px; flex-wrap: wrap; }
    .img-wrap{
      width: 100%;
      max-width: 240px;
      flex: 1 1 200px;
      border-radius: 18px;
      border: 1px solid rgba(20,28,45,.10);
      background: rgba(255,255,255,.55);
      overflow:hidden;
    }
    .img-wrap img{ width: 100%; height:auto; display:block; object-fit: contain; }
    .img-square{ max-width: 210px; aspect-ratio: 1 / 1; display:flex; align-items:center; justify-content:center; }
    .img-square img{ width: 100%; height: 100%; object-fit: cover; }

    .platform-intro{
      margin-top: 10px;
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.60);
      box-shadow: 0 22px 70px rgba(10,20,40,.10);
      padding: 16px;
    }
    .intro-kicker{ color: rgba(11,18,32,.88); font-weight: 900; letter-spacing:.2px; text-transform: uppercase; font-size: 13px; }
    .intro-title{ margin-top: 8px; font-weight: 990; letter-spacing:-.3px; font-size: 20px; }
    .intro-sub{ margin-top: 8px; }
    .intro-head{ margin-bottom: 14px; }

    .intro-grid{
      display:grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 10px;
    }
    .intro-item{
      grid-column: span 1;
      border-radius: 18px;
      border: 1px solid rgba(20,28,45,.10);
      background: rgba(255,255,255,.58);
      padding: 12px;
      min-height: 126px;
      display:flex; gap: 12px; align-items:flex-start;
    }
    .intro-icon{
      width: 42px; height: 42px;
      border-radius: 16px;
      border: 1px solid rgba(20,28,45,.12);
      background: linear-gradient(135deg, rgba(109,92,255,.12), rgba(0,212,255,.09));
      display:flex; align-items:center; justify-content:center;
      color: rgba(11,18,32,.92);
      flex: 0 0 auto;
    }
    .intro-item-title{ font-weight: 980; letter-spacing:-.25px; margin-bottom: 6px; font-size: 13.8px; }
    .intro-item-desc{ color: rgba(11,18,32,.66); font-weight: 650; line-height: 1.65; font-size: 12.8px; }

    .intro-cta-row{
      margin-top: 14px;
      display:flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .partner-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items: start;
    }
    .partner-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.60);
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      padding: 16px;
      min-height: 380px;
    }
    .partner-card-soft{
      background: linear-gradient(135deg, rgba(255,79,216,.08), rgba(109,92,255,.08));
    }
    .partner-title{ font-weight: 990; letter-spacing:-.3px; font-size: 18px; margin-bottom: 10px; }
    .partner-list{ margin-top: 10px; display:flex; flex-direction: column; gap: 12px; }
    .partner-item{
      display:flex; gap: 12px; align-items:flex-start;
      border-radius: 18px;
      border: 1px solid rgba(20,28,45,.10);
      background: rgba(255,255,255,.58);
      padding: 12px;
    }
    .partner-badge{
      width: 34px; height: 34px;
      border-radius: 14px;
      background: rgba(109,92,255,.12);
      border: 1px solid rgba(109,92,255,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight: 990;
      flex: 0 0 auto;
    }
    .partner-text{
      color: rgba(11,18,32,.70);
      font-weight: 700;
      line-height: 1.6;
      font-size: 13.8px;
    }
    .partner-actions{ margin-top: 14px; display:flex; gap: 10px; flex-wrap: wrap; }

    .partner-support{ margin-top: 12px; display:flex; flex-direction: column; gap: 12px; }
    .support-item{
      display:flex;
      gap: 12px;
      align-items:flex-start;
      border-radius: 18px;
      border: 1px solid rgba(20,28,45,.10);
      background: rgba(255,255,255,.58);
      padding: 12px;
    }
    .support-icon{
      width: 12px; height: 12px; border-radius: 50%;
      margin-top: 6px;
      background: linear-gradient(135deg, rgba(0,212,255,.95), rgba(109,92,255,.85));
      box-shadow: 0 0 0 8px rgba(0,212,255,.10);
      flex: 0 0 auto;
    }
    .support-k{ font-weight: 980; letter-spacing:-.25px; margin-bottom: 6px; }
    .support-v{ color: rgba(11,18,32,.66); font-weight: 650; line-height: 1.65; font-size: 13.6px; }

    .partner-cta-strip{
      margin-top: 14px;
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.58);
      padding: 14px;
      display:flex;
      justify-content: space-between;
      align-items:center;
      gap: 14px;
      flex-wrap: wrap;
    }
    .strip-title2{ font-weight: 990; letter-spacing:-.3px; font-size: 16.6px; margin-bottom: 6px; }

    .links-card{
      margin-top: 14px;
      border-radius: var(--radius2);
      border: 1px solid rgba(20,28,45,.12);
      background: rgba(255,255,255,.60);
      box-shadow: 0 18px 55px rgba(10,20,40,.08);
      padding: 16px;
    }
    .links-title{ font-weight: 990; letter-spacing:-.3px; font-size: 18px; margin-bottom: 10px; }
    .links-grid{
      display:flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .links-grid a{
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(20,28,45,.10);
      background: rgba(255,255,255,.58);
      font-weight: 820;
      color: rgba(11,18,32,.84);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      font-size: 13.4px;
    }
    .links-grid a:hover{
      transform: translateY(-2px);
      border-color: rgba(109,92,255,.24);
      background: rgba(109,92,255,.07);
    }

    .site-footer{
      background: #0b1220;
      color: rgba(255,255,255,.86);
      border-top: 1px solid rgba(255,255,255,.10);
      padding: 28px 0 20px;
    }
    .footer-inner{ }
    .footer-top{
      display:grid;
      grid-template-columns: 1.1fr .9fr .9fr;
      gap: 14px;
      align-items:start;
      margin-bottom: 14px;
    }
    .footer-left{ }
    .footer-logo{
      width: 150px;
      height:auto;
      display:block;
      filter: drop-shadow(0 10px 30px rgba(0,0,0,.25));
    }
    .footer-text{
      margin-top: 10px;
      color: rgba(255,255,255,.70);
      line-height: 1.75;
      font-weight: 650;
      font-size: 13.8px;
      max-width: 50ch;
    }
    .footer-col-title{
      font-weight: 950;
      letter-spacing:-.2px;
      margin-bottom: 10px;
    }
    .footer-links{
      display:flex;
      flex-direction: column;
      gap: 10px;
      align-items:flex-start;
    }
    .footer-links a{
      color: rgba(255,255,255,.74);
      font-weight: 780;
      font-size: 13.6px;
      padding: 8px 0;
      position: relative;
    }
    .footer-links a::after{
      content:"";
      position:absolute; left:0; bottom: 4px;
      width: 100%; height: 2px;
      background: linear-gradient(90deg, rgba(109,92,255,.95), rgba(0,212,255,.85));
      transform: scaleX(.2);
      transform-origin:left;
      opacity: .9;
      transition: transform .2s ease;
      border-radius: 999px;
    }
    .footer-links a:hover{ color: rgba(255,255,255,.92); }
    .footer-links a:hover::after{ transform: scaleX(1); }

    .footer-identity{
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      padding: 12px;
      display:flex;
      flex-direction: column;
      gap: 10px;
    }
    .id-row{
      display:flex;
      justify-content: space-between;
      gap: 12px;
      color: rgba(255,255,255,.78);
      font-weight: 700;
      font-size: 13.6px;
    }
    .id-k{ color: rgba(255,255,255,.62); }
    .footer-cta{ margin-top: 12px; }

    .footer-bottom{
      padding-top: 14px;
      border-top: 1px solid rgba(255,255,255,.10);
      display:flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
    }
    .footer-bottom-left{
      display:flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .footer-muted{ color: rgba(255,255,255,.58); font-weight: 700; font-size: 13.6px; }
    .footer-inline-links{
      display:flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .footer-inline-links a{
      color: rgba(255,255,255,.78);
      font-weight: 800;
      font-size: 13.2px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      padding: 8px 10px;
      border-radius: 999px;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .footer-inline-links a:hover{
      transform: translateY(-2px);
      border-color: rgba(0,212,255,.35);
      background: rgba(0,212,255,.10);
    }
    .footer-copy{
      color: rgba(255,255,255,.62);
      font-weight: 700;
      font-size: 13.2px;
    }

    .to-top{
      position: fixed;
      right: 14px;
      bottom: 16px;
      z-index: 90;
      width: 46px;
      height: 46px;
      border-radius: 16px;
      background: rgba(11,18,32,.72);
      border: 1px solid rgba(255,255,255,.16);
      backdrop-filter: blur(10px);
      color: rgba(255,255,255,.92);
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      box-shadow: 0 18px 55px rgba(10,20,40,.18);
      opacity: 0;
      pointer-events: none;
      transform: translateY(8px);
      transition: opacity .2s ease, transform .2s ease;
    }
    .to-top.show{
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }
    .to-top-icon{ font-weight: 990; }

    .float-chat{
      position: fixed;
      left: 14px;
      bottom: 16px;
      z-index: 90;
    }
    .float-chat-btn{
      position: relative;
      display:flex;
      align-items:center;
      justify-content:center;
      width: 54px;
      height: 54px;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(255,79,216,.85), rgba(109,92,255,.95));
      border: 1px solid rgba(255,255,255,.18);
      box-shadow: 0 22px 70px rgba(109,92,255,.22);
      color:#fff;
      font-weight: 950;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .float-chat-btn:hover{ transform: translateY(-2px); box-shadow: 0 26px 85px rgba(109,92,255,.26); }
    .float-ring{
      position:absolute;
      inset: -10px;
      border-radius: 26px;
      border: 1px solid rgba(255,255,255,.18);
      animation: ring 2.2s ease-in-out infinite;
      opacity: .7;
    }
    @keyframes ring{
      0%,100%{ transform: scale(.96); opacity:.55; }
      50%{ transform: scale(1.05); opacity:.85; }
    }
    .float-text{
      position: relative;
      z-index: 1;
      font-size: 13px;
      padding-top: 1px;
    }

    @media (max-width: 980px){
      .hero-inner{ grid-template-columns: 1fr; }
      .hero-quick{ grid-template-columns: 1fr; }
      .about-grid{ grid-template-columns: 1fr; }
      .services-wrap{ grid-template-columns: 1fr; }
      .steps{ grid-template-columns: 1fr; }
      .split-callout{ grid-template-columns: 1fr; }
      .solution-grid{ grid-template-columns: 1fr; }
      .network-grid{ grid-template-columns: 1fr; }
      .workflow-row{ grid-template-columns: 1fr; }
      .case-grid{ grid-template-columns: 1fr; }
      .case-press{ grid-template-columns: 1fr; }
      .press-list{ grid-template-columns: 1fr; }
      .compare-top{ grid-template-columns: 1fr; }
      .faq-wrap{ grid-template-columns: 1fr; }
      .wiki-grid{ grid-template-columns: 1fr; }
      .news-layout{ grid-template-columns: 1fr; }
      .reviews-grid{ grid-template-columns: 1fr; }
      .contact-grid{ grid-template-columns: 1fr; }
      .token-layout{ grid-template-columns: 1fr; }
      .help-grid{ grid-template-columns: 1fr 1fr; }
      .training-grid{ grid-template-columns: 1fr; }
      .micro-sections{ grid-template-columns: 1fr; }
      .partner-grid{ grid-template-columns: 1fr; }
      .intro-grid{ grid-template-columns: repeat(2, 1fr); }
      .intro-item{ min-height: 116px; }
      .footer-top{ grid-template-columns: 1fr; }
      .mobile-menu{ display:none; }
    }

    @media (max-width: 860px){
      .nav-desktop{ display:none; }
      .nav-toggle{ display:flex; }
      .mobile-menu{ display:none; }
      .mobile-menu.open{ display:block; }
      .hero{ padding-top: 28px; }
      .faq-wrap{ gap: 10px; }
      .help-grid{ grid-template-columns: 1fr; }
      .reviews-grid{ grid-template-columns: 1fr; }
      .form-grid{ grid-template-columns: 1fr; }
      .scene-grid{ grid-template-columns: 1fr; }
      .workflow-row{ gap: 10px; }
      .token-controls{ gap: 10px; }
      .timeline{ grid-template-columns: 1fr; gap: 10px; }
      .t-line{ display:none; }
    }

    @media (prefers-reduced-motion: reduce){
      *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
    }