:root{
      --bg:#fbfbfe;
      --card:#ffffff;
      --text:#111827;
      --muted:#5b6576;
      --muted2:#7a879a;
      --line:rgba(17,24,39,.10);
      --shadow:0 18px 50px rgba(17,24,39,.10);
      --shadow2:0 10px 24px rgba(17,24,39,.10);
      --grad-1:#7c3aed;
      --grad-2:#06b6d4;
      --grad-3:#f97316;
      --grad-4:#22c55e;
      --brand:#4f46e5;
      --brand2:#06b6d4;
      --btnText:#0b1220;
      --radius:18px;
      --radius2:24px;
      --container:1120px;
      --pad:18px;
      --focus:rgba(99,102,241,.35);
    }

    *{ 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, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans SC", "Apple Color Emoji","Segoe UI Emoji";
      background: var(--bg);
      color: var(--text);
      overflow-x:hidden;
    }

    .skip-link{
      position:absolute; left:12px; top:-44px;
      background:#0b1220; color:#fff;
      padding:10px 12px; border-radius:12px;
      z-index:9999;
      transition:top .2s ease;
      text-decoration:none;
      font-weight:600;
    }
    .skip-link:focus{ top:12px; outline:none; box-shadow:0 0 0 4px var(--focus); }

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

    .bg-wrap{
      position:fixed; inset:0;
      pointer-events:none;
      z-index:-1;
      background:
        radial-gradient(900px 450px at 20% 0%, rgba(124,58,237,.16), rgba(124,58,237,0) 60%),
        radial-gradient(800px 420px at 85% 10%, rgba(6,182,212,.14), rgba(6,182,212,0) 58%),
        radial-gradient(900px 500px at 65% 40%, rgba(249,115,22,.10), rgba(249,115,22,0) 58%),
        linear-gradient(180deg, rgba(255,255,255,.9), rgba(251,251,254,1));
    }
    .bg-grid{
      position:absolute; inset:-20%;
      background:
        linear-gradient(to right, rgba(17,24,39,.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(17,24,39,.04) 1px, transparent 1px);
      background-size:52px 52px;
      transform:rotate(-2deg);
      opacity:.65;
      filter:saturate(1.1);
    }
    .bg-glow{
      position:absolute;
      border-radius:999px;
      filter:blur(32px);
      opacity:.65;
      animation: floatGlow 10s ease-in-out infinite;
    }
    .bg-glow-1{ width:520px; height:240px; left:-90px; top:120px; background:linear-gradient(90deg, rgba(124,58,237,.35), rgba(6,182,212,.18)); }
    .bg-glow-2{ width:520px; height:240px; right:-120px; top:80px; background:linear-gradient(90deg, rgba(6,182,212,.28), rgba(249,115,22,.18)); animation-duration:12s; }
    .bg-glow-3{ width:440px; height:220px; left:35%; top:460px; background:linear-gradient(90deg, rgba(249,115,22,.18), rgba(34,197,94,.18)); animation-duration:14s; }
    .bg-line{
      position:absolute; left:10%; right:10%; top:180px; height:1px;
      background: linear-gradient(90deg, rgba(124,58,237,0), rgba(124,58,237,.35), rgba(6,182,212,.25), rgba(249,115,22,.18), rgba(249,115,22,0));
      opacity:.7;
    }
    @keyframes floatGlow{
      0%,100%{ transform:translateY(0) translateX(0); }
      50%{ transform:translateY(10px) translateX(8px); }
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:40;
      backdrop-filter:saturate(160%) blur(10px);
      background: rgba(251,251,254,.72);
      border-bottom:1px solid rgba(17,24,39,.08);
    }
    .nav-container{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 0;
      gap:14px;
    }

    .brand{ display:flex; align-items:center; gap:12px; min-width:260px; }
    .brand-link{ display:flex; align-items:center; gap:12px; text-decoration:none; color:inherit; }
    .ai-page-logo{ width:44px; height:auto; display:block; }
    .brand-text{ display:flex; flex-direction:column; gap:2px; }
    .brand-name{ font-weight:860; letter-spacing:-.02em; font-size:15px; }
    .brand-sub{ font-size:12px; color:var(--muted); }

    .nav-desktop{ display:flex; align-items:center; gap:18px; flex:1; justify-content:center; }
    .nav-item{
      text-decoration:none;
      color:rgba(17,24,39,.84);
      font-weight:650;
      font-size:13px;
      padding:10px 8px;
      border-radius:12px;
      transition: background .2s ease, transform .2s ease, color .2s ease;
      white-space:nowrap;
    }
    .nav-item:hover{ background:rgba(99,102,241,.08); color:rgba(17,24,39,1); transform:translateY(-1px); }

    .nav-actions{ display:flex; align-items:center; gap:10px; min-width:260px; justify-content:flex-end; }
    .icon-btn{
      background:transparent;
      border:1px solid rgba(17,24,39,.12);
      width:42px; height:42px;
      border-radius:14px;
      display:grid; place-items:center;
      cursor:pointer;
      transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      color:rgba(17,24,39,.86);
    }
    .icon-btn:hover{ transform:translateY(-1px); box-shadow:0 10px 24px rgba(17,24,39,.10); border-color:rgba(99,102,241,.28); }
    .burger{
      width:18px; height:12px; position:relative; display:block;
    }
    .burger::before,.burger::after,.burger span{ content:""; position:absolute; left:0; right:0; height:2px; border-radius:2px; background:currentColor; opacity:.95; }
    .burger::before{ top:0; }
    .burger::after{ bottom:0; }
    .burger{ }
    .burger::after{}
    .burger::before{}
    .burger span{}
    .burger:before{ }
    .burger:after{ }
    .burger{ }
    .burger{ }
    .burger::before{ }
    .burger::after{ }
    .burger{ }
    .burger{ }
    .burger{ }
    .burger{ }
    .burger{ }
    .burger{ }
    .burger{ }

    .mobile-toggle{ display:none; }

    .xmark{
      width:16px; height:16px; position:relative; display:block;
    }
    .xmark::before,.xmark::after{
      content:""; position:absolute; left:50%; top:50%;
      width:16px; height:2px; background:currentColor; border-radius:2px;
      transform-origin:center;
    }
    .xmark::before{ transform:translate(-50%,-50%) rotate(45deg); }
    .xmark::after{ transform:translate(-50%,-50%) rotate(-45deg); }

    .btn{
      text-decoration:none;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      border-radius:14px;
      padding:11px 14px;
      font-weight:750;
      font-size:14px;
      border:1px solid rgba(17,24,39,.12);
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      user-select:none;
      color:rgba(17,24,39,.92);
      background:#fff;
      white-space:nowrap;
    }
    .btn:focus{ outline:none; box-shadow:0 0 0 4px var(--focus); }
    .btn:hover{ transform:translateY(-1px); box-shadow:0 14px 34px rgba(17,24,39,.12); }
    .btn-w100{ width:100%; }

    .btn-primary{
      color:#06121f;
      border-color: rgba(99,102,241,.22);
      background:
        linear-gradient(135deg, rgba(124,58,237,.18), rgba(6,182,212,.18)),
        linear-gradient(135deg, #7c3aed, #06b6d4);
      background-blend-mode:screen, normal;
      position:relative;
      overflow:hidden;
    }
    .btn-primary::after{
      content:"";
      position:absolute; inset:-2px;
      background: linear-gradient(90deg, rgba(255,255,255,.0), rgba(255,255,255,.45), rgba(255,255,255,0));
      transform:translateX(-120%);
      transition:transform .5s ease;
      opacity:.55;
      pointer-events:none;
    }
    .btn-primary:hover::after{ transform:translateX(120%); }
    .btn-primary:hover{ border-color: rgba(99,102,241,.38); }

    .btn-outline{
      background: rgba(255,255,255,.75);
      border-color: rgba(17,24,39,.14);
    }
    .btn-ghost{
      background: rgba(99,102,241,.08);
      border-color: rgba(99,102,241,.22);
      color: rgba(17,24,39,.92);
    }
    .btn-lg{ padding:13px 16px; border-radius:16px; font-size:15px; }

    .hero{ padding:30px 0 10px; }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.12fr .88fr;
      gap:22px;
      align-items:stretch;
      padding:22px 0 18px;
    }
    .hero-left{ padding:12px 0; }
    .hero-right{ position:relative; }

    .hero-badge{
      display:inline-flex; align-items:center; gap:10px;
      padding:9px 12px;
      border:1px solid rgba(99,102,241,.22);
      background: rgba(255,255,255,.68);
      border-radius:999px;
      font-weight:760;
      font-size:13px;
      color:rgba(17,24,39,.9);
    }
    .badge-dot{
      width:10px; height:10px; border-radius:50%;
      background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,0) 55%),
                  linear-gradient(135deg, #7c3aed, #06b6d4);
      box-shadow:0 0 0 6px rgba(99,102,241,.12);
    }

    .hero-title{
      margin:14px 0 10px;
      font-size:40px;
      line-height:1.08;
      letter-spacing:-.03em;
    }
    .hero-desc{
      color:var(--muted);
      margin:0;
      font-size:15px;
      line-height:1.75;
      max-width:620px;
    }
    .hero-ctas{ display:flex; gap:12px; margin-top:18px; flex-wrap:wrap; }
    .hero-mini{
      margin-top:18px;
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
      max-width:620px;
    }
    .mini-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 14px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.62);
      border-radius:16px;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .mini-item:hover{ transform:translateY(-2px); box-shadow:0 18px 40px rgba(17,24,39,.12); background:rgba(255,255,255,.78); }
    .mini-icon{
      width:34px; height:34px; border-radius:12px;
      background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(6,182,212,.14));
      border:1px solid rgba(99,102,241,.20);
      display:grid; place-items:center;
      color:rgba(17,24,39,.9);
      flex:0 0 auto;
    }
    .mini-icon svg{ width:18px; height:18px; }
    .mini-title{ font-weight:850; font-size:13.5px; }
    .mini-text{ color:var(--muted); font-size:12.5px; margin-top:4px; }

    .hero-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(17,24,39,.10);
      border-radius:var(--radius2);
      box-shadow: var(--shadow2);
      padding:18px;
      height:100%;
      position:relative;
      overflow:hidden;
    }
    .hero-card::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(380px 140px at 20% 0%, rgba(124,58,237,.22), rgba(124,58,237,0) 60%),
        radial-gradient(320px 120px at 95% 15%, rgba(6,182,212,.18), rgba(6,182,212,0) 60%),
        radial-gradient(260px 120px at 70% 80%, rgba(249,115,22,.12), rgba(249,115,22,0) 60%);
      opacity:.9;
      pointer-events:none;
    }
    .hero-card-top{ position:relative; z-index:1; }
    .hero-card-title{ font-weight:900; letter-spacing:-.02em; font-size:15px; }
    .hero-card-note{ margin-top:6px; color:var(--muted); font-size:12.5px; line-height:1.6; }

    .metrics{
      position:relative; z-index:1;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:14px;
    }
    .metric{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.58);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .metric:hover{ transform:translateY(-2px); box-shadow:0 18px 36px rgba(17,24,39,.12); }
    .metric-num{
      font-size:22px;
      font-weight:930;
      letter-spacing:-.02em;
      background: linear-gradient(135deg, rgba(124,58,237,1), rgba(6,182,212,1));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .metric-label{ margin-top:6px; color:var(--muted); font-size:12.5px; line-height:1.45; font-weight:650; }

    .hero-card-actions{
      position:relative; z-index:1;
      display:flex; gap:10px; margin-top:14px; flex-wrap:wrap;
    }

    .hero-safety{
      position:relative; z-index:1;
      margin-top:14px;
      display:grid; gap:10px;
    }
    .safety-item{
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:14px;
      border:1px dashed rgba(17,24,39,.16);
      background: rgba(255,255,255,.40);
    }
    .safety-pill{
      font-size:12px; font-weight:900;
      padding:6px 10px;
      border-radius:999px;
      background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(6,182,212,.16));
      border:1px solid rgba(99,102,241,.18);
    }
    .safety-text{ color:var(--muted); font-weight:650; font-size:12.5px; }

    .floating-chips{
      position:absolute;
      inset:auto 0 -12px 0;
      display:flex;
      justify-content:center;
      gap:10px;
      pointer-events:none;
      opacity:.95;
      flex-wrap:wrap;
    }
    .chip{
      border-radius:999px;
      padding:8px 12px;
      font-size:12.5px;
      font-weight:850;
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.70);
      box-shadow:0 12px 26px rgba(17,24,39,.10);
      backdrop-filter: blur(10px);
      transform: translateY(0);
      animation: chipFloat 4.6s ease-in-out infinite;
    }
    .chip-a{ animation-delay:.0s; }
    .chip-b{ animation-delay:.2s; }
    .chip-c{ animation-delay:.4s; }
    .chip-d{ animation-delay:.6s; }
    @keyframes chipFloat{
      0%,100%{ transform:translateY(0); }
      50%{ transform:translateY(-5px); }
    }
    .chip-a{ border-color: rgba(124,58,237,.22); }
    .chip-b{ border-color: rgba(6,182,212,.22); }
    .chip-c{ border-color: rgba(249,115,22,.22); }
    .chip-d{ border-color: rgba(34,197,94,.22); }

    .section{ padding:56px 0; }
    .section-surface{
      padding:62px 0;
      position:relative;
    }
    .section-surface::before{
      content:"";
      position:absolute; left:0; right:0; top:0; bottom:0;
      background:
        radial-gradient(900px 420px at 15% 0%, rgba(124,58,237,.11), rgba(124,58,237,0) 55%),
        radial-gradient(760px 380px at 85% 20%, rgba(6,182,212,.10), rgba(6,182,212,0) 55%);
      opacity:.95;
      pointer-events:none;
    }
    .section-surface > .container{ position:relative; z-index:1; }

    .section-head{
      margin-bottom:22px;
      text-align:left;
    }
    .kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(99,102,241,.20);
      background: rgba(255,255,255,.72);
      font-weight:900;
      font-size:12.5px;
      color:rgba(17,24,39,.9);
      margin-bottom:12px;
    }
    .kicker-compact{ margin-bottom:8px; }
    .lead{ color:var(--muted); margin:10px 0 0; font-size:15px; line-height:1.85; max-width:780px; }

    h1,h2,h3{ margin:0; }
    h2{
      font-size:28px;
      letter-spacing:-.02em;
      line-height:1.25;
    }
    h3{ font-size:16px; letter-spacing:-.01em; }

    .about-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .about-card{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      border-radius:var(--radius);
      padding:18px;
      box-shadow:0 12px 30px rgba(17,24,39,.06);
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .about-card:hover{ transform:translateY(-2px); box-shadow:0 20px 54px rgba(17,24,39,.12); background:rgba(255,255,255,.84); }
    .about-card.alt{
      background:
        linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.62)),
        radial-gradient(420px 200px at 20% 10%, rgba(124,58,237,.13), rgba(124,58,237,0) 55%),
        radial-gradient(320px 160px at 95% 15%, rgba(6,182,212,.12), rgba(6,182,212,0) 55%);
      border-color: rgba(99,102,241,.18);
    }
    .about-icon{
      width:44px; height:44px;
      border-radius:16px;
      display:grid; place-items:center;
      border:1px solid rgba(99,102,241,.18);
      background: linear-gradient(135deg, rgba(124,58,237,.14), rgba(6,182,212,.10));
      color:rgba(17,24,39,.9);
      margin-bottom:10px;
    }
    .about-icon svg{ width:22px; height:22px; }
    .about-card p{ color:var(--muted); line-height:1.8; margin:10px 0 12px; font-size:14px; }
    .link-more{
      text-decoration:none;
      color:rgba(79,70,229,.98);
      font-weight:850;
      display:inline-flex;
      align-items:center;
      gap:10px;
      margin-top:6px;
    }
    .link-more:hover{ text-decoration:underline; text-underline-offset:4px; }

    .services-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .service-card{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      border-radius:var(--radius);
      padding:18px;
      box-shadow:0 12px 30px rgba(17,24,39,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex;
      flex-direction:column;
      min-height:220px;
    }
    .service-card:hover{ transform:translateY(-2px); box-shadow:0 20px 50px rgba(17,24,39,.12); border-color: rgba(99,102,241,.22); }
    .service-top{ display:flex; align-items:center; gap:12px; }
    .service-icon{
      width:44px; height:44px;
      border-radius:16px;
      display:grid; place-items:center;
      border:1px solid rgba(99,102,241,.18);
      background: linear-gradient(135deg, rgba(124,58,237,.14), rgba(6,182,212,.10));
      color:rgba(17,24,39,.9);
      flex:0 0 auto;
    }
    .service-icon svg{ width:22px; height:22px; }
    .service-card h3{ font-size:16px; }
    .ticks{
      list-style:none; padding:0; margin:14px 0 14px;
      color:rgba(17,24,39,.92);
      display:flex; flex-direction:column; gap:9px;
      font-weight:650;
    }
    .ticks li{
      display:flex; gap:10px; align-items:flex-start;
      color:var(--muted);
      line-height:1.5;
      font-size:13.5px;
    }
    .ticks li::before{
      content:"✓";
      width:18px; height:18px;
      border-radius:8px;
      display:grid; place-items:center;
      background: rgba(99,102,241,.12);
      color: rgba(79,70,229,1);
      font-weight:900;
      flex:0 0 auto;
    }
    .ticks-tight{ margin-top:12px; }
    .service-card .link-more{ margin-top:auto; }

    .timeline{
      position:relative;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      padding:10px 0;
    }
    .timeline-line{
      position:absolute;
      left:calc(50% - 1px);
      top:0; bottom:0;
      width:2px;
      background: linear-gradient(180deg, rgba(124,58,237,.0), rgba(124,58,237,.35), rgba(6,182,212,.35), rgba(249,115,22,.20), rgba(249,115,22,0));
      opacity:.9;
    }
    .timeline-step{
      position:relative;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      border-radius:var(--radius);
      padding:16px;
      box-shadow:0 12px 30px rgba(17,24,39,.06);
      display:flex;
      gap:12px;
      align-items:flex-start;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .timeline-step:hover{ transform:translateY(-2px); box-shadow:0 20px 45px rgba(17,24,39,.11); }
    .step-index{
      font-weight:950;
      font-size:14px;
      padding:8px 10px;
      border-radius:14px;
      border:1px solid rgba(99,102,241,.18);
      background: linear-gradient(135deg, rgba(124,58,237,.14), rgba(6,182,212,.10));
      flex:0 0 auto;
    }
    .step-title{ font-weight:900; letter-spacing:-.01em; }
    .step-desc{ color:var(--muted); margin-top:6px; line-height:1.75; font-size:13.5px; }

    .workflow-cta{
      margin-top:18px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      border-radius:var(--radius2);
      padding:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      box-shadow:0 16px 40px rgba(17,24,39,.08);
    }
    .cta-title{ font-weight:950; letter-spacing:-.02em; font-size:16px; }
    .cta-sub{ color:var(--muted); margin-top:6px; line-height:1.7; font-size:13.5px; }
    .workflow-cta-right{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }

    .solution-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .solution-card{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      border-radius:var(--radius);
      padding:16px;
      box-shadow:0 12px 30px rgba(17,24,39,.06);
      transition: transform .2s ease, box-shadow .2s ease;
      display:flex; flex-direction:column;
    }
    .solution-card:hover{ transform:translateY(-2px); box-shadow:0 20px 46px rgba(17,24,39,.11); }
    .solution-title{ font-weight:950; letter-spacing:-.02em; margin-bottom:8px; }
    .solution-desc{ color:var(--muted); line-height:1.75; font-size:13.5px; margin-bottom:12px; }
    .pill-row{ display:flex; flex-wrap:wrap; gap:8px; margin-top:auto; }
    .pill{
      font-size:12.5px;
      font-weight:850;
      color:rgba(17,24,39,.90);
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.58);
    }

    .network-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .network-card{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      border-radius:var(--radius2);
      padding:18px;
      box-shadow:0 16px 40px rgba(17,24,39,.08);
    }
    .network-card.alt{
      background:
        radial-gradient(520px 220px at 20% 0%, rgba(124,58,237,.12), rgba(124,58,237,0) 58%),
        radial-gradient(420px 200px at 95% 20%, rgba(6,182,212,.10), rgba(6,182,212,0) 58%),
        rgba(255,255,255,.70);
      border-color: rgba(99,102,241,.18);
    }
    .network-title{ font-weight:950; font-size:16px; letter-spacing:-.02em; }
    .network-desc{ color:var(--muted); margin-top:8px; line-height:1.8; font-size:14px; }
    .network-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
    .simple-list{ list-style:none; padding:0; margin:14px 0 0; display:grid; gap:10px; color:var(--muted); font-weight:650; }
    .simple-list li{ display:flex; gap:10px; align-items:flex-start; }
    .simple-list li::before{ content:"•"; color:rgba(79,70,229,1); font-weight:900; }

    .micro-cards{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
      margin-top:14px;
    }
    .micro-card{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.64);
      border-radius:var(--radius);
      padding:14px;
      box-shadow:0 12px 30px rgba(17,24,39,.06);
      transition: transform .2s ease;
    }
    .micro-card:hover{ transform:translateY(-2px); }
    .micro-title{ font-weight:950; letter-spacing:-.02em; }
    .micro-desc{ margin-top:6px; color:var(--muted); line-height:1.75; font-size:13.5px; }

    .compare-grid{
      display:grid;
      grid-template-columns: .92fr 1.08fr;
      gap:14px;
      align-items:start;
    }
    .compare-summary{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      border-radius:var(--radius2);
      padding:18px;
      box-shadow:0 16px 40px rgba(17,24,39,.08);
      position:sticky;
      top:92px;
    }
    .rating-top{ display:flex; justify-content:space-between; align-items:flex-start; gap:12px; }
    .rating-stars{ font-size:20px; letter-spacing:2px; color: rgba(245,158,11,.95); }
    .rating-score{ text-align:right; }
    .score-num{
      font-weight:980;
      font-size:34px;
      letter-spacing:-.03em;
      background: linear-gradient(135deg, #7c3aed, #06b6d4);
      -webkit-background-clip:text; background-clip:text; color:transparent;
    }
    .score-sub{ color:var(--muted); font-weight:750; margin-top:2px; font-size:12.5px; }
    .rating-desc{ margin-top:10px; color:var(--muted); line-height:1.75; font-size:14px; }
    .rating-bullets{ margin-top:14px; display:grid; grid-template-columns: 1fr; gap:10px; }
    .rb-item{
      display:flex; gap:10px; align-items:center;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.56);
    }
    .rb-ic{
      width:22px; height:22px;
      border-radius:10px;
      display:grid; place-items:center;
      background: rgba(99,102,241,.12);
      color: rgba(79,70,229,1);
      font-weight:950;
      flex:0 0 auto;
    }
    .compare-summary-cta{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }

    .table-card{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      border-radius:var(--radius2);
      padding:18px;
      box-shadow:0 16px 40px rgba(17,24,39,.08);
    }
    .table-head{ display:flex; justify-content:space-between; align-items:flex-start; gap:12px; }
    .table-title{ font-weight:950; letter-spacing:-.02em; font-size:16px; }
    .table-note{ color:var(--muted); font-size:12.5px; line-height:1.6; margin-top:4px; font-weight:650; }
    .table-scroll{ overflow:auto; padding-bottom:6px; }
    table{ border-collapse:collapse; width:100%; min-width:720px; }
    .compare-table th, .compare-table td{
      border-bottom:1px solid rgba(17,24,39,.10);
      padding:12px 10px;
      text-align:left;
      vertical-align:top;
      font-size:13.5px;
    }
    .compare-table th{
      color:rgba(17,24,39,.88);
      font-weight:950;
      background: linear-gradient(135deg, rgba(124,58,237,.10), rgba(6,182,212,.10));
    }
    .tag{
      display:inline-flex; align-items:center;
      font-weight:900;
      font-size:12.5px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.14);
      background: rgba(255,255,255,.55);
      color:rgba(17,24,39,.9);
      white-space:nowrap;
    }
    .tag-good{
      border-color: rgba(34,197,94,.24);
      background: rgba(34,197,94,.10);
      color: rgba(16,185,129,.96);
    }
    .table-foot{
      display:flex; justify-content:space-between; align-items:center;
      gap:12px; margin-top:14px;
      padding-top:12px;
      border-top:1px dashed rgba(17,24,39,.16);
      flex-wrap:wrap;
    }
    .table-foot-left{ color:var(--muted); font-weight:650; line-height:1.6; font-size:13.5px; }

    .form-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .form-card{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      border-radius:var(--radius2);
      padding:18px;
      box-shadow:0 16px 40px rgba(17,24,39,.08);
    }
    .form-title{ font-weight:980; letter-spacing:-.02em; font-size:16px; }
    .form{ margin-top:12px; }
    .field-row{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; margin-top:12px; }
    .field{ display:flex; flex-direction:column; gap:8px; }
    .label{ font-weight:850; font-size:13px; color:rgba(17,24,39,.88); }
    input,select,textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.14);
      background: rgba(255,255,255,.78);
      padding:12px 12px;
      font-size:14px;
      color:rgba(17,24,39,.95);
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease, background .15s ease;
    }
    textarea{ resize:vertical; min-height:110px; }
    input:focus,select:focus,textarea:focus{
      border-color: rgba(99,102,241,.42);
      box-shadow:0 0 0 4px var(--focus);
      background: rgba(255,255,255,.92);
    }

    .form-foot{
      margin-top:14px;
      display:flex; align-items:center; gap:14px;
      flex-wrap:wrap;
    }
    .form-hint{
      display:flex; align-items:center; gap:10px;
      color:var(--muted);
      font-weight:650;
      font-size:13px;
      line-height:1.6;
      flex:1 1 auto;
    }
    .hint-dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, #7c3aed, #06b6d4);
      box-shadow:0 0 0 6px rgba(99,102,241,.12);
    }

    .form-side{ display:grid; gap:14px; }
    .side-block{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      border-radius:var(--radius2);
      padding:18px;
      box-shadow:0 16px 40px rgba(17,24,39,.06);
    }
    .side-block.alt{
      background:
        radial-gradient(520px 220px at 15% 0%, rgba(124,58,237,.12), rgba(124,58,237,0) 55%),
        radial-gradient(420px 200px at 95% 20%, rgba(6,182,212,.10), rgba(6,182,212,0) 55%),
        rgba(255,255,255,.70);
      border-color: rgba(99,102,241,.18);
    }
    .side-title{ font-weight:980; letter-spacing:-.02em; font-size:16px; }
    .side-list{
      list-style:none; padding:0; margin:12px 0 0;
      display:grid; gap:10px;
      color:var(--muted);
      font-weight:650;
    }
    .side-list li{ display:flex; gap:10px; align-items:flex-start; line-height:1.6; font-size:13.5px; }
    .side-list li::before{ content:"✓"; width:18px; height:18px; border-radius:8px; display:grid; place-items:center; background:rgba(99,102,241,.12); color:rgba(79,70,229,1); font-weight:950; flex:0 0 auto; }

    .side-tags{ margin-top:12px; display:flex; flex-wrap:wrap; gap:10px; }
    .tag-soft{
      border-color: rgba(99,102,241,.22);
      background: rgba(99,102,241,.10);
      color: rgba(79,70,229,1);
      padding:7px 10px;
      border-radius:999px;
      font-weight:900;
      font-size:12.5px;
    }

    .quick-actions{ display:grid; gap:10px; margin-top:12px; }

    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:12px;
    }
    .cloud-item{
      border-radius:999px;
      padding:8px 10px;
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.60);
      color: rgba(17,24,39,.88);
      font-weight:850;
      font-size:12.5px;
    }
    .small-muted{ color:var(--muted2); font-size:12.5px; margin-top:10px; font-weight:650; }

    .token-grid{
      display:grid;
      grid-template-columns: .92fr 1.08fr;
      gap:14px;
      align-items:start;
    }
    .token-card{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      border-radius:var(--radius2);
      padding:18px;
      box-shadow:0 16px 40px rgba(17,24,39,.08);
    }
    .token-title{ font-weight:980; letter-spacing:-.02em; font-size:16px; margin-bottom:10px; }
    .ticks-tight li::before{ background: rgba(6,182,212,.10); color: rgba(6,182,212,.95); }
    .badge-pill{
      display:inline-flex; align-items:center; justify-content:center;
      border-radius:999px;
      padding:8px 10px;
      border:1px solid rgba(99,102,241,.22);
      background: rgba(99,102,241,.10);
      color: rgba(79,70,229,1);
      font-weight:950;
      font-size:12.5px;
      margin-right:10px;
      margin-top:12px;
    }
    .badge-pill-2{
      border-color: rgba(6,182,212,.24);
      background: rgba(6,182,212,.10);
      color: rgba(8,145,178,1);
    }
    .token-table-card{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      border-radius:var(--radius2);
      padding:18px;
      box-shadow:0 16px 40px rgba(17,24,39,.08);
    }
    .token-table-head{
      display:flex; justify-content:space-between; align-items:flex-start; gap:12px;
      margin-bottom:12px;
    }
    .token-table-title{ font-weight:980; letter-spacing:-.02em; font-size:16px; }
    .token-table-note{ color:var(--muted); font-size:12.5px; font-weight:650; }
    .mini-table{ min-width:680px; }
    .mini-table th, .mini-table td{
      border-bottom:1px solid rgba(17,24,39,.10);
      padding:12px 10px;
      text-align:left;
      font-size:13.5px;
      vertical-align:top;
    }
    .mini-table th{
      font-weight:950;
      color:rgba(17,24,39,.88);
      background: linear-gradient(135deg, rgba(6,182,212,.10), rgba(124,58,237,.10));
    }
    .token-table-foot{
      display:flex; justify-content:space-between; align-items:center; gap:12px;
      margin-top:14px; flex-wrap:wrap;
      padding-top:12px;
      border-top:1px dashed rgba(17,24,39,.16);
    }

    .training-grid{
      display:grid;
      grid-template-columns: 1.08fr .92fr;
      gap:14px;
      align-items:start;
    }
    .training-card{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      border-radius:var(--radius2);
      padding:18px;
      box-shadow:0 16px 40px rgba(17,24,39,.08);
    }
    .training-title{ font-weight:980; letter-spacing:-.02em; font-size:16px; }
    .course-list{ margin-top:12px; display:grid; gap:12px; }
    .course-item{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.60);
      border-radius:16px;
      padding:12px;
    }
    .course-name{ font-weight:950; letter-spacing:-.01em; }
    .course-desc{ color:var(--muted); margin-top:6px; line-height:1.75; font-size:13.5px; font-weight:650; }

    .training-side{ display:grid; gap:14px; }

    .cta-strip{
      margin-top:14px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      border-radius:var(--radius2);
      padding:16px;
      display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
      box-shadow:0 16px 40px rgba(17,24,39,.08);
    }
    .cta-strip-left{ min-width:260px; }
    .cta-strip-right{ display:flex; gap:10px; }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .case-card{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      border-radius:var(--radius2);
      padding:16px;
      box-shadow:0 12px 30px rgba(17,24,39,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height:210px;
      display:flex; flex-direction:column;
    }
    .case-card:hover{ transform:translateY(-2px); box-shadow:0 20px 50px rgba(17,24,39,.12); border-color: rgba(99,102,241,.22); }
    .case-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
    .case-label{
      font-weight:950;
      font-size:12.5px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.55);
      color: rgba(17,24,39,.88);
    }
    .case-badge{
      font-weight:900;
      font-size:12.5px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(99,102,241,.20);
      background: rgba(99,102,241,.10);
      color: rgba(79,70,229,1);
      white-space:nowrap;
    }
    .case-card h3{ margin-top:10px; font-size:16px; letter-spacing:-.02em; }
    .case-desc{ color:var(--muted); line-height:1.75; margin-top:8px; font-size:13.5px; font-weight:650; }
    .case-meta{ display:flex; flex-wrap:wrap; gap:8px; margin-top:auto; padding-top:12px; }
    .meta-pill{
      font-size:12.5px;
      font-weight:900;
      color:rgba(17,24,39,.88);
      padding:7px 10px;
      border-radius:999px;
      background: rgba(255,255,255,.58);
      border:1px solid rgba(17,24,39,.12);
    }
    .cases-actions{
      margin-top:14px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      border-radius:var(--radius2);
      padding:16px;
      display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
      box-shadow:0 16px 40px rgba(17,24,39,.08);
    }
    .cases-actions-title{ font-weight:980; letter-spacing:-.02em; }
    .cases-actions-sub{ color:var(--muted); margin-top:6px; line-height:1.7; font-size:13.5px; font-weight:650; }
    .cases-actions-right{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }

    .article-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .article-card{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      border-radius:var(--radius2);
      padding:18px;
      box-shadow:0 16px 40px rgba(17,24,39,.08);
      position:relative;
      overflow:hidden;
    }
    .article-card::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(520px 240px at 10% 0%, rgba(124,58,237,.10), rgba(124,58,237,0) 55%),
        radial-gradient(420px 240px at 95% 20%, rgba(6,182,212,.10), rgba(6,182,212,0) 55%);
      pointer-events:none;
      opacity:.9;
    }
    .article-card > *{ position:relative; z-index:1; }
    .article-card.alt{ background: rgba(255,255,255,.70); border-color: rgba(99,102,241,.16); }
    .article-head{ display:flex; justify-content:space-between; align-items:flex-start; gap:12px; margin-bottom:10px; }
    .article-title{ font-weight:980; letter-spacing:-.02em; font-size:16px; }
    .article-sub{ color:var(--muted); font-weight:650; font-size:12.5px; margin-top:4px; }

    .article-list{
      list-style:none; padding:0; margin:12px 0 0; display:grid; gap:12px;
    }
    .article-list li{
      display:flex; justify-content:space-between; gap:12px;
      align-items:flex-start;
      border-bottom:1px dashed rgba(17,24,39,.14);
      padding-bottom:12px;
    }
    .article-list li:last-child{ border-bottom:none; padding-bottom:0; }
    .article-list a{
      text-decoration:none;
      font-weight:900;
      color:rgba(17,24,39,.92);
      line-height:1.45;
      font-size:14px;
      transition: color .15s ease, transform .15s ease;
    }
    .article-list a:hover{ color: rgba(79,70,229,1); text-decoration:underline; text-underline-offset:4px; }
    .article-time{ color:var(--muted2); font-weight:700; font-size:12.5px; white-space:nowrap; }

    .article-foot{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin-top:14px; justify-content:space-between;
    }

    .wiki-list{ display:grid; gap:12px; margin-top:10px; }
    .wiki-item{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.58);
      border-radius:16px;
      padding:12px;
    }
    .wiki-name{ font-weight:950; letter-spacing:-.02em; }
    .wiki-desc{ margin-top:6px; color:var(--muted); line-height:1.75; font-size:13.5px; font-weight:650; }
    .wiki-tags{ margin-top:14px; display:flex; flex-wrap:wrap; gap:10px; }
    .muted{ color:var(--muted); }
    .article-card .link-more{ margin-top:10px; }

    .help-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .help-card{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      border-radius:var(--radius2);
      padding:18px;
      box-shadow:0 16px 40px rgba(17,24,39,.08);
    }
    .help-card.alt{
      background:
        radial-gradient(520px 240px at 15% 0%, rgba(124,58,237,.12), rgba(124,58,237,0) 55%),
        radial-gradient(420px 220px at 95% 20%, rgba(6,182,212,.10), rgba(6,182,212,0) 55%),
        rgba(255,255,255,.72);
      border-color: rgba(99,102,241,.18);
    }
    .help-title{ font-weight:980; letter-spacing:-.02em; font-size:16px; }
    .help-steps{
      margin:12px 0 14px;
      padding-left:18px;
      color:var(--muted);
      line-height:1.8;
      font-weight:650;
    }
    .help-steps li{ margin:8px 0; }
    .help-actions{ display:grid; gap:10px; margin-top:12px; }
    .help-note{
      margin-top:12px;
      padding-top:12px;
      border-top:1px dashed rgba(17,24,39,.16);
      color:var(--muted);
      font-weight:650;
      line-height:1.7;
      font-size:13.5px;
    }
    .help-note-row{ display:flex; gap:10px; align-items:flex-start; }

    .faq-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:14px;
    }
    .faq-grid .faq-col{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    .faq-grid{
      grid-template-columns: 1fr 1fr;
    }
    .faq-item{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      border-radius:var(--radius);
      padding:12px 14px;
      box-shadow:0 12px 26px rgba(17,24,39,.06);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .faq-item:hover{ transform:translateY(-1px); box-shadow:0 18px 40px rgba(17,24,39,.10); border-color: rgba(99,102,241,.22); }
    .faq-item summary{
      cursor:pointer;
      list-style:none;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      font-weight:950;
      color:rgba(17,24,39,.92);
      font-size:14px;
      user-select:none;
    }
    .faq-item summary::-webkit-details-marker{ display:none; }
    .chev{
      width:22px; height:22px;
      border-radius:10px;
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.55);
      position:relative;
      flex:0 0 auto;
    }
    .chev::before{
      content:"";
      position:absolute; left:50%; top:50%;
      width:10px; height:10px;
      border-right:2px solid rgba(79,70,229,1);
      border-bottom:2px solid rgba(79,70,229,1);
      transform: translate(-50%,-55%) rotate(45deg);
      transition: transform .2s ease;
    }
    details[open] .chev::before{
      transform: translate(-50%,-45%) rotate(-135deg);
    }
    .faq-body{
      margin-top:10px;
      color:var(--muted);
      line-height:1.85;
      font-weight:650;
      font-size:13.5px;
      animation: faqIn .18s ease both;
    }
    @keyframes faqIn{
      from{ opacity:0; transform:translateY(-3px); }
      to{ opacity:1; transform:translateY(0); }
    }

    .contact-grid{
      display:grid;
      grid-template-columns: 1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .contact-card{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      border-radius:var(--radius2);
      padding:18px;
      box-shadow:0 16px 40px rgba(17,24,39,.08);
    }
    .contact-title{ font-weight:980; letter-spacing:-.02em; font-size:16px; }
    .contact-items{ margin-top:14px; display:grid; gap:12px; }
    .contact-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.60);
    }
    .ci-left{
      width:42px; height:42px;
      border-radius:16px;
      display:grid; place-items:center;
      background: linear-gradient(135deg, rgba(124,58,237,.14), rgba(6,182,212,.10));
      border:1px solid rgba(99,102,241,.18);
      color:rgba(17,24,39,.9);
      flex:0 0 auto;
    }
    .ci-left svg{ width:20px; height:20px; }
    .ci-right{ flex:1; }
    .ci-title{ color:var(--muted2); font-weight:750; font-size:12.5px; }
    .ci-value{ display:inline-block; margin-top:6px; color:rgba(17,24,39,.92); font-weight:950; text-decoration:none; }
    .ci-value:hover{ text-decoration:underline; text-underline-offset:4px; color:rgba(79,70,229,1); }

    .contact-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }

    .contact-side{ display:grid; gap:14px; }
    .qr-card{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      border-radius:var(--radius2);
      padding:18px;
      box-shadow:0 16px 40px rgba(17,24,39,.08);
    }
    .qr-title{ font-weight:980; letter-spacing:-.02em; font-size:16px; }
    .qr-desc{ margin-top:8px; color:var(--muted); line-height:1.75; font-weight:650; }
    .qr-wrap{ margin-top:14px; display:grid; place-items:center; }
    .qr-img{
      width:180px; max-width:100%;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      box-shadow:0 18px 44px rgba(17,24,39,.12);
      background:#fff;
      padding:8px;
    }
    .qr-foot{ margin-top:14px; }

    .small-card{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      border-radius:var(--radius2);
      padding:18px;
      box-shadow:0 16px 40px rgba(17,24,39,.06);
    }
    .small-card.alt{
      background:
        radial-gradient(420px 220px at 15% 0%, rgba(6,182,212,.10), rgba(6,182,212,0) 55%),
        radial-gradient(420px 220px at 95% 20%, rgba(124,58,237,.12), rgba(124,58,237,0) 55%),
        rgba(255,255,255,.72);
      border-color: rgba(99,102,241,.16);
    }
    .small-card-title{ font-weight:980; letter-spacing:-.02em; font-size:16px; }
    .small-card-desc{ color:var(--muted); margin-top:8px; line-height:1.75; font-weight:650; }
    .small-links{ display:flex; gap:12px; flex-wrap:wrap; margin-top:12px; }
    .small-links a{
      text-decoration:none;
      padding:9px 12px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.60);
      font-weight:900;
      color:rgba(17,24,39,.92);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .small-links a:hover{ transform:translateY(-1px); box-shadow:0 18px 40px rgba(17,24,39,.10); border-color: rgba(99,102,241,.22); }

    .partner-strip{
      margin-top:14px;
      border:1px solid rgba(17,24,39,.10);
      background:
        radial-gradient(720px 280px at 20% 0%, rgba(124,58,237,.14), rgba(124,58,237,0) 55%),
        radial-gradient(640px 260px at 90% 30%, rgba(6,182,212,.12), rgba(6,182,212,0) 55%),
        rgba(255,255,255,.72);
      border-radius:var(--radius2);
      padding:18px;
      display:flex; justify-content:space-between; align-items:center; gap:14px; flex-wrap:wrap;
      box-shadow:0 16px 40px rgba(17,24,39,.08);
    }
    .partner-left{ min-width:280px; }
    .partner-title{ font-size:18px; font-weight:980; letter-spacing:-.02em; margin-top:6px; }
    .partner-desc{ margin-top:8px; color:var(--muted); line-height:1.8; font-weight:650; }
    .partner-pills{ display:flex; flex-wrap:wrap; gap:10px; margin-top:12px; }
    .partner-right{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }

    .section-footer{ padding:34px 0 28px; }
    .footer-top{
      display:grid;
      grid-template-columns: 1.15fr .75fr .6fr;
      gap:14px;
      align-items:start;
      padding:18px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      border-radius:var(--radius2);
      box-shadow:0 16px 40px rgba(17,24,39,.08);
    }
    .footer-brand{ display:flex; gap:12px; align-items:center; }
    .footer-logo{ width:44px; height:auto; border-radius:14px; }
    .footer-name{ font-weight:980; letter-spacing:-.02em; font-size:16px; }
    .footer-sub{ color:var(--muted); margin-top:6px; line-height:1.7; font-size:13.5px; font-weight:650; }
    .footer-cards{ display:grid; gap:12px; margin-top:14px; }
    .footer-mini{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.60);
      border-radius:16px;
      padding:12px;
    }
    .footer-mini.alt{
      background: linear-gradient(135deg, rgba(124,58,237,.10), rgba(6,182,212,.10)), rgba(255,255,255,.55);
      border-color: rgba(99,102,241,.18);
    }
    .fm-title{ font-weight:980; letter-spacing:-.02em; }
    .fm-text{ color:var(--muted); margin-top:6px; line-height:1.75; font-weight:650; font-size:13.5px; }

    .footer-links-title{ font-weight:980; letter-spacing:-.02em; font-size:16px; }
    .footer-links{ display:grid; grid-template-columns: 1fr; gap:10px; margin-top:12px; }
    .footer-links a{
      text-decoration:none;
      padding:9px 12px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.60);
      font-weight:900;
      color:rgba(17,24,39,.92);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .footer-links a:hover{ transform:translateY(-1px); box-shadow:0 18px 40px rgba(17,24,39,.10); border-color: rgba(99,102,241,.22); }

    .footer-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }

    .footer-contact-title{ font-weight:980; letter-spacing:-.02em; font-size:16px; }
    .footer-contact{ margin-top:12px; display:grid; gap:10px; }
    .fc-row{ display:flex; align-items:center; gap:10px; }
    .fc-ic{
      width:34px; height:34px;
      border-radius:14px;
      background: linear-gradient(135deg, rgba(124,58,237,.14), rgba(6,182,212,.10));
      border:1px solid rgba(99,102,241,.18);
      display:grid; place-items:center;
      color:rgba(17,24,39,.9);
      font-weight:950;
      flex:0 0 auto;
    }
    .fc-ic svg{ width:18px; height:18px; }
    .fc-link{ color:rgba(17,24,39,.92); font-weight:950; text-decoration:none; }
    .fc-link:hover{ text-decoration:underline; text-underline-offset:4px; color:rgba(79,70,229,1); }
    .fc-text{ color:var(--muted); font-weight:750; font-size:13.5px; }

    .footer-small-note{
      margin-top:12px;
      display:flex; gap:10px; align-items:flex-start;
      color:var(--muted);
      font-weight:650;
      line-height:1.75;
      font-size:13.5px;
      padding-top:12px;
      border-top:1px dashed rgba(17,24,39,.16);
    }
    .dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, #7c3aed, #06b6d4);
      box-shadow:0 0 0 6px rgba(99,102,241,.12);
      margin-top:6px;
      flex:0 0 auto;
    }

    .footer-bottom{
      display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap;
      padding:14px 2px 0;
      color:var(--muted2);
      font-weight:700;
    }
    .footer-bottom-right{ display:flex; gap:14px; align-items:center; }
    .ai-page-home-link{
      text-decoration:none;
      color:rgba(79,70,229,1);
      font-weight:950;
      background: rgba(99,102,241,.10);
      border:1px solid rgba(99,102,241,.18);
      padding:8px 10px;
      border-radius:14px;
    }
    .ai-page-home-link:hover{ text-decoration:underline; text-underline-offset:4px; }
    .to-top-link{
      text-decoration:none;
      color:rgba(17,24,39,.92);
      font-weight:950;
      padding:8px 10px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.60);
    }
    .to-top-link:hover{ box-shadow:0 18px 40px rgba(17,24,39,.10); transform:translateY(-1px); }

    .to-top{
      position:fixed;
      right:14px;
      bottom:18px;
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.78);
      box-shadow:0 18px 44px rgba(17,24,39,.14);
      cursor:pointer;
      display:grid; place-items:center;
      transition: transform .15s ease, opacity .2s ease, background .15s ease;
      color:rgba(17,24,39,.92);
      z-index:60;
      opacity:0;
      transform: translateY(8px);
      pointer-events:none;
    }
    .to-top.show{
      opacity:1;
      pointer-events:auto;
      transform: translateY(0);
    }
    .to-top:hover{ transform:translateY(-2px); background:rgba(255,255,255,.92); }

    .float-customer{
      position:fixed;
      left:14px;
      bottom:18px;
      z-index:60;
      display:flex;
      gap:10px;
      align-items:center;
    }
    .float-btn{
      display:flex; align-items:center; gap:10px;
      text-decoration:none;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(17,24,39,.12);
      border-radius:18px;
      padding:10px 12px;
      box-shadow:0 18px 44px rgba(17,24,39,.14);
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
      color:rgba(17,24,39,.92);
      font-weight:950;
    }
    .float-btn:hover{ transform:translateY(-2px); background:rgba(255,255,255,.92); }
    .float-ic{
      width:34px; height:34px;
      border-radius:14px;
      display:grid; place-items:center;
      border:1px solid rgba(99,102,241,.18);
      background: linear-gradient(135deg, rgba(124,58,237,.14), rgba(6,182,212,.10));
      color:rgba(17,24,39,.9);
    }
    .float-ic svg{ width:18px; height:18px; }
    .float-text{ font-size:13px; }
    .float-link{
      display:none;
    }

    [data-animate="fade-up"]{
      opacity:0;
      transform: translateY(12px);
      transition: opacity .55s ease, transform .55s ease;
    }
    .in-view{
      opacity:1 !important;
      transform: translateY(0) !important;
    }

    .mobile-panel{
      display:none;
    }

    @media (max-width: 1020px){
      .hero-grid{ grid-template-columns: 1fr; }
      .nav-desktop{ display:none; }
      .mobile-toggle{ display:grid; }
      .nav-actions{ min-width:auto; }
      .brand{ min-width:auto; }
      .about-grid{ grid-template-columns: 1fr; }
      .services-grid{ grid-template-columns: 1fr 1fr; }
      .solution-grid{ grid-template-columns: 1fr 1fr; }
      .case-grid{ grid-template-columns: 1fr 1fr; }
      .compare-grid{ grid-template-columns: 1fr; }
      .compare-summary{ position:relative; top:auto; }
      .token-grid{ grid-template-columns: 1fr; }
      .training-grid{ grid-template-columns: 1fr; }
      .form-grid{ grid-template-columns: 1fr; }
      .contact-grid{ grid-template-columns: 1fr; }
      .footer-top{ grid-template-columns: 1fr; }
      .timeline{ grid-template-columns: 1fr; }
      .timeline-line{ display:none; }
      table{ min-width:680px; }
      .article-grid{ grid-template-columns: 1fr; }
      .faq-grid{ grid-template-columns: 1fr; }
      .micro-cards{ grid-template-columns: 1fr; }
      .float-link{ display:none; }
      .float-customer{ left:auto; right:14px; flex-direction:column; bottom:74px; }
      .float-btn{ width:fit-content; }
    }

    @media (max-width: 560px){
      h2{ font-size:22px; }
      .hero-title{ font-size:30px; }
      .services-grid{ grid-template-columns: 1fr; }
      .solution-grid{ grid-template-columns: 1fr; }
      .case-grid{ grid-template-columns: 1fr; }
      .field-row{ grid-template-columns: 1fr; }
      .workflow-cta{ align-items:flex-start; }
      .hero-mini{ grid-template-columns: 1fr; }
      .hero-right .floating-chips{ opacity:.9; }
    }

    .mobile-panel{
      display:none;
    }
    @media (max-width: 1020px){
      .mobile-panel{
        display:block;
        position:fixed;
        inset:0;
        z-index:80;
        background: rgba(11,18,32,.30);
        backdrop-filter: blur(8px);
        opacity:0;
        pointer-events:none;
        transition: opacity .2s ease;
      }
      .mobile-panel.open{
        opacity:1;
        pointer-events:auto;
      }
      .mobile-panel-inner{
        position:absolute;
        right:12px; left:12px;
        top:72px;
        background: rgba(255,255,255,.86);
        border:1px solid rgba(17,24,39,.12);
        border-radius:22px;
        box-shadow: 0 26px 70px rgba(17,24,39,.20);
        padding:14px;
      }
      .mobile-head{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
      .mobile-title{ font-weight:980; letter-spacing:-.02em; }
      .mobile-links{ margin-top:12px; display:grid; gap:10px; }
      .mobile-link{
        text-decoration:none;
        padding:12px 12px;
        border-radius:16px;
        border:1px solid rgba(17,24,39,.12);
        background: rgba(255,255,255,.62);
        font-weight:950;
        color:rgba(17,24,39,.92);
      }
      .mobile-link:hover{ border-color: rgba(99,102,241,.22); box-shadow:0 18px 40px rgba(17,24,39,.10); transform:translateY(-1px); }
      .mobile-link-muted{
        background: rgba(99,102,241,.10);
        border-color: rgba(99,102,241,.18);
        color: rgba(79,70,229,1);
      }
      .mobile-actions{ display:grid; gap:10px; margin-top:14px; }
      .mobile-toggle{ }
    }