:root{
      --bg: #f7f8fb;
      --surface: rgba(255,255,255,.78);
      --surface2: rgba(255,255,255,.92);
      --text: #1b1f2a;
      --muted:#5b6476;
      --muted2:#7b859b;
      --border: rgba(20,30,55,.12);
      --shadow: 0 18px 40px rgba(18,33,70,.10);
      --shadow2: 0 10px 24px rgba(18,33,70,.10);
      --radius-xl: 22px;
      --radius-lg: 18px;
      --radius-md: 14px;
      --radius-sm: 12px;
      --primary1:#7c3aed;
      --primary2:#06b6d4;
      --primary3:#f97316;
      --hot:#ff2d55;
      --good:#22c55e;
      --focus: rgba(124,58,237,.25);
      --grad: linear-gradient(135deg, #7c3aed 0%, #06b6d4 45%, #f97316 100%);
      --grad2: linear-gradient(135deg, rgba(124,58,237,.18), rgba(6,182,212,.16), rgba(249,115,22,.12));
      --grad3: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.68));
      --ring: 0 0 0 4px var(--focus);
    }

    *{ box-sizing:border-box; }
    html{ scroll-behavior:smooth; }
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      background: radial-gradient(1200px 600px at 20% -10%, rgba(124,58,237,.16), transparent 50%),
                  radial-gradient(900px 500px at 80% 10%, rgba(6,182,212,.14), transparent 55%),
                  radial-gradient(900px 520px at 30% 90%, rgba(249,115,22,.10), transparent 55%),
                  var(--bg);
      color:var(--text);
      line-height:1.6;
    }

    .skip-link{
      position:absolute;
      left:-999px;
      top:12px;
      background:#111827;
      color:#fff;
      padding:10px 12px;
      border-radius:10px;
      z-index:9999;
      box-shadow: var(--shadow2);
    }
    .skip-link:focus{ left:12px; outline:none; box-shadow: var(--shadow2), var(--ring); }

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

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(247,248,251,.68);
      border-bottom: 1px solid rgba(20,30,55,.08);
    }
    .nav-wrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:12px 0;
      gap:14px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 240px;
    }
    .brand img{
      width:44px;
      height:auto;
      border-radius:12px;
      background: rgba(255,255,255,.8);
      box-shadow: 0 10px 22px rgba(18,33,70,.08);
    }
    .brand-text{ display:flex; flex-direction:column; gap:2px; }
    .brand-name{
      font-weight:850;
      letter-spacing:.2px;
      font-size:16px;
    }
    .brand-sub{
      font-size:12px;
      color:var(--muted);
      max-width: 320px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .desktop-nav{
      display:flex;
      align-items:center;
      gap:16px;
      flex-wrap:nowrap;
      overflow:hidden;
    }
    .nav-link{
      color: #1f2937;
      text-decoration:none;
      font-size:14px;
      padding:10px 8px;
      border-radius:12px;
      transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
      white-space:nowrap;
    }
    .nav-link:hover{
      background: rgba(124,58,237,.08);
      box-shadow: 0 8px 20px rgba(124,58,237,.10);
      transform: translateY(-1px);
    }
    .nav-cta-ghost{
      background: rgba(255,255,255,.65);
      border: 1px solid rgba(20,30,55,.10);
    }

    .nav-actions{ display:flex; align-items:center; gap:12px; }
    .burger{
      display:none;
      width:44px; height:44px;
      border-radius:14px;
      border: 1px solid rgba(20,30,55,.12);
      background: rgba(255,255,255,.7);
      box-shadow: 0 10px 20px rgba(18,33,70,.08);
      cursor:pointer;
    }
    .burger span{
      display:block;
      height:2px;
      background:#111827;
      margin:7px 10px;
      border-radius:2px;
      transition: transform .2s ease, opacity .2s ease;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      text-decoration:none;
      border-radius:14px;
      padding:12px 16px;
      border:1px solid rgba(20,30,55,.12);
      color:#0f172a;
      background: rgba(255,255,255,.68);
      box-shadow: 0 10px 22px rgba(18,33,70,.08);
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      font-weight:700;
      letter-spacing:.2px;
      font-size:14px;
      white-space:nowrap;
    }
    .btn:hover{
      transform: translateY(-1px);
      box-shadow: 0 16px 30px rgba(18,33,70,.12);
      border-color: rgba(124,58,237,.24);
    }
    .btn:active{ transform: translateY(0px) scale(.99); }
    .btn:focus{ outline:none; box-shadow: 0 16px 30px rgba(18,33,70,.12), var(--ring); }
    .btn-icon{ display:inline-flex; width:18px; height:18px; align-items:center; justify-content:center; opacity:.9; }

    .btn-primary{
      color:#fff;
      border-color: rgba(124,58,237,.35);
      background: var(--grad);
      box-shadow: 0 18px 34px rgba(124,58,237,.22);
    }
    .btn-primary:hover{
      border-color: rgba(255,255,255,.25);
      box-shadow: 0 24px 46px rgba(124,58,237,.25);
    }
    .btn-ghost{
      background: rgba(255,255,255,.72);
      box-shadow: 0 14px 26px rgba(18,33,70,.08);
    }
    .btn-lg{ padding:13px 18px; font-size:15px; border-radius:16px; }
    .btn-full{ width:100%; }

    .mobile-nav{
      display:none;
      border-bottom:1px solid rgba(20,30,55,.08);
      background: rgba(247,248,251,.86);
    }
    .mobile-nav-inner{
      padding:14px 0 18px;
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .mobile-links{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .m-link{
      text-decoration:none;
      color:#0f172a;
      font-weight:800;
      padding:12px 12px;
      border-radius:14px;
      background: rgba(255,255,255,.6);
      border:1px solid rgba(20,30,55,.10);
    }
    .m-link-strong{
      background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(6,182,212,.12));
      border-color: rgba(124,58,237,.25);
    }
    .mobile-actions{ display:grid; gap:10px; }

    .hero{
      position:relative;
      overflow:hidden;
      padding: 42px 0 22px;
    }
    .hero-wave{
      position:absolute;
      inset:-240px -120px auto -120px;
      height: 540px;
      background: radial-gradient(420px 260px at 35% 50%, rgba(124,58,237,.22), transparent 60%),
                  radial-gradient(420px 260px at 70% 45%, rgba(6,182,212,.18), transparent 60%),
                  radial-gradient(420px 260px at 56% 80%, rgba(249,115,22,.14), transparent 60%);
      filter:saturate(1.2);
      pointer-events:none;
      z-index:0;
      opacity:.95;
      transform: translateZ(0);
    }
    .hero-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 22px;
      align-items:start;
      padding: 10px 0 22px;
    }
    .hero-left{
      padding: 10px 0 0;
      animation: floatIn .7s ease both;
      transform-origin:left top;
    }
    @keyframes floatIn{
      from{ opacity:0; transform: translateY(10px); }
      to{ opacity:1; transform: translateY(0); }
    }

    .eyebrow{
      display:flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      background: rgba(255,255,255,.7);
      border:1px solid rgba(20,30,55,.10);
      border-radius: 999px;
      width: fit-content;
      box-shadow: 0 12px 28px rgba(18,33,70,.08);
    }
    .dot{
      width:10px; height:10px;
      border-radius:50%;
      background: var(--grad);
      box-shadow: 0 0 0 5px rgba(124,58,237,.15);
    }
    .eyebrow span{ font-weight:800; font-size:13px; color:#1f2937; }

    .hero-title{
      margin:14px 0 0;
      font-size: clamp(26px, 3.2vw, 44px);
      line-height:1.15;
      letter-spacing:-.6px;
    }
    .hero-lead{
      margin: 14px 0 0;
      color: var(--muted);
      font-size: 15px;
      max-width: 54ch;
    }

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

    .hero-badges{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:18px;
    }
    .badge{
      display:flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,30,55,.10);
      box-shadow: 0 12px 28px rgba(18,33,70,.08);
      font-weight:800;
      font-size:13px;
      color:#0f172a;
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .badge:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(18,33,70,.12);
    }
    .badge-ico{ filter: saturate(1.2); }

    .hero-right{
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .stats-card{
      background: var(--grad2);
      border:1px solid rgba(124,58,237,.18);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
      padding: 18px;
      overflow:hidden;
      position:relative;
    }
    .stats-card:before{
      content:"";
      position:absolute;
      inset:-2px -2px auto -2px;
      height:140px;
      background: radial-gradient(220px 120px at 30% 40%, rgba(124,58,237,.25), transparent 60%),
                  radial-gradient(240px 120px at 70% 10%, rgba(6,182,212,.20), transparent 60%);
      opacity:.9;
      pointer-events:none;
    }
    .stats-top{ position:relative; z-index:1; display:flex; flex-direction:column; gap:6px; }
    .stats-title{ font-weight:950; font-size:16px; }
    .stats-sub{ color:var(--muted); font-size:13px; }
    .stats-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 12px;
      margin-top: 14px;
    }
    .stat{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,30,55,.10);
      border-radius: 16px;
      padding: 12px 12px;
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .stat:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(18,33,70,.12);
    }
    .stat-num{
      font-weight:980;
      font-size: 22px;
      letter-spacing:-.4px;
    }
    .stat-label{ color:var(--muted); font-size:12.5px; margin-top:2px; }

    .stats-cta{
      position:relative;
      z-index:1;
      display:flex;
      align-items:center;
      gap:12px;
      margin-top: 14px;
      color:#0f172a;
      flex-wrap:wrap;
    }
    .mini-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:#0f172a;
      font-weight:850;
      text-decoration:none;
      padding:8px 10px;
      border-radius: 12px;
      background: rgba(255,255,255,.55);
      border:1px solid rgba(20,30,55,.10);
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    }
    .mini-link:hover{
      transform: translateY(-1px);
      box-shadow: 0 16px 28px rgba(18,33,70,.12);
      background: rgba(255,255,255,.72);
    }
    .sep{
      width:1px; height:22px;
      background: rgba(20,30,55,.12);
      border-radius:999px;
    }

    .hero-mini-cards{
      display:grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .mini-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,30,55,.10);
      border-radius: var(--radius-lg);
      padding: 14px;
      box-shadow: 0 14px 26px rgba(18,33,70,.08);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      position:relative;
      overflow:hidden;
    }
    .mini-card:after{
      content:"";
      position:absolute;
      inset:auto -40px -60px auto;
      width:140px; height:140px;
      background: radial-gradient(circle at 30% 30%, rgba(124,58,237,.25), transparent 60%),
                  radial-gradient(circle at 60% 50%, rgba(6,182,212,.18), transparent 60%);
      opacity:.5;
      transform: rotate(-12deg);
      pointer-events:none;
    }
    .mini-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 22px 48px rgba(18,33,70,.12);
      border-color: rgba(124,58,237,.22);
    }
    .mini-card-top{
      position:relative;
      z-index:1;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:8px;
    }
    .pill{
      font-weight:900;
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.22);
      color:#4c1d95;
      white-space:nowrap;
    }
    .pill-hot{
      background: rgba(255,45,85,.10);
      border-color: rgba(255,45,85,.26);
      color:#be123c;
    }
    .pill-accent{
      background: rgba(6,182,212,.10);
      border-color: rgba(6,182,212,.26);
      color:#0e7490;
    }
    .mini-card-ico{ font-size:18px; position:relative; z-index:1; }
    .mini-card-text{ position:relative; z-index:1; color:var(--muted); font-size:13.5px; font-weight:650; }

    .section{ padding: 58px 0; }
    .section-tight{ padding: 44px 0; }
    .section-alt{
      background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.25));
      border-top: 1px solid rgba(20,30,55,.06);
      border-bottom: 1px solid rgba(20,30,55,.06);
    }

    .section-head{
      margin-bottom: 22px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-weight:950;
      color:#0f172a;
      font-size:13px;
      padding: 10px 12px;
      border-radius:999px;
      border: 1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 14px 28px rgba(18,33,70,.06);
    }
    .section-title{
      margin: 12px 0 0;
      font-size: clamp(22px, 2.5vw, 34px);
      letter-spacing:-.5px;
    }
    .section-desc{
      margin: 10px 0 0;
      color:var(--muted);
      max-width: 70ch;
      font-weight:600;
    }

    .reveal{
      opacity:1;
    }
    @media (prefers-reduced-motion: reduce){
      .reveal{ opacity:1 !important; transform:none !important; }
    }

    .feature-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 14px;
    }
    .feature-card{
      background: rgba(255,255,255,.70);
      border:1px solid rgba(20,30,55,.10);
      border-radius: var(--radius-xl);
      padding: 16px;
      box-shadow: 0 14px 26px rgba(18,33,70,.07);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      min-height: 196px;
      position:relative;
      overflow:hidden;
    }
    .feature-card:before{
      content:"";
      position:absolute;
      inset:-40px -60px auto auto;
      width:140px; height:140px;
      background: radial-gradient(circle at 30% 30%, rgba(124,58,237,.28), transparent 60%),
                  radial-gradient(circle at 60% 50%, rgba(6,182,212,.18), transparent 60%);
      opacity:.6;
      pointer-events:none;
    }
    .feature-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 26px 60px rgba(18,33,70,.13);
      border-color: rgba(124,58,237,.22);
    }
    .feature-ico{ font-size:22px; position:relative; z-index:1; }
    .feature-title{ margin: 10px 0 0; font-size:16px; font-weight:950; position:relative; z-index:1; }
    .feature-text{ margin: 8px 0 0; color:var(--muted); font-weight:650; font-size:13.5px; position:relative; z-index:1; }

    .service-layout{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 16px;
      align-items:start;
    }

    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top: 6px;
      padding: 14px;
      border-radius: var(--radius-xl);
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.65);
      box-shadow: 0 14px 26px rgba(18,33,70,.06);
    }
    .tag{
      padding: 9px 11px;
      border-radius: 999px;
      font-weight:850;
      font-size:12.5px;
      color:#0f172a;
      border:1px solid rgba(20,30,55,.08);
      background: rgba(255,255,255,.72);
    }
    .tag-hot{
      border-color: rgba(255,45,85,.28);
      background: rgba(255,45,85,.08);
      color:#be123c;
    }

    .platform-intro{
      margin-top: 14px;
      padding: 16px;
      border-radius: var(--radius-xl);
      border:1px solid rgba(124,58,237,.18);
      background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.55));
      box-shadow: 0 18px 40px rgba(18,33,70,.08);
    }
    .platform-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }
    .platform-badge{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:8px 10px;
      border-radius:999px;
      font-weight:950;
      font-size:12px;
      color:#0f172a;
      background: rgba(6,182,212,.10);
      border:1px solid rgba(6,182,212,.22);
    }
    .platform-title{ font-weight:980; font-size:16px; }
    .platform-points{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
      margin-top:14px;
    }
    .point{
      display:flex;
      gap:12px;
      padding: 12px;
      border-radius: 16px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.62);
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .point:hover{
      transform: translateY(-2px);
      box-shadow: 0 20px 44px rgba(18,33,70,.10);
    }
    .point-ico{
      width:30px; height:30px;
      border-radius:12px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:980;
      color:#fff;
      background: var(--grad);
      box-shadow: 0 14px 30px rgba(124,58,237,.22);
      flex:0 0 auto;
    }
    .point-title{ font-weight:950; font-size:14px; }
    .point-text{ color:var(--muted); font-weight:650; font-size:13.2px; margin-top:2px; }

    .platform-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top: 14px;
    }

    .scene-card{
      padding: 16px;
      border-radius: var(--radius-xl);
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 18px 40px rgba(18,33,70,.08);
      position:relative;
      overflow:hidden;
    }
    .scene-card:before{
      content:"";
      position:absolute;
      inset:-2px auto auto -2px;
      width:180px; height:180px;
      background: radial-gradient(circle at 30% 30%, rgba(255,45,85,.18), transparent 62%),
                  radial-gradient(circle at 70% 55%, rgba(124,58,237,.16), transparent 62%);
      opacity:.85;
      pointer-events:none;
    }
    .scene-head{ position:relative; z-index:1; }
    .scene-title{ font-weight:980; font-size:16px; }
    .scene-sub{ color:var(--muted); font-weight:650; margin-top:6px; font-size:13.5px; }

    .scene-grid{
      position:relative;
      z-index:1;
      margin-top: 12px;
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 12px;
    }
    .scene-item{
      border-radius: 16px;
      padding: 12px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.62);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      min-height: 104px;
    }
    .scene-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 22px 46px rgba(18,33,70,.11);
      border-color: rgba(6,182,212,.24);
    }
    .scene-ico{ font-size:18px; }
    .scene-name{ font-weight:950; font-size:14px; margin-top:7px; }
    .scene-desc{ color:var(--muted); font-weight:650; font-size:12.8px; margin-top:4px; }

    .scene-note{
      position:relative;
      z-index:1;
      display:flex;
      gap:10px;
      align-items:flex-start;
      margin-top: 12px;
      padding: 12px;
      border-radius: 16px;
      border:1px dashed rgba(124,58,237,.28);
      background: rgba(124,58,237,.08);
      color:#2b134a;
      font-weight:750;
      font-size:13.2px;
    }
    .scene-dot{
      width:10px; height:10px;
      border-radius:50%;
      margin-top:6px;
      background: var(--grad);
      box-shadow: 0 0 0 6px rgba(124,58,237,.14);
      flex:0 0 auto;
    }

    .model-wall{
      margin-top: 14px;
      padding: 16px;
      border-radius: var(--radius-xl);
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.66);
      box-shadow: 0 18px 40px rgba(18,33,70,.07);
    }
    .model-wall-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }
    .model-wall-title{ font-weight:980; font-size:16px; }
    .model-wall-sub{ color:var(--muted); font-weight:650; margin-top:6px; font-size:13.5px; }

    .model-chips{
      margin-top: 12px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .chip{
      padding: 9px 11px;
      border-radius: 999px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.70);
      font-weight:900;
      color:#0f172a;
      font-size:12.5px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .chip:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(18,33,70,.10);
      border-color: rgba(124,58,237,.22);
    }

    .steps-grid{
      display:grid;
      grid-template-columns: repeat(5, minmax(0,1fr));
      gap: 12px;
    }
    .step-card{
      background: rgba(255,255,255,.70);
      border:1px solid rgba(20,30,55,.10);
      border-radius: var(--radius-xl);
      padding: 16px;
      box-shadow: 0 18px 40px rgba(18,33,70,.07);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      min-height: 190px;
      position:relative;
      overflow:hidden;
    }
    .step-card:before{
      content:"";
      position:absolute;
      inset:-40px -60px auto auto;
      width:160px; height:160px;
      background: radial-gradient(circle at 30% 30%, rgba(124,58,237,.22), transparent 60%),
                  radial-gradient(circle at 70% 55%, rgba(6,182,212,.16), transparent 60%);
      opacity:.65;
      pointer-events:none;
    }
    .step-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 28px 64px rgba(18,33,70,.12);
      border-color: rgba(124,58,237,.22);
    }
    .step-num{
      position:relative;
      z-index:1;
      font-weight:1000;
      font-size: 20px;
      background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(6,182,212,.95));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      letter-spacing:-.4px;
    }
    .step-title{ position:relative; z-index:1; margin-top: 10px; font-weight:980; font-size:16px; }
    .step-text{ position:relative; z-index:1; margin-top: 8px; color:var(--muted); font-weight:650; font-size:13.4px; }

    .industry-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 14px;
      align-items:stretch;
    }
    .industry-card{
      padding: 16px;
      border-radius: var(--radius-xl);
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 18px 40px rgba(18,33,70,.07);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      min-height: 260px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .industry-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 28px 64px rgba(18,33,70,.12);
      border-color: rgba(6,182,212,.22);
    }
    .industry-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .industry-ico{ font-size:20px; }
    .industry-title{
      margin:0;
      font-weight:980;
      font-size:16px;
    }
    .list{
      margin:0;
      padding-left: 18px;
      color:var(--muted);
      font-weight:650;
      font-size:13.5px;
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .link-btn{
      margin-top:auto;
      display:inline-flex;
      align-items:center;
      gap:10px;
      text-decoration:none;
      font-weight:950;
      color:#0f172a;
      padding: 10px 12px;
      border-radius: 14px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.62);
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .link-btn:hover{ transform: translateY(-2px); box-shadow: 0 18px 36px rgba(18,33,70,.12); }

    .network-row{ margin-top: 18px; }
    .network-card{
      border-radius: var(--radius-xl);
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 20px 50px rgba(18,33,70,.08);
      padding: 16px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .network-left{
      padding: 8px 6px 8px 6px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .network-title{ font-weight:1000; font-size:16px; }
    .network-desc{ color:var(--muted); font-weight:650; font-size:13.5px; }
    .network-metrics{
      display:grid;
      grid-template-columns: repeat(1, minmax(0,1fr));
      gap:10px;
      margin-top: 6px;
    }
    .metric{
      padding: 12px;
      border-radius: 16px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.62);
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .metric:hover{ transform: translateY(-2px); box-shadow: 0 22px 46px rgba(18,33,70,.11); }
    .metric-top{
      display:flex;
      align-items:center;
      justify-content:flex-start;
      gap:10px;
      font-weight:950;
      color:#0f172a;
      font-size:14px;
    }
    .metric-ico{ filter:saturate(1.1); }
    .metric-num{ white-space:nowrap; }
    .metric-text{ color:var(--muted); font-weight:650; font-size:13.2px; margin-top:6px; }

    .network-right{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .map-card{
      flex:1;
      border-radius: var(--radius-xl);
      border:1px solid rgba(124,58,237,.18);
      background: linear-gradient(180deg, rgba(124,58,237,.12), rgba(255,255,255,.62));
      padding: 14px;
      position:relative;
      overflow:hidden;
    }
    .map-card:before{
      content:"";
      position:absolute;
      inset:-120px auto auto -80px;
      width:220px; height:220px;
      background: radial-gradient(circle at 30% 30%, rgba(6,182,212,.18), transparent 62%),
                  radial-gradient(circle at 70% 55%, rgba(249,115,22,.14), transparent 62%);
      opacity:.9;
      pointer-events:none;
    }
    .map-title{ position:relative; z-index:1; font-weight:1000; font-size:15px; }
    .timeline{
      position:relative;
      z-index:1;
      margin-top: 10px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .t-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .t-dot{
      width:12px; height:12px;
      border-radius:50%;
      background: var(--grad);
      box-shadow: 0 0 0 6px rgba(124,58,237,.14);
      margin-top:6px;
      flex:0 0 auto;
    }
    .t-label{ font-weight:980; font-size:13.8px; }
    .t-sub{ color:var(--muted); font-weight:650; font-size:13px; margin-top:4px; }

    .network-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }

    .rating-row{
      display:grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 14px;
      align-items:start;
    }
    .rating-card{
      border-radius: var(--radius-xl);
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 22px 56px rgba(18,33,70,.10);
      padding: 16px;
    }
    .rating-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }
    .stars{
      font-size:18px;
      letter-spacing:1px;
      color:#f59e0b;
      text-shadow: 0 10px 22px rgba(245,158,11,.18);
    }
    .rating-grade{
      font-weight:1000;
      font-size: 22px;
      letter-spacing:-.4px;
      background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(6,182,212,.95));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .rating-note{
      margin-top: 10px;
      color:var(--muted);
      font-weight:650;
      font-size:13.6px;
    }
    .rating-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top: 14px;
    }

    .compare-card{
      border-radius: var(--radius-xl);
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 22px 56px rgba(18,33,70,.10);
      padding: 16px;
    }
    .compare-head{ display:flex; flex-direction:column; gap:6px; }
    .compare-title{ font-weight:1000; font-size:16px; }
    .compare-sub{ color:var(--muted); font-weight:650; font-size:13.5px; }

    .table-wrap{
      margin-top: 12px;
      overflow:auto;
      border-radius: 16px;
      border: 1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.72);
    }
    .compare-table{
      width:100%;
      min-width: 620px;
      border-collapse:collapse;
      font-size:13.5px;
    }
    .compare-table th, .compare-table td{
      padding: 12px 12px;
      border-bottom:1px solid rgba(20,30,55,.08);
      text-align:left;
      vertical-align:top;
    }
    .compare-table th{
      background: rgba(124,58,237,.10);
      font-weight:1000;
      color:#0f172a;
      position:sticky;
      top:0;
      z-index:1;
    }
    .compare-table tr:last-child td{ border-bottom:none; }
    .compare-foot{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top: 12px;
      align-items:center;
    }

    .token-layout{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .token-panel, .token-table-card{
      border-radius: var(--radius-xl);
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 20px 50px rgba(18,33,70,.08);
      padding: 16px;
    }
    .token-title{ font-weight:1000; font-size:16px; }
    .token-desc{ margin-top:8px; color:var(--muted); font-weight:650; font-size:13.6px; }
    .token-steps{ margin-top: 14px; display:flex; flex-direction:column; gap:10px; }
    .token-step{
      display:flex;
      gap:12px;
      padding: 12px;
      border-radius: 16px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.62);
      transition: transform .15s ease, box-shadow .15s ease;
      align-items:flex-start;
    }
    .token-step:hover{ transform: translateY(-2px); box-shadow: 0 22px 46px rgba(18,33,70,.11); }
    .token-step-idx{
      width:34px; height:34px;
      border-radius:14px;
      background: var(--grad);
      color:#fff;
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      box-shadow: 0 18px 34px rgba(124,58,237,.22);
      flex:0 0 auto;
    }
    .token-step-title{ font-weight:980; font-size:14px; }
    .token-step-sub{ color:var(--muted); font-weight:650; font-size:13.2px; margin-top:4px; }
    .token-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; }

    .token-table-head{ display:flex; flex-direction:column; gap:6px; }
    .token-table-title{ font-weight:1000; font-size:16px; }
    .token-table-sub{ color:var(--muted); font-weight:650; font-size:13.5px; margin-top:2px; }
    .small-table{
      width:100%;
      min-width: 520px;
      border-collapse:collapse;
      font-size:13.5px;
    }
    .small-table th, .small-table td{
      padding: 12px 12px;
      border-bottom:1px solid rgba(20,30,55,.08);
      text-align:left;
      vertical-align:top;
    }
    .small-table th{
      background: rgba(6,182,212,.10);
      font-weight:1000;
      color:#0f172a;
      position:sticky;
      top:0;
      z-index:1;
    }
    .small-table tr:last-child td{ border-bottom:none; }
    .token-note{
      margin-top: 12px;
      padding: 12px;
      border-radius: 16px;
      border:1px dashed rgba(249,115,22,.28);
      background: rgba(249,115,22,.08);
      color:#3b1d0a;
      font-weight:780;
      font-size:13.2px;
      display:flex;
      gap:10px;
      align-items:flex-start;
    }
    .token-note-ico{ margin-top:2px; }

    .training-grid{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 14px;
      align-items:start;
    }
    .training-card, .training-right > *{
      border-radius: var(--radius-xl);
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 20px 50px rgba(18,33,70,.08);
    }
    .training-card{ padding:16px; }
    .training-top{ display:flex; gap:12px; align-items:center; }
    .training-ico{ font-size:22px; }
    .training-title{ font-weight:1000; font-size:16px; }
    .training-sub{ color:var(--muted); font-weight:650; font-size:13.5px; margin-top:6px; }

    .training-list{
      margin-top: 14px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .training-item{
      padding: 12px;
      border-radius: 16px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.62);
      font-weight:950;
      color:#0f172a;
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .training-item:hover{ transform: translateY(-2px); box-shadow: 0 22px 46px rgba(18,33,70,.11); }
    .training-foot{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top: 14px;
    }

    .training-right{
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .training-feature{
      padding:16px;
    }
    .training-feature-title{ font-weight:1000; font-size:16px; }
    .training-feature-desc{ margin-top:8px; color:var(--muted); font-weight:650; font-size:13.6px; }
    .training-bullets{ margin-top: 12px; display:flex; flex-direction:column; gap:10px; }
    .bullet{
      display:flex;
      gap:12px;
      padding: 12px;
      border-radius: 16px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.62);
      transition: transform .15s ease, box-shadow .15s ease;
      align-items:flex-start;
    }
    .bullet:hover{ transform: translateY(-2px); box-shadow: 0 22px 46px rgba(18,33,70,.11); }
    .bullet-ico{ width:34px; height:34px; border-radius:14px; display:flex; align-items:center; justify-content:center; background: rgba(124,58,237,.10); border:1px solid rgba(124,58,237,.18); flex:0 0 auto; }
    .bullet-title{ font-weight:980; font-size:14px; }
    .bullet-text{ color:var(--muted); font-weight:650; font-size:13.2px; margin-top:4px; }

    .auth-card{
      padding:16px;
      border-radius: var(--radius-xl);
    }
    .auth-head{ display:flex; flex-direction:column; gap:6px; }
    .auth-title{ font-weight:1000; font-size:16px; }
    .auth-sub{ color:var(--muted); font-weight:650; font-size:13.5px; }
    .auth-grid{
      margin-top: 12px;
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 10px;
    }
    .auth-stat{
      padding: 12px;
      border-radius: 16px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.62);
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .auth-stat:hover{ transform: translateY(-2px); box-shadow: 0 22px 46px rgba(18,33,70,.11); }
    .auth-num{ font-weight:1000; font-size:22px; letter-spacing:-.4px; }
    .auth-label{ color:var(--muted); font-weight:650; font-size:13px; margin-top:4px; }
    .auth-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 14px; }

    .two-col{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }

    .process-card{
      padding:16px;
      border-radius: var(--radius-xl);
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 20px 50px rgba(18,33,70,.08);
    }
    .process-head{ display:flex; flex-direction:column; gap:6px; }
    .process-title{ font-weight:1000; font-size:16px; }
    .process-sub{ color:var(--muted); font-weight:650; font-size:13.5px; }

    .process-rows{ margin-top: 14px; display:flex; flex-direction:column; gap:12px; }
    .process-row{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding: 12px;
      border-radius: 16px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.62);
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .process-row:hover{ transform: translateY(-2px); box-shadow: 0 22px 46px rgba(18,33,70,.11); }
    .process-dot{
      width:12px; height:12px;
      border-radius:50%;
      background: var(--grad);
      box-shadow: 0 0 0 6px rgba(124,58,237,.14);
      margin-top:6px;
      flex:0 0 auto;
    }
    .process-row-title{ font-weight:980; font-size:14px; }
    .process-row-text{ color:var(--muted); font-weight:650; font-size:13.2px; margin-top:4px; }
    .process-action{ margin-top: 14px; display:flex; }

    .match-card{
      padding:16px;
      border-radius: var(--radius-xl);
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 20px 50px rgba(18,33,70,.08);
      overflow:hidden;
    }
    .match-head{ display:flex; flex-direction:column; gap:6px; margin-bottom: 12px; }
    .match-title{ font-weight:1000; font-size:16px; }
    .match-sub{ color:var(--muted); font-weight:650; font-size:13.5px; }

    .form-card{
      padding: 14px;
      border-radius: var(--radius-xl);
      border:1px solid rgba(124,58,237,.18);
      background: linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.58));
      box-shadow: 0 22px 56px rgba(18,33,70,.10);
    }
    .form-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 12px;
    }
    .field{ display:flex; flex-direction:column; gap:8px; }
    label{
      font-weight:900;
      font-size:13px;
      color:#0f172a;
    }
    input, select, textarea{
      width:100%;
      border-radius: 14px;
      border:1px solid rgba(20,30,55,.14);
      background: rgba(255,255,255,.85);
      padding: 12px 12px;
      font-size:14px;
      color:#0f172a;
      box-shadow: 0 10px 22px rgba(18,33,70,.06);
      transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
    }
    textarea{ resize: vertical; min-height: 120px; }
    input:focus, select:focus, textarea:focus{
      outline:none;
      border-color: rgba(124,58,237,.35);
      box-shadow: 0 18px 34px rgba(124,58,237,.12), var(--ring);
    }
    .field-full{ grid-column: 1 / -1; }
    .form-foot{ margin-top: 12px; display:flex; flex-direction:column; gap:10px; }
    .form-hint{
      color:#0f172a;
      font-weight:750;
      background: rgba(34,197,94,.10);
      border:1px solid rgba(34,197,94,.22);
      padding: 10px 12px;
      border-radius: 14px;
    }

    .match-fast{
      margin-top: 12px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .fast-item{
      display:flex;
      gap:12px;
      padding: 12px;
      border-radius: 16px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.62);
      align-items:flex-start;
    }
    .fast-ico{
      width:36px; height:36px;
      border-radius: 14px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(6,182,212,.10);
      border:1px solid rgba(6,182,212,.20);
      flex:0 0 auto;
    }
    .fast-title{ font-weight:980; font-size:14px; }
    .fast-sub{ color:var(--muted); font-weight:650; font-size:13.2px; margin-top:4px; }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 14px;
      align-items:stretch;
    }
    .case-card{
      border-radius: var(--radius-xl);
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 22px 56px rgba(18,33,70,.08);
      padding: 16px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      display:flex;
      flex-direction:column;
      gap:10px;
      min-height: 210px;
    }
    .case-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 30px 70px rgba(18,33,70,.12);
      border-color: rgba(124,58,237,.22);
    }
    .case-top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .case-pill{
      padding: 8px 10px;
      border-radius: 999px;
      font-weight:950;
      font-size:12px;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.22);
      color:#4c1d95;
    }
    .pill-alt{
      background: rgba(249,115,22,.10);
      border-color: rgba(249,115,22,.26);
      color:#9a3412;
    }
    .case-icon{ font-size:20px; }
    .case-title{ font-weight:1000; font-size:16px; margin:0; }
    .case-text{ color:var(--muted); font-weight:650; font-size:13.6px; margin:0; }
    .case-foot{ margin-top:auto; display:flex; gap:10px; align-items:center; }

    .articles-grid{
      margin-top: 14px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .articles-card{
      padding:16px;
      border-radius: var(--radius-xl);
      border:1px solid rgba(20,30,55,.10);
      box-shadow: 0 22px 56px rgba(18,33,70,.08);
    }
    .articles-head{ display:flex; flex-direction:column; gap:6px; }
    .articles-title{ font-weight:1000; font-size:16px; }
    .articles-sub{ color:var(--muted); font-weight:650; font-size:13.5px; }
    .article-list{ margin-top: 12px; display:flex; flex-direction:column; gap:10px; }
    .article-item{
      text-decoration:none;
      color:inherit;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding: 12px;
      border-radius: 16px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.62);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      font-weight:900;
    }
    .article-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 22px 46px rgba(18,33,70,.11);
      border-color: rgba(6,182,212,.22);
    }
    .article-meta{ display:flex; align-items:center; gap:10px; }
    .article-dot{ width:10px; height:10px; border-radius:50%; background: var(--grad); box-shadow: 0 0 0 6px rgba(124,58,237,.14); }
    .article-name{ font-size:13.8px; }
    .article-arrow{ font-weight:1000; color:#0f172a; }

    .articles-actions{ margin-top: 14px; display:flex; gap:12px; flex-wrap:wrap; }

    .images-demo-card{
      padding:16px;
      border-radius: var(--radius-xl);
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 22px 56px rgba(18,33,70,.08);
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .images-head{ display:flex; flex-direction:column; gap:6px; }
    .images-title{ font-weight:1000; font-size:16px; }
    .images-sub{ color:var(--muted); font-weight:650; font-size:13.5px; }
    .image-row{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
    }
    .image-row-square{ grid-template-columns: 1fr; }
    .img-wrap{
      border-radius: 18px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.62);
      overflow:hidden;
      box-shadow: 0 14px 26px rgba(18,33,70,.06);
      padding:10px;
    }
    .img-square .ai-page-image{ aspect-ratio: 1 / 1; }
    .img-wrap .ai-page-image{
      width:100%;
      height:auto;
      display:block;
      object-fit:contain;
      border-radius: 14px;
      background: rgba(255,255,255,.6);
    }
    .images-foot{ margin-top:auto; display:flex; align-items:center; justify-content:flex-start; }
    .img-square{ padding:12px; }

    .help-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 14px;
    }
    .help-card{
      border-radius: var(--radius-xl);
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 22px 56px rgba(18,33,70,.07);
      padding: 16px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      min-height: 210px;
    }
    .help-card:hover{ transform: translateY(-3px); box-shadow: 0 30px 70px rgba(18,33,70,.12); border-color: rgba(124,58,237,.22); }
    .help-title{ font-weight:1000; font-size:16px; }
    .help-list{
      margin: 12px 0 0;
      padding-left: 18px;
      display:flex;
      flex-direction:column;
      gap:10px;
      color:var(--muted);
      font-weight:650;
      font-size:13.7px;
    }
    .help-list a{
      color:inherit;
      text-decoration:none;
      border-radius: 12px;
      padding: 6px 8px;
      margin-left:-8px;
      transition: background .15s ease, transform .15s ease;
      display:inline-flex;
    }
    .help-list a:hover{ background: rgba(124,58,237,.10); transform: translateY(-1px); }

    .faq-wrap{
      border-radius: var(--radius-xl);
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 22px 56px rgba(18,33,70,.08);
      padding: 14px;
    }
    .faq-filters{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
      margin-bottom: 14px;
      padding: 4px;
    }
    .seg{
      border-radius: 999px;
      border:1px solid rgba(20,30,55,.12);
      background: rgba(255,255,255,.68);
      padding: 10px 12px;
      font-weight:950;
      font-size:13px;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
    }
    .seg:hover{ transform: translateY(-2px); box-shadow: 0 18px 36px rgba(18,33,70,.10); border-color: rgba(124,58,237,.22); }
    .seg[aria-pressed="true"]{
      background: linear-gradient(135deg, rgba(124,58,237,.20), rgba(6,182,212,.14));
      border-color: rgba(124,58,237,.30);
      box-shadow: 0 18px 36px rgba(124,58,237,.14);
    }

    .faq-list{
      display:flex;
      flex-direction:column;
      gap: 10px;
    }
    .faq-item{
      border-radius: 18px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.62);
      overflow:hidden;
      transition: box-shadow .15s ease, transform .15s ease;
    }
    .faq-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 22px 46px rgba(18,33,70,.10);
    }
    .faq-q{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding: 14px 14px;
      background: transparent;
      border:0;
      cursor:pointer;
      text-align:left;
      font-weight:1000;
      color:#0f172a;
      font-size:14px;
    }
    .faq-q:focus{ outline:none; box-shadow: inset var(--ring); }
    .faq-plus{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(20,30,55,.12);
      background: rgba(255,255,255,.7);
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:18px;
      transition: transform .2s ease, background .15s ease;
      flex:0 0 auto;
    }
    .faq-item[data-open="true"] .faq-plus{
      transform: rotate(45deg);
      background: rgba(124,58,237,.10);
    }
    .faq-a{
      padding: 0 14px 14px;
      color:var(--muted);
      font-weight:650;
      font-size:13.6px;
    }
    .faq-bottom{ margin-top: 14px; }
    .faq-bottom-card{
      border-radius: var(--radius-xl);
      border:1px solid rgba(124,58,237,.18);
      background: linear-gradient(180deg, rgba(124,58,237,.10), rgba(255,255,255,.65));
      padding: 16px;
      box-shadow: 0 22px 56px rgba(18,33,70,.08);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    .faq-bottom-title{ font-weight:1000; font-size:16px; }
    .faq-bottom-desc{ color:var(--muted); font-weight:650; font-size:13.6px; margin-top:6px; }
    .faq-bottom-actions{ display:flex; gap:12px; flex-wrap:wrap; }

    .wiki-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 14px;
    }
    .wiki-card{
      border-radius: var(--radius-xl);
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 22px 56px rgba(18,33,70,.07);
      padding: 16px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      min-height: 160px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .wiki-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 30px 70px rgba(18,33,70,.12);
      border-color: rgba(6,182,212,.22);
    }
    .wiki-title{ font-weight:1000; font-size:16px; }
    .wiki-text{ color:var(--muted); font-weight:650; font-size:13.6px; }
    .wiki-card .mini-link{ margin-top:auto; }

    .news-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 14px;
    }
    .news-item{
      text-decoration:none;
      border-radius: var(--radius-xl);
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 22px 56px rgba(18,33,70,.07);
      padding: 16px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      display:flex;
      flex-direction:column;
      gap:10px;
      min-height: 170px;
    }
    .news-item:hover{
      transform: translateY(-3px);
      box-shadow: 0 30px 70px rgba(18,33,70,.12);
      border-color: rgba(124,58,237,.22);
    }
    .news-ico{ font-size:22px; }
    .news-body{ display:flex; flex-direction:column; gap:6px; }
    .news-title{ font-weight:1000; font-size:15px; }
    .news-sub{ color:var(--muted); font-weight:650; font-size:13.3px; }
    .news-arrow{ font-weight:1000; margin-top:auto; align-self:flex-end; }

    .contact-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 14px;
      align-items:start;
    }
    .contact-card{
      padding:16px;
      border-radius: var(--radius-xl);
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 22px 56px rgba(18,33,70,.08);
    }
    .contact-top{ display:flex; flex-direction:column; gap:6px; margin-bottom: 12px; }
    .contact-title{ font-weight:1000; font-size:16px; }
    .contact-sub{ color:var(--muted); font-weight:650; font-size:13.5px; }

    .contact-lines{ display:flex; flex-direction:column; gap:10px; }
    .contact-line{
      display:flex; gap:12px; align-items:flex-start;
      padding: 12px;
      border-radius: 16px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.62);
    }
    .contact-ico{
      width:40px; height:40px;
      border-radius: 16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.18);
      flex:0 0 auto;
      font-size:18px;
    }
    .contact-label{ color:var(--muted2); font-weight:800; font-size:12.8px; }
    .contact-link{ text-decoration:none; color:#0f172a; font-weight:950; }
    .contact-value{ font-weight:950; color:#0f172a; }

    .qr-card{
      margin-top: 12px;
      padding: 12px;
      border-radius: var(--radius-xl);
      border:1px solid rgba(6,182,212,.18);
      background: linear-gradient(180deg, rgba(6,182,212,.10), rgba(255,255,255,.62));
    }
    .qr-title{ font-weight:1000; font-size:15px; }
    .qr-img{
      margin-top: 10px;
      padding: 10px;
      border-radius: 18px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,30,55,.10);
      display:flex;
      justify-content:center;
      align-items:center;
    }
    .qr-img img{
      width: 176px;
      max-width: 100%;
      height:auto;
      display:block;
      border-radius: 14px;
      background:#fff;
    }
    .qr-note{ margin-top:10px; color:var(--muted); font-weight:650; font-size:13.3px; }

    .contact-actions{ margin-top: 12px; display:flex; flex-direction:column; gap:10px; }

    .contact-right{
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .partner-card{
      border-radius: var(--radius-xl);
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 22px 56px rgba(18,33,70,.08);
      padding: 16px;
    }
    .partner-head{ display:flex; flex-direction:column; gap:6px; }
    .partner-title{ font-weight:1000; font-size:16px; }
    .partner-sub{ color:var(--muted); font-weight:650; font-size:13.5px; }
    .partner-points{ margin-top: 12px; display:flex; flex-direction:column; gap:10px; }
    .partner-point{
      display:flex; gap:12px; align-items:flex-start;
      padding: 12px;
      border-radius: 16px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.62);
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .partner-point:hover{ transform: translateY(-2px); box-shadow: 0 22px 46px rgba(18,33,70,.10); }
    .partner-ico{
      width:40px; height:40px;
      border-radius: 16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(249,115,22,.10);
      border:1px solid rgba(249,115,22,.18);
      flex:0 0 auto;
      font-size:18px;
    }
    .partner-point-title{ font-weight:980; font-size:14px; }
    .partner-point-text{ color:var(--muted); font-weight:650; font-size:13.3px; margin-top:4px; }
    .partner-actions{ margin-top: 14px; display:flex; gap:12px; flex-wrap:wrap; }

    .comments-card{
      border-radius: var(--radius-xl);
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 22px 56px rgba(18,33,70,.08);
      padding: 16px;
    }
    .comments-head{ display:flex; flex-direction:column; gap:6px; }
    .comments-title{ font-weight:1000; font-size:16px; }
    .comments-sub{ color:var(--muted); font-weight:650; font-size:13.5px; }

    .comments-grid{
      margin-top: 12px;
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 12px;
    }
    .comment-card{
      padding: 12px;
      border-radius: 18px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.62);
      transition: transform .15s ease, box-shadow .15s ease;
      display:flex;
      flex-direction:column;
      gap:10px;
      min-height: 168px;
    }
    .comment-card:hover{ transform: translateY(-2px); box-shadow: 0 22px 46px rgba(18,33,70,.10); }
    .comment-top{
      display:flex; gap:10px; align-items:center;
    }
    .avatar{
      width:42px; height:42px;
      border-radius: 16px;
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      background: linear-gradient(135deg, rgba(124,58,237,.22), rgba(6,182,212,.14));
      border:1px solid rgba(124,58,237,.22);
    }
    .comment-role{ font-weight:1000; font-size:13.8px; }
    .comment-stars{ color:#f59e0b; font-size:13px; letter-spacing:1px; margin-top:2px; }
    .comment-text{ color:var(--muted); font-weight:650; font-size:13.4px; }

    .comments-actions{
      margin-top: 12px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
    }

    .trusted-row{
      margin-top: 14px;
      border-radius: var(--radius-xl);
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.68);
      box-shadow: 0 22px 56px rgba(18,33,70,.07);
      padding: 16px;
    }
    .trusted-head{ display:flex; flex-direction:column; gap:6px; margin-bottom: 12px; }
    .trusted-title{ font-weight:1000; font-size:16px; }
    .trusted-sub{ color:var(--muted); font-weight:650; font-size:13.5px; }
    .trusted-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .trusted-links a{
      text-decoration:none;
      font-weight:900;
      font-size:13px;
      color:#0f172a;
      padding: 9px 11px;
      border-radius: 999px;
      border:1px solid rgba(20,30,55,.10);
      background: rgba(255,255,255,.72);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .trusted-links a:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(18,33,70,.10);
      border-color: rgba(6,182,212,.22);
    }

    .footer-top{
      padding: 6px 0 28px;
    }
    .footer-cta{
      border-radius: var(--radius-xl);
      border:1px solid rgba(20,30,55,.10);
      background: linear-gradient(135deg, rgba(124,58,237,.16), rgba(6,182,212,.12), rgba(249,115,22,.10));
      box-shadow: 0 22px 56px rgba(18,33,70,.10);
      padding: 16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    .footer-cta-title{ font-weight:1000; font-size:18px; }
    .footer-cta-desc{ color:var(--muted); font-weight:650; font-size:13.6px; margin-top:6px; }
    .footer-cta-right{ display:flex; gap:12px; flex-wrap:wrap; }

    .site-footer{
      background: rgba(17,24,39,.96);
      color:#e5e7eb;
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .footer-inner{
      padding: 26px 0 18px;
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 16px;
      align-items:start;
    }
    .footer-left{ display:flex; flex-direction:column; gap:14px; }
    .footer-brand{
      display:flex; gap:12px; align-items:center;
    }
    .footer-title{ font-weight:1000; font-size:16px; }
    .footer-sub{ color: rgba(229,231,235,.78); font-weight:650; font-size:13px; margin-top:4px; }
    .footer-brand img{ width:46px; height:auto; border-radius:14px; box-shadow: 0 18px 34px rgba(0,0,0,.25); }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
    }
    .footer-links a{
      color:#e5e7eb;
      text-decoration:none;
      font-weight:900;
      font-size:13px;
      padding: 8px 10px;
      border-radius: 12px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.06);
      transition: transform .15s ease, background .15s ease;
    }
    .footer-links a:hover{ transform: translateY(-2px); background: rgba(255,255,255,.10); }

    .footer-right{ display:flex; flex-direction:column; gap:14px; }
    .footer-box{
      border-radius: var(--radius-xl);
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      padding: 14px;
    }
    .footer-box-title{ font-weight:1000; font-size:15px; margin-bottom:10px; }
    .footer-box-line{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
      color: rgba(229,231,235,.92);
      font-weight:700;
      font-size:13.5px;
    }
    .footer-box-line:last-child{ border-bottom:none; }
    .footer-box-ico{ width:26px; height:26px; border-radius:10px; display:flex; align-items:center; justify-content:center; background: rgba(255,255,255,.06); }
    .footer-box-link{
      color:#fff;
      text-decoration:none;
      font-weight:1000;
    }

    .footer-bottomline{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }
    .copyright{
      color: rgba(229,231,235,.74);
      font-weight:700;
      font-size:13px;
    }
    .to-top{
      color:#fff;
      text-decoration:none;
      font-weight:950;
      padding: 8px 10px;
      border-radius: 12px;
      border:1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.06);
      transition: transform .15s ease, background .15s ease;
      display:inline-flex;
      align-items:center;
    }
    .to-top:hover{ transform: translateY(-2px); background: rgba(255,255,255,.10); }

    .to-top-fab{
      position:fixed;
      right: 16px;
      bottom: 86px;
      width: 46px; height: 46px;
      border-radius: 16px;
      border:1px solid rgba(20,30,55,.12);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 40px rgba(18,33,70,.14);
      color:#0f172a;
      cursor:pointer;
      font-weight:1000;
      display:flex;
      align-items:center;
      justify-content:center;
      opacity:0;
      transform: translateY(8px);
      pointer-events:none;
      transition: opacity .2s ease, transform .2s ease, box-shadow .15s ease;
      z-index:80;
    }
    .to-top-fab.show{
      opacity:1;
      transform: translateY(0);
      pointer-events:auto;
    }
    .to-top-fab:hover{ box-shadow: 0 24px 54px rgba(18,33,70,.18); transform: translateY(-2px); }

    .floating-kefu{
      position:fixed;
      right: 16px;
      bottom: 22px;
      z-index:90;
      display:flex;
      flex-direction:column;
      align-items:flex-end;
      gap:10px;
    }
    .kefu-btn{
      border-radius: 18px;
      border:1px solid rgba(20,30,55,.12);
      background: linear-gradient(135deg, rgba(124,58,237,.22), rgba(6,182,212,.14));
      color:#0f172a;
      font-weight:1000;
      padding: 12px 14px;
      cursor:pointer;
      box-shadow: 0 18px 40px rgba(18,33,70,.14);
      display:flex;
      align-items:center;
      gap:10px;
      transition: transform .15s ease, box-shadow .15s ease;
      min-width: 106px;
      justify-content:center;
    }
    .kefu-btn:hover{ transform: translateY(-2px); box-shadow: 0 24px 54px rgba(18,33,70,.18); }
    .kefu-dot{
      width:10px; height:10px;
      border-radius:50%;
      background: var(--grad);
      box-shadow: 0 0 0 6px rgba(124,58,237,.14);
    }

    .kefu-pop{
      width: 260px;
      border-radius: 20px;
      border:1px solid rgba(20,30,55,.12);
      background: rgba(255,255,255,.92);
      box-shadow: 0 26px 70px rgba(18,33,70,.20);
      overflow:hidden;
      animation: popIn .18s ease both;
    }
    @keyframes popIn{
      from{ opacity:0; transform: translateY(8px) scale(.98); }
      to{ opacity:1; transform: translateY(0) scale(1); }
    }
    .kefu-pop-head{
      padding: 12px 12px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      background: linear-gradient(135deg, rgba(124,58,237,.14), rgba(6,182,212,.10));
      border-bottom:1px solid rgba(20,30,55,.08);
    }
    .kefu-pop-title{ font-weight:1000; }
    .kefu-close{
      width:36px; height:36px;
      border-radius:14px;
      border:1px solid rgba(20,30,55,.12);
      background: rgba(255,255,255,.8);
      cursor:pointer;
      font-weight:1000;
      font-size:18px;
      line-height:1;
    }
    .kefu-pop-body{ padding: 12px; display:flex; flex-direction:column; gap:10px; align-items:center; }
    .kefu-pop-body img{
      width: 200px;
      max-width: 100%;
      height:auto;
      border-radius: 16px;
      background:#fff;
      border:1px solid rgba(20,30,55,.10);
    }
    .kefu-pop-note{
      text-align:center;
      color:var(--muted);
      font-weight:750;
      font-size:13px;
    }

    @media (max-width: 980px){
      .desktop-nav{ display:none; }
      .burger{ display:block; }
      .mobile-nav{ display:block; }
      .hero-grid{ grid-template-columns: 1fr; }
      .service-layout{ grid-template-columns: 1fr; }
      .steps-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .feature-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .industry-grid{ grid-template-columns: 1fr; }
      .network-card{ grid-template-columns: 1fr; }
      .rating-row{ grid-template-columns: 1fr; }
      .token-layout{ grid-template-columns: 1fr; }
      .training-grid{ grid-template-columns: 1fr; }
      .two-col{ grid-template-columns: 1fr; }
      .case-grid{ grid-template-columns: 1fr; }
      .articles-grid{ grid-template-columns: 1fr; }
      .help-grid{ grid-template-columns: 1fr; }
      .wiki-grid{ grid-template-columns: 1fr; }
      .news-grid{ grid-template-columns: 1fr; }
      .contact-grid{ grid-template-columns: 1fr; }
      .comments-grid{ grid-template-columns: 1fr; }
      .footer-inner{ grid-template-columns: 1fr; }
      .brand{ min-width: auto; }
      .brand-sub{ display:none; }
      .hero-right{ order:2; }
    }

    @media (prefers-reduced-motion: no-preference){
      .reveal{
        animation: revealIn .6s ease both;
      }
      @keyframes revealIn{
        from{ opacity:0; transform: translateY(10px); }
        to{ opacity:1; transform: translateY(0); }
      }
    }