:root{
      --bg0:#0b1020;
      --bg1:#070a14;
      --card: rgba(255,255,255,.86);
      --card2: rgba(255,255,255,.72);
      --text:#0f172a;
      --muted:#4b5563;
      --line: rgba(15,23,42,.10);
      --line2: rgba(15,23,42,.16);
      --brand:#6d28d9;
      --brand2:#22c55e;
      --brand3:#06b6d4;
      --brand4:#f59e0b;
      --primary:#4f46e5;
      --primary2:#22c55e;
      --shadow: 0 16px 40px rgba(15,23,42,.12);
      --shadow2: 0 10px 28px rgba(15,23,42,.10);
      --radius: 18px;
      --radius2: 14px;
      --max: 1160px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1000px 600px at 18% -10%, rgba(79,70,229,.18), transparent 55%),
        radial-gradient(900px 520px at 88% 8%, rgba(34,197,94,.14), transparent 54%),
        radial-gradient(900px 520px at 50% 110%, rgba(6,182,212,.12), transparent 52%),
        linear-gradient(180deg, #ffffff 0%, #f7fafc 40%, #ffffff 100%);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    .container{max-width:var(--max); margin:0 auto; padding:0 18px}
    .skip{
      position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip:focus{
      left:16px; top:16px; width:auto; height:auto; z-index:9999;
      background:#fff; padding:10px 12px; border:1px solid var(--line2); border-radius:12px;
      box-shadow: var(--shadow2);
    }

    header{
      position:sticky; top:0; z-index:60;
      background: rgba(255,255,255,.62);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(15,23,42,.08);
    }
    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width:220px;
    }
    .ai-page-logo{
      width:44px; height:44px; object-fit:contain;
      filter: drop-shadow(0 10px 18px rgba(79,70,229,.18));
    }
    .brand-title{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand-title strong{font-size:14px; letter-spacing:.3px}
    .brand-title span{font-size:12px; color:var(--muted)}
    nav{
      display:flex; align-items:center; gap:12px; flex-wrap:wrap; justify-content:flex-end;
    }
    .nav-links{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    }
    .nav-links a{
      font-size:13px; color:rgba(15,23,42,.82);
      padding:8px 10px; border-radius:12px;
      border:1px solid transparent;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background: rgba(79,70,229,.06);
      border-color: rgba(79,70,229,.22);
      transform: translateY(-1px);
    }
    .nav-actions{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      padding:11px 14px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background:#fff;
      color:rgba(15,23,42,.92);
      font-weight:650;
      font-size:13.5px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
      cursor:pointer;
      user-select:none;
    }
    .btn:active{transform: translateY(0)}
    .btn:hover{
      transform: translateY(-1px);
      box-shadow: 0 12px 30px rgba(15,23,42,.10);
      border-color: rgba(79,70,229,.25);
    }
    .btn-primary{
      border-color: rgba(79,70,229,.22);
      background: linear-gradient(135deg, rgba(79,70,229,.96), rgba(34,197,94,.92));
      color:#fff;
      box-shadow: 0 18px 44px rgba(79,70,229,.22);
    }
    .btn-primary:hover{
      box-shadow: 0 22px 56px rgba(79,70,229,.26);
      border-color: rgba(255,255,255,.18);
    }
    .btn-ghost{
      background: rgba(255,255,255,.66);
    }
    .icon{
      width:18px; height:18px; display:inline-block;
    }
    .burger{
      display:none;
      width:44px; height:44px; border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background:#fff;
      align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .burger:hover{transform: translateY(-1px); box-shadow: 0 14px 34px rgba(15,23,42,.10)}
    .burger i{
      display:block; width:18px; height:2px; background: rgba(15,23,42,.85);
      position:relative; border-radius:3px;
    }
    .burger i:before,.burger i:after{
      content:""; position:absolute; left:0; width:18px; height:2px; background: rgba(15,23,42,.85); border-radius:3px;
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .burger i:before{top:-6px}
    .burger i:after{top:6px}
    .mobile-panel{
      display:none;
      padding: 0 0 16px 0;
    }
    .mobile-panel .panel{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      border-radius:16px;
      padding:12px;
      box-shadow: 0 18px 48px rgba(15,23,42,.10);
    }
    .mobile-panel .panel .links{
      display:grid; grid-template-columns:1fr 1fr; gap:8px;
    }
    .mobile-panel .panel a{
      font-size:13px;
      padding:10px 10px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
      text-align:center;
    }
    .mobile-panel .panel a:hover{
      border-color: rgba(79,70,229,.26);
      box-shadow: 0 14px 36px rgba(79,70,229,.12);
      transform: translateY(-1px);
    }

    main{padding-bottom: 40px}
    .hero{
      position:relative;
      padding: 34px 0 26px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.12fr .88fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-left{
      border-radius: 26px;
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(1000px 500px at 20% 0%, rgba(79,70,229,.18), transparent 56%),
        radial-gradient(820px 520px at 90% 20%, rgba(34,197,94,.16), transparent 52%),
        radial-gradient(600px 320px at 60% 110%, rgba(6,182,212,.12), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.76));
      box-shadow: var(--shadow);
      padding: 26px;
      overflow:hidden;
      position:relative;
    }
    .glow-orb{
      position:absolute; inset:auto auto 12px -120px;
      width: 320px; height: 320px;
      background: radial-gradient(circle at 30% 30%, rgba(34,197,94,.40), transparent 58%),
                  radial-gradient(circle at 60% 60%, rgba(79,70,229,.36), transparent 60%);
      filter: blur(10px);
      opacity:.9;
      pointer-events:none;
      animation: floaty 6.8s ease-in-out infinite;
    }
    .glow-orb2{
      position:absolute; top:-130px; right:-160px;
      width: 380px; height: 380px;
      background: radial-gradient(circle at 35% 35%, rgba(6,182,212,.30), transparent 58%),
                  radial-gradient(circle at 65% 65%, rgba(245,158,11,.26), transparent 62%);
      filter: blur(12px);
      opacity:.9;
      pointer-events:none;
      animation: floaty2 8.2s ease-in-out infinite;
    }
    @keyframes floaty{
      0%,100%{transform: translateY(0) translateX(0) scale(1)}
      50%{transform: translateY(-14px) translateX(10px) scale(1.02)}
    }
    @keyframes floaty2{
      0%,100%{transform: translateY(0) translateX(0) scale(1)}
      50%{transform: translateY(16px) translateX(-10px) scale(1.03)}
    }

    .hero-pillrow{
      display:flex; flex-wrap:wrap; gap:10px; margin-bottom:14px;
      position:relative; z-index:1;
    }
    .pill{
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.68);
      padding:8px 10px;
      border-radius:999px;
      font-size:12.5px;
      color: rgba(15,23,42,.86);
      display:inline-flex; align-items:center; gap:8px;
    }
    .pill b{
      font-weight:800;
      color: rgba(79,70,229,.95);
    }
    .spark{
      width:10px; height:10px; border-radius:3px;
      background: linear-gradient(135deg, rgba(79,70,229,.95), rgba(34,197,94,.92));
      box-shadow: 0 0 0 6px rgba(79,70,229,.10);
    }

    h1{
      font-size: 34px; margin: 0 0 10px;
      letter-spacing: -0.5px;
      line-height:1.2;
      position:relative; z-index:1;
    }
    .hero-sub{
      color: rgba(15,23,42,.78);
      font-size: 15.5px;
      line-height: 1.65;
      max-width: 62ch;
      margin:0 0 18px;
      position:relative; z-index:1;
    }
    .hero-cta{
      display:flex; align-items:center; gap:12px; flex-wrap:wrap;
      margin: 0 0 16px;
      position:relative; z-index:1;
    }
    .btn-arrow{
      width:18px; height:18px; position:relative;
    }
    .btn-arrow:before{
      content:""; position:absolute; inset:0;
      border-right:2px solid rgba(255,255,255,.95);
      border-bottom:2px solid rgba(255,255,255,.95);
      transform: rotate(-45deg);
      top:3px; left:7px;
      width:9px; height:9px;
    }
    .btn-plain-arrow .btn-arrow:before{
      border-right-color: rgba(79,70,229,.95);
      border-bottom-color: rgba(79,70,229,.95);
    }
    .hero-note{
      display:flex; gap:10px; flex-wrap:wrap;
      position:relative; z-index:1;
      margin-top: 6px;
    }
    .mini-stat{
      flex: 1 1 170px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      border-radius: 16px;
      padding: 12px 12px;
      transition: transform .2s ease, box-shadow .2s ease;
      will-change:transform;
    }
    .mini-stat:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 48px rgba(15,23,42,.10);
    }
    .mini-stat .k{font-size:12px; color:var(--muted)}
    .mini-stat .v{font-size:16px; font-weight:850; letter-spacing:.2px; margin-top:4px}
    .mini-stat .badge{
      display:inline-flex; align-items:center; gap:8px; margin-top:8px;
      font-size:12px; color: rgba(15,23,42,.78);
    }
    .dot{
      width:9px; height:9px; border-radius:50%;
      background: linear-gradient(135deg, rgba(79,70,229,.95), rgba(34,197,94,.92));
      box-shadow: 0 0 0 6px rgba(34,197,94,.10);
    }

    .hero-right{
      border-radius: 26px;
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.70));
      box-shadow: var(--shadow2);
      padding: 18px;
      position:relative;
      overflow:hidden;
    }
    .hero-right:before{
      content:"";
      position:absolute; inset:-1px;
      background:
        radial-gradient(420px 220px at 10% 0%, rgba(79,70,229,.16), transparent 60%),
        radial-gradient(420px 240px at 90% 20%, rgba(34,197,94,.14), transparent 62%);
      pointer-events:none;
      opacity:.9;
    }
    .hero-right .panel{
      position:relative; z-index:1;
      display:flex; flex-direction:column; gap:12px; height:100%;
    }
    .panel-title{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .panel-title h2{
      margin:0;
      font-size: 15px;
      letter-spacing:.2px;
    }
    .sync-chip{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.65);
      color: rgba(15,23,42,.78);
      font-size:12.5px;
      white-space:nowrap;
    }
    .sync{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, rgba(79,70,229,.95), rgba(6,182,212,.92));
      box-shadow: 0 0 0 6px rgba(79,70,229,.10);
      animation: pulse 1.7s ease-in-out infinite;
    }
    @keyframes pulse{
      0%,100%{transform: scale(1); opacity:1}
      50%{transform: scale(1.12); opacity:.85}
    }

    .model-cloud{
      display:flex; flex-wrap:wrap; gap:8px;
      margin-top:2px;
    }
    .chip{
      font-size:12.5px;
      padding:8px 10px;
      border-radius: 999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.68);
      color: rgba(15,23,42,.82);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .chip:hover{
      transform: translateY(-2px);
      border-color: rgba(79,70,229,.26);
      background: rgba(255,255,255,.86);
    }

    .right-card{
      border-radius: 18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      padding: 14px;
    }
    .right-card h3{
      margin: 0 0 8px;
      font-size: 14.5px;
      letter-spacing:.2px;
    }
    .right-card p{
      margin:0;
      color: rgba(15,23,42,.74);
      font-size: 13.5px;
      line-height:1.6;
    }
    .right-card .row{
      display:flex; gap:10px; flex-wrap:wrap; margin-top:10px;
    }
    .tag{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius: 14px;
      border: 1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      font-size: 12.5px;
      color: rgba(15,23,42,.80);
    }
    .tag .mini-dot{
      width:8px; height:8px; border-radius:3px;
      background: linear-gradient(135deg, rgba(245,158,11,.95), rgba(79,70,229,.92));
      box-shadow: 0 0 0 6px rgba(245,158,11,.10);
    }

    .section{
      padding: 26px 0;
    }
    .section-title{
      display:flex; align-items:flex-end; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-bottom: 14px;
    }
    .section-title h2{
      margin:0;
      font-size: 22px;
      letter-spacing: -.2px;
    }
    .section-title p{
      margin:0;
      color: rgba(15,23,42,.72);
      font-size: 13.5px;
      line-height:1.6;
      max-width: 62ch;
    }

    .grid-3{
      display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;
    }
    .grid-4{
      display:grid; grid-template-columns: repeat(4, 1fr); gap:14px;
    }
    .card{
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(15,23,42,.10);
      border-radius: var(--radius);
      padding: 16px;
      box-shadow: 0 10px 24px rgba(15,23,42,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-3px);
      box-shadow: 0 22px 60px rgba(15,23,42,.12);
      border-color: rgba(79,70,229,.22);
    }
    .card .top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
      margin-bottom: 10px;
    }
    .card .ico{
      width:40px; height:40px; border-radius: 14px;
      border: 1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(circle at 30% 30%, rgba(79,70,229,.30), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(34,197,94,.26), transparent 60%),
        rgba(255,255,255,.72);
      display:flex; align-items:center; justify-content:center;
      color: rgba(79,70,229,.95);
      font-weight:900;
      letter-spacing:.2px;
      box-shadow: 0 14px 38px rgba(79,70,229,.12);
    }
    .card h3{
      margin:0;
      font-size: 15.5px;
      letter-spacing:.1px;
    }
    .card p{
      margin: 6px 0 0;
      color: rgba(15,23,42,.74);
      font-size: 13.5px;
      line-height:1.65;
    }
    .card .list{
      margin:10px 0 0; padding:0; list-style:none;
      display:flex; flex-direction:column; gap:8px;
    }
    .li{
      display:flex; align-items:flex-start; gap:10px;
      color: rgba(15,23,42,.78);
      font-size: 13.5px; line-height:1.6;
    }
    .check{
      width:18px; height:18px; border-radius:7px;
      background: rgba(79,70,229,.12);
      border:1px solid rgba(79,70,229,.22);
      display:flex; align-items:center; justify-content:center;
      flex: 0 0 auto;
      margin-top:2px;
    }
    .check svg{width:12px; height:12px}
    .check svg path{fill: rgba(79,70,229,.95)}
    .muted{color: rgba(15,23,42,.72)}

    .split{
      display:grid; grid-template-columns: 1fr 1fr; gap:14px; align-items:start;
    }
    .steps{
      display:grid; grid-template-columns: repeat(4, 1fr); gap:12px;
      align-items:stretch;
    }
    .step{
      border-radius: 18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      padding: 14px 14px;
      position:relative;
      overflow:hidden;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .step:hover{transform: translateY(-3px); box-shadow: 0 24px 64px rgba(15,23,42,.10)}
    .step:before{
      content:"";
      position:absolute; inset:auto -40px -60px auto;
      width: 140px; height: 140px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, rgba(79,70,229,.24), transparent 60%),
                  radial-gradient(circle at 70% 70%, rgba(34,197,94,.16), transparent 60%);
      filter: blur(2px);
      pointer-events:none;
      opacity:.9;
    }
    .step .num{
      display:inline-flex; align-items:center; justify-content:center;
      width:34px; height:34px; border-radius: 14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.74);
      font-weight:900; letter-spacing:.2px;
      color: rgba(79,70,229,.95);
      box-shadow: 0 18px 50px rgba(79,70,229,.14);
      position:relative; z-index:1;
    }
    .step h3{margin:10px 0 6px; font-size:14.5px; position:relative; z-index:1}
    .step p{margin:0; color: rgba(15,23,42,.74); font-size:13.5px; line-height:1.6; position:relative; z-index:1}

    .compare-wrap{
      border-radius: 22px;
      border: 1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(720px 280px at 20% 0%, rgba(79,70,229,.10), transparent 60%),
        radial-gradient(720px 280px at 88% 12%, rgba(34,197,94,.10), transparent 58%),
        rgba(255,255,255,.72);
      box-shadow: var(--shadow2);
      padding: 16px;
      overflow:hidden;
    }
    .compare-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px; flex-wrap:wrap;
      padding: 6px 4px 10px;
    }
    .rating-badge{
      display:flex; align-items:center; gap:12px;
    }
    .stars{
      width:54px; height:54px; border-radius: 20px;
      background: linear-gradient(135deg, rgba(79,70,229,.20), rgba(34,197,94,.18));
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 22px 60px rgba(79,70,229,.14);
      display:flex; align-items:center; justify-content:center;
      position:relative;
    }
    .stars svg{width:26px; height:26px}
    .rating-text strong{display:block; font-size:18px; letter-spacing:.2px}
    .rating-text span{display:block; margin-top:3px; color: rgba(15,23,42,.72); font-size:13.5px}

    table{
      width:100%;
      border-collapse: separate;
      border-spacing: 0;
      overflow:hidden;
      border-radius: 18px;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
    }
    thead th{
      text-align:left;
      padding: 12px 12px;
      font-size: 13.5px;
      color: rgba(15,23,42,.86);
      border-bottom: 1px solid rgba(15,23,42,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.84));
    }
    tbody td{
      padding: 12px 12px;
      border-bottom: 1px solid rgba(15,23,42,.08);
      color: rgba(15,23,42,.78);
      font-size:13.5px;
      vertical-align:top;
    }
    tbody tr:last-child td{border-bottom:none}
    .td-strong{color: rgba(15,23,42,.92); font-weight:750}
    .cell-pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius: 999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      white-space:nowrap;
    }
    .cell-pill .s-dot{
      width:10px; height:10px; border-radius:4px;
      background: linear-gradient(135deg, rgba(79,70,229,.95), rgba(34,197,94,.92));
      box-shadow: 0 0 0 6px rgba(79,70,229,.10);
    }

    .timeline{
      border-radius: 22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 14px 36px rgba(15,23,42,.08);
      padding: 14px;
    }
    .time-grid{
      display:grid; grid-template-columns: 1fr; gap:10px;
      margin-top:8px;
    }
    .titem{
      display:flex; gap:12px; align-items:flex-start;
      padding: 12px;
      border-radius: 18px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.82);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .titem:hover{
      transform: translateY(-2px);
      box-shadow: 0 20px 56px rgba(15,23,42,.10);
      border-color: rgba(79,70,229,.22);
    }
    .ticon{
      width:40px; height:40px; border-radius: 16px;
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(circle at 30% 30%, rgba(79,70,229,.22), transparent 58%),
        radial-gradient(circle at 70% 70%, rgba(34,197,94,.18), transparent 60%),
        rgba(255,255,255,.82);
      display:flex; align-items:center; justify-content:center;
      color: rgba(79,70,229,.95);
      font-weight:900;
      flex: 0 0 auto;
    }
    .titem h3{margin:0; font-size:14.5px}
    .titem p{margin:6px 0 0; color: rgba(15,23,42,.74); font-size:13.5px; line-height:1.6}

    .portfolio{
      display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;
    }
    .work{
      border-radius: 22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      overflow:hidden;
      box-shadow: 0 10px 24px rgba(15,23,42,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .work:hover{transform: translateY(-3px); box-shadow: 0 22px 60px rgba(15,23,42,.12); border-color: rgba(79,70,229,.22)}
    .work .media{
      padding: 14px 14px 0;
    }
    .work .thumb{
      width:100%;
      aspect-ratio: 16/10;
      border-radius: 16px;
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(520px 220px at 20% 20%, rgba(79,70,229,.16), transparent 60%),
        radial-gradient(500px 220px at 80% 0%, rgba(34,197,94,.14), transparent 60%),
        linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,255,255,.62));
      display:flex; align-items:center; justify-content:center;
      position:relative;
      overflow:hidden;
    }
    .thumb:after{
      content:"";
      position:absolute; inset:-40% -40%;
      background:
        conic-gradient(from 180deg, rgba(79,70,229,.18), rgba(34,197,94,.14), rgba(6,182,212,.14), rgba(245,158,11,.14), rgba(79,70,229,.18));
      opacity:.35;
      animation: spin 10s linear infinite;
      transform-origin:center;
    }
    @keyframes spin{
      from{transform: rotate(0deg)}
      to{transform: rotate(360deg)}
    }
    .thumb .label{
      position:relative; z-index:1;
      padding: 9px 12px;
      border-radius: 999px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.78);
      color: rgba(15,23,42,.86);
      font-weight:780;
      font-size:13px;
      display:inline-flex; align-items:center; gap:9px;
      box-shadow: 0 18px 48px rgba(15,23,42,.10);
    }
    .work .content{padding: 12px 14px 16px}
    .work h3{margin:0; font-size:15.5px}
    .work p{margin:6px 0 0; color: rgba(15,23,42,.74); font-size:13.5px; line-height:1.6}
    .work .meta{
      display:flex; gap:10px; flex-wrap:wrap; margin-top:10px;
    }
    .pill2{
      font-size:12.5px;
      padding:7px 10px;
      border-radius: 999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.76);
      color: rgba(15,23,42,.78);
    }

    .articles{
      display:grid; grid-template-columns: 1.2fr .8fr; gap:14px; align-items:start;
    }
    .article-list{
      border-radius: 22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 24px rgba(15,23,42,.06);
      padding: 14px;
    }
    .article-list .headrow{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-bottom: 10px;
    }
    .article-list .headrow h3{margin:0; font-size:15.5px}
    .article-list .headrow span{color: rgba(15,23,42,.70); font-size:13.5px}
    .news{
      display:flex; flex-direction:column; gap:10px;
      margin-top: 8px;
    }
    .news a{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
      padding: 12px;
      border-radius: 18px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.88);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .news a:hover{
      transform: translateY(-2px);
      border-color: rgba(79,70,229,.22);
      box-shadow: 0 22px 60px rgba(15,23,42,.10);
    }
    .news .t{
      display:flex; flex-direction:column; gap:6px;
      min-width:0;
    }
    .news .t b{
      font-size:14.5px;
      line-height:1.35;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width: 48ch;
    }
    .news .t em{
      font-style:normal;
      color: rgba(15,23,42,.70);
      font-size:13px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width: 52ch;
    }
    .news .arrow{
      width:36px; height:36px;
      border-radius: 14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.74);
      display:flex; align-items:center; justify-content:center;
      color: rgba(79,70,229,.95);
      flex: 0 0 auto;
    }
    .side-card{
      border-radius: 22px;
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(520px 260px at 30% 0%, rgba(79,70,229,.14), transparent 58%),
        radial-gradient(520px 260px at 90% 20%, rgba(34,197,94,.12), transparent 62%),
        rgba(255,255,255,.74);
      box-shadow: 0 14px 36px rgba(15,23,42,.08);
      padding: 14px;
      overflow:hidden;
    }
    .side-card h3{margin:0; font-size:15.5px}
    .side-card p{margin:8px 0 0; color: rgba(15,23,42,.74); font-size:13.5px; line-height:1.6}
    .bullets{margin:12px 0 0; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px}
    .bullets li{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px;
      border-radius: 18px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.82);
    }
    .bullets .b-ico{
      width:34px; height:34px; border-radius: 14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.75);
      display:flex; align-items:center; justify-content:center;
      color: rgba(79,70,229,.95);
      font-weight:900;
      flex: 0 0 auto;
    }
    .bullets b{font-size:13.8px}
    .bullets span{display:block; margin-top:4px; color: rgba(15,23,42,.72); font-size:13.2px; line-height:1.55}

    .faq{
      border-radius: 22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 24px rgba(15,23,42,.06);
      padding: 14px;
    }
    .faq-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
    }
    details.faq-item{
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.88);
      border-radius: 18px;
      padding: 10px 12px;
      transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    }
    details.faq-item[open]{
      border-color: rgba(79,70,229,.22);
      box-shadow: 0 22px 60px rgba(15,23,42,.10);
      transform: translateY(-2px);
    }
    details.faq-item summary{
      cursor:pointer;
      list-style:none;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      padding: 6px 0;
    }
    details.faq-item summary::-webkit-details-marker{display:none}
    .qtext{
      font-weight:820; font-size:14.5px; line-height:1.45;
      color: rgba(15,23,42,.92);
      margin-right:10px;
    }
    .chev{
      width:34px; height:34px; border-radius: 14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      display:flex; align-items:center; justify-content:center;
      color: rgba(79,70,229,.95);
      flex: 0 0 auto;
      transition: transform .2s ease;
      margin-top:2px;
    }
    details[open] .chev{transform: rotate(180deg)}
    .ans{
      color: rgba(15,23,42,.74);
      font-size:13.6px;
      line-height:1.7;
      padding: 6px 2px 6px 0;
    }
    .ans ul{margin:10px 0 0; padding-left: 18px}
    .ans li{margin:6px 0}

    form{
      border-radius: 22px;
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(720px 260px at 20% 0%, rgba(79,70,229,.12), transparent 58%),
        radial-gradient(720px 260px at 90% 20%, rgba(34,197,94,.10), transparent 62%),
        rgba(255,255,255,.74);
      box-shadow: var(--shadow2);
      padding: 14px;
    }
    .form-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
      margin-top: 10px;
    }
    .field{display:flex; flex-direction:column; gap:8px}
    .field label{font-size:13.5px; font-weight:760; color: rgba(15,23,42,.88)}
    .field input, .field select, .field textarea{
      width:100%;
      padding: 12px 12px;
      border-radius: 16px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.88);
      font-size: 14px;
      outline:none;
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    .field textarea{min-height: 110px; resize: vertical}
    .field input:focus, .field select:focus, .field textarea:focus{
      border-color: rgba(79,70,229,.35);
      box-shadow: 0 0 0 4px rgba(79,70,229,.14);
    }
    .form-actions{
      display:flex; gap:12px; align-items:center; justify-content:space-between; flex-wrap:wrap;
      margin-top: 12px;
    }
    .form-actions .small{
      color: rgba(15,23,42,.70);
      font-size: 13px;
      line-height:1.6;
      max-width: 52ch;
    }

    .comments{
      display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;
    }
    .review{
      border-radius: 22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 24px rgba(15,23,42,.06);
      padding: 16px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .review:hover{transform: translateY(-3px); box-shadow: 0 22px 60px rgba(15,23,42,.12); border-color: rgba(79,70,229,.22)}
    .review .who{
      display:flex; align-items:center; gap:12px;
    }
    .avatar{
      width:44px; height:44px; border-radius: 18px;
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(circle at 30% 30%, rgba(79,70,229,.18), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(34,197,94,.14), transparent 62%),
        rgba(255,255,255,.82);
      display:flex; align-items:center; justify-content:center;
      font-weight:950; color: rgba(79,70,229,.95);
      flex: 0 0 auto;
    }
    .who b{display:block; font-size:14.5px}
    .who span{display:block; margin-top:3px; color: rgba(15,23,42,.70); font-size:13px}
    .review .stars2{
      margin-top:10px;
      display:flex; align-items:center; gap:6px; color: rgba(15,23,42,.86); font-weight:800;
      font-size: 13px;
    }
    .review .stars2 svg{width:16px; height:16px}
    .review p{
      margin:10px 0 0;
      color: rgba(15,23,42,.74);
      font-size:13.6px;
      line-height:1.75;
    }

    .network{
      display:grid; grid-template-columns: repeat(4, 1fr); gap:12px;
    }
    .net-card{
      border-radius: 18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      padding: 14px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .net-card:hover{transform: translateY(-3px); box-shadow: 0 22px 60px rgba(15,23,42,.10); border-color: rgba(79,70,229,.22)}
    .net-card .k{
      font-size:12px; color: rgba(15,23,42,.68)
    }
    .net-card .v{
      margin-top:6px; font-weight:900; font-size:15.5px; letter-spacing:.2px
    }
    .net-card .s{
      margin-top:8px; color: rgba(15,23,42,.74); font-size:13.2px; line-height:1.6
    }

    .tags-cloud{
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .cloud-item{
      border-radius: 999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      padding: 10px 12px;
      font-size:13px;
      color: rgba(15,23,42,.80);
      transition: transform .2s ease, border-color .2s ease;
      cursor:default;
    }
    .cloud-item:hover{transform: translateY(-2px); border-color: rgba(79,70,229,.22)}

    .anchor-row{
      display:flex; gap:12px; flex-wrap:wrap; margin-top: 10px;
    }
    .anchor-link{
      display:inline-flex; align-items:center; gap:10px;
      padding: 10px 12px;
      border-radius: 16px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.80);
      font-weight:780;
      font-size:13.5px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .anchor-link:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 48px rgba(15,23,42,.10);
      border-color: rgba(79,70,229,.22);
    }

    footer{
      background: linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.75));
      border-top: 1px solid rgba(15,23,42,.10);
    }
    .footer-wrap{
      padding: 22px 0 18px;
    }
    .footer-top{
      display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
      align-items:flex-start;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(15,23,42,.08);
    }
    .foot-brand{
      min-width: 260px;
      display:flex; gap:12px; align-items:flex-start;
    }
    .foot-brand .logo2{
      width:48px; height:48px; object-fit:contain;
      filter: drop-shadow(0 10px 18px rgba(79,70,229,.18));
    }
    .foot-brand b{font-size:14.5px}
    .foot-brand p{margin:6px 0 0; color: rgba(15,23,42,.72); font-size:13.3px; line-height:1.65}
    .footer-cols{
      display:grid; grid-template-columns: repeat(3, minmax(140px, 1fr)); gap:12px; width: 520px;
      max-width:100%;
    }
    .foot-col h3{margin:0; font-size:13.5px; color: rgba(15,23,42,.88); letter-spacing:.2px}
    .foot-col a{
      display:block;
      margin-top:9px;
      font-size:13.2px;
      color: rgba(15,23,42,.72);
      border-radius: 12px;
      padding: 7px 9px;
      border:1px solid transparent;
      background: transparent;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
    }
    .foot-col a:hover{
      background: rgba(79,70,229,.06);
      border-color: rgba(79,70,229,.22);
      transform: translateY(-1px);
      color: rgba(15,23,42,.86);
    }
    .footer-bottom{
      padding-top: 14px;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .copyright{
      color: rgba(15,23,42,.68);
      font-size: 12.8px;
      line-height:1.6;
    }
    .friend{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:flex-end;
    }
    .friend a{
      font-size:12.8px; padding: 8px 10px;
      border-radius: 999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      color: rgba(15,23,42,.74);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
      white-space:nowrap;
    }
    .friend a:hover{
      transform: translateY(-2px);
      border-color: rgba(79,70,229,.22);
      box-shadow: 0 18px 48px rgba(15,23,42,.10);
      color: rgba(15,23,42,.86);
    }

    .float-contact{
      position:fixed; right: 16px; bottom: 16px; z-index:80;
      display:flex; flex-direction:column; gap:10px; align-items:flex-end;
    }
    .float-btn{
      width:48px; height:48px;
      border-radius: 18px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.82);
      box-shadow: 0 18px 50px rgba(15,23,42,.14);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .float-btn:hover{
      transform: translateY(-2px);
      border-color: rgba(79,70,229,.25);
      box-shadow: 0 22px 60px rgba(15,23,42,.18);
    }
    .float-pop{
      position:absolute; right:0; bottom:58px;
      width: 250px;
      border-radius: 22px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.92);
      box-shadow: 0 24px 70px rgba(15,23,42,.20);
      padding: 12px;
      transform: translateY(8px);
      opacity:0;
      pointer-events:none;
      transition: opacity .2s ease, transform .2s ease;
    }
    .float-wrap:hover .float-pop{
      opacity:1;
      transform: translateY(0);
      pointer-events:auto;
    }
    .float-pop .head{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom: 10px;
    }
    .float-pop .head b{font-size:13.8px}
    .qr{
      width:100%;
      border-radius: 18px;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
      overflow:hidden;
      display:flex; align-items:center; justify-content:center;
      padding: 6px;
    }
    .qr img{width:100%; height:auto; display:block}
    .float-pop .tip{
      margin-top:10px;
      color: rgba(15,23,42,.72);
      font-size:12.8px;
      line-height:1.6;
    }

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

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .hero-right{padding:16px}
      .grid-3{grid-template-columns: 1fr 1fr}
      .grid-4{grid-template-columns: 1fr 1fr}
      .steps{grid-template-columns: 1fr 1fr}
      .portfolio{grid-template-columns: 1fr 1fr}
      .articles{grid-template-columns: 1fr}
      .faq-grid{grid-template-columns: 1fr}
      .comments{grid-template-columns: 1fr 1fr}
      .network{grid-template-columns: 1fr 1fr}
      .footer-cols{grid-template-columns: 1fr 1fr; width: auto}
    }
    @media (max-width: 720px){
      .nav-links{display:none}
      .burger{display:flex}
      .mobile-panel{display:block}
      header{position:sticky}
      .hero-left{padding:18px}
      h1{font-size: 28px}
      .mini-stat{flex: 1 1 140px}
      .grid-3{grid-template-columns: 1fr}
      .grid-4{grid-template-columns: 1fr}
      .steps{grid-template-columns: 1fr}
      .portfolio{grid-template-columns: 1fr}
      .comments{grid-template-columns: 1fr}
      .network{grid-template-columns: 1fr}
      .form-grid{grid-template-columns: 1fr}
      .float-contact{right:12px; bottom:12px}
      .float-pop{width: 220px}
    }

    .sr-only{
      position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip: rect(0,0,0,0); border:0;
    }

    .section-divider{
      height:1px; background: rgba(15,23,42,.08);
      margin: 18px 0 6px;
    }