:root{
      --bg0:#fbfbff;
      --bg1:#f3f5ff;
      --card:#ffffff;
      --text:#111827;
      --muted:#5b667a;
      --muted2:#7a879b;
      --line:rgba(16,24,40,.10);
      --shadow: 0 10px 30px rgba(17,24,39,.08);
      --shadow2: 0 8px 18px rgba(17,24,39,.10);
      --radius:18px;
      --radius2:14px;
      --brandA:#6d5bff;
      --brandB:#18c7ff;
      --brandC:#ff4fd8;
      --brandD:#20d7a8;
      --accent:#3b4cff;
      --btn:#111827;
      --btn2:#0b1220;
      --focus: rgba(59,76,255,.25);
      --ok:#16a34a;
      --warn:#f59e0b;
      --danger:#ef4444;
      --container: 1120px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB","Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 600px at 15% -10%, rgba(109,91,255,.20), transparent 55%),
        radial-gradient(900px 480px at 82% 8%, rgba(24,199,255,.18), transparent 55%),
        radial-gradient(900px 520px at 60% 70%, rgba(255,79,216,.12), transparent 60%),
        linear-gradient(180deg, var(--bg0), #ffffff 60%);
      min-height:100vh;
    }
    a{color:inherit}
    .container{
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Top nav */
    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(251,251,255,.72);
      border-bottom: 1px solid rgba(16,24,40,.06);
    }
    .topbar-inner{
      height:72px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 220px;
    }
    .logo{
      width:42px;
      height:42px;
      border-radius: 14px;
      background:
        radial-gradient(14px 14px at 25% 25%, rgba(255,255,255,.8), transparent 60%),
        linear-gradient(135deg, rgba(109,91,255,.95), rgba(24,199,255,.85), rgba(255,79,216,.75));
      box-shadow: 0 10px 22px rgba(109,91,255,.18);
      display:flex;
      align-items:center;
      justify-content:center;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.55);
      flex:0 0 auto;
    }
    .logo img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }
    .brand-title{
      display:flex;
      flex-direction:column;
      line-height:1.15;
    }
    .brand-title strong{
      font-size:14px;
      letter-spacing:.2px;
    }
    .brand-title span{
      font-size:12px;
      color:var(--muted);
    }
    .nav{
      display:flex;
      align-items:center;
      gap:18px;
      flex:1 1 auto;
      justify-content:center;
    }
    .nav a{
      text-decoration:none;
      font-size:13px;
      color:rgba(17,24,39,.78);
      padding:10px 8px;
      border-radius: 12px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .nav a:hover{
      background: rgba(109,91,255,.10);
      color: rgba(17,24,39,.95);
      transform: translateY(-1px);
    }
    .nav a[aria-current="page"]{
      background: rgba(109,91,255,.12);
      color: rgba(17,24,39,.95);
      box-shadow: inset 0 0 0 1px rgba(109,91,255,.18);
    }

    .nav-right{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 220px;
      justify-content:flex-end;
    }
    .pill{
      display:flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius: 999px;
      border:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.70);
      box-shadow: 0 10px 20px rgba(17,24,39,.05);
    }
    .pill b{
      font-size:13px;
      letter-spacing:.2px;
    }
    .pill i{
      width:10px;height:10px;border-radius:999px;
      background: linear-gradient(135deg, var(--brandA), var(--brandB));
      box-shadow: 0 0 0 4px rgba(109,91,255,.12);
      display:inline-block;
    }
    .btn{
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.75);
      color: var(--btn2);
      padding: 10px 14px;
      border-radius: 14px;
      font-weight: 700;
      font-size: 13px;
      text-decoration:none;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      box-shadow: 0 10px 20px rgba(17,24,39,.06);
      display:inline-flex;
      align-items:center;
      gap:10px;
      white-space:nowrap;
    }
    .btn:hover{
      transform: translateY(-1px);
      box-shadow: 0 16px 28px rgba(17,24,39,.10);
      border-color: rgba(109,91,255,.35);
      background: rgba(255,255,255,.92);
    }
    .btn-primary{
      background: linear-gradient(135deg, rgba(109,91,255,1), rgba(24,199,255,.95));
      color: #fff;
      border-color: rgba(255,255,255,.18);
      box-shadow: 0 16px 32px rgba(109,91,255,.22);
    }
    .btn-primary:hover{
      background: linear-gradient(135deg, rgba(109,91,255,1), rgba(255,79,216,.90));
      box-shadow: 0 22px 44px rgba(109,91,255,.26);
      border-color: rgba(255,255,255,.26);
    }
    .btn .icon{
      width:18px;height:18px;display:inline-block;
    }
    .hamburger{
      display:none;
      width:42px;height:42px;
      border-radius: 14px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.75);
      box-shadow: 0 10px 20px rgba(17,24,39,.06);
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition: transform .18s ease;
    }
    .hamburger:hover{transform: translateY(-1px)}
    .hamburger span{
      width:18px;height:2px;background: rgba(17,24,39,.78);
      position:relative; display:block; border-radius: 2px;
    }
    .hamburger span:before,.hamburger span:after{
      content:"";
      position:absolute; left:0; width:18px; height:2px;
      background: rgba(17,24,39,.78);
      border-radius:2px;
    }
    .hamburger span:before{top:-6px}
    .hamburger span:after{top:6px}

    .mobile-panel{
      display:none;
      padding: 10px 0 18px;
    }
    .mobile-panel-inner{
      display:flex;
      flex-direction:column;
      gap:10px;
      padding: 12px;
      background: rgba(255,255,255,.85);
      border:1px solid rgba(16,24,40,.08);
      border-radius: 16px;
      box-shadow: var(--shadow2);
    }
    .mobile-panel a{
      text-decoration:none;
      padding: 12px 12px;
      border-radius: 14px;
      font-weight: 650;
      font-size: 14px;
      color: rgba(17,24,39,.86);
      background: rgba(109,91,255,.06);
      border:1px solid rgba(109,91,255,.12);
    }
    .mobile-panel a:hover{
      background: rgba(109,91,255,.12);
      border-color: rgba(109,91,255,.24);
    }

    /* Hero */
    .hero{
      padding: 30px 0 10px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 22px;
      align-items:stretch;
    }
    .hero-card{
      border-radius: 26px;
      background:
        radial-gradient(1200px 500px at 10% 0%, rgba(109,91,255,.28), transparent 55%),
        radial-gradient(1000px 420px at 90% 10%, rgba(24,199,255,.22), transparent 55%),
        radial-gradient(700px 360px at 62% 92%, rgba(255,79,216,.14), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.56));
      border: 1px solid rgba(16,24,40,.08);
      box-shadow: 0 22px 60px rgba(17,24,39,.08);
      overflow:hidden;
      position:relative;
    }
    .hero-card:before{
      content:"";
      position:absolute;
      inset:-2px;
      background: linear-gradient(120deg, rgba(109,91,255,.50), rgba(24,199,255,.40), rgba(255,79,216,.35), rgba(32,215,168,.30));
      filter: blur(18px);
      opacity:.35;
      pointer-events:none;
    }
    .hero-inner{
      position:relative;
      padding: 26px 24px 22px;
    }
    .badge-row{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
      margin-bottom: 14px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding: 10px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(16,24,40,.08);
      box-shadow: 0 12px 22px rgba(17,24,39,.06);
      font-size: 13px;
      color: rgba(17,24,39,.86);
    }
    .badge .spark{
      width:22px;height:22px;border-radius: 999px;
      background: linear-gradient(135deg, rgba(109,91,255,1), rgba(24,199,255,.95));
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 10px 22px rgba(109,91,255,.18);
      border:1px solid rgba(255,255,255,.40);
      flex:0 0 auto;
    }
    .badge .spark svg{width:14px;height:14px; fill:#fff}
    .hero h1{
      margin: 10px 0 10px;
      font-size: 34px;
      letter-spacing:-.6px;
      line-height: 1.15;
    }
    .hero-sub{
      margin: 0 0 18px;
      color: rgba(17,24,39,.76);
      font-size: 15px;
      line-height: 1.7;
      max-width: 64ch;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      margin: 16px 0 16px;
    }
    .link-quiet{
      text-decoration:none;
      color: rgba(17,24,39,.82);
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding: 10px 10px;
      border-radius: 14px;
      border: 1px dashed rgba(16,24,40,.14);
      background: rgba(255,255,255,.55);
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
      font-weight: 650;
      font-size: 13px;
    }
    .link-quiet:hover{
      transform: translateY(-1px);
      background: rgba(255,255,255,.85);
      border-color: rgba(109,91,255,.30);
    }

    .hero-meta{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top: 12px;
    }
    .mini{
      flex:1 1 160px;
      min-width: 160px;
      padding: 12px 12px;
      border-radius: 16px;
      background: rgba(255,255,255,.60);
      border: 1px solid rgba(16,24,40,.08);
    }
    .mini b{
      display:block;
      font-size: 16px;
      letter-spacing: -.2px;
    }
    .mini span{
      display:block;
      margin-top: 4px;
      color: rgba(17,24,39,.72);
      font-size: 12.5px;
      line-height: 1.4;
    }

    .side-panel{
      border-radius: 26px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(16,24,40,.08);
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .side-panel:after{
      content:"";
      position:absolute;
      left:-120px; top:-120px;
      width:280px; height:280px;
      background: radial-gradient(circle at 40% 40%, rgba(24,199,255,.35), transparent 60%);
      filter: blur(8px);
      opacity:.7;
      pointer-events:none;
    }
    .side-inner{
      position:relative;
      padding: 18px 18px 16px;
      height:100%;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:14px;
    }
    .side-title{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .side-title h2{
      margin:0;
      font-size: 16px;
      letter-spacing:-.2px;
    }
    .side-title p{
      margin: 6px 0 0;
      color: rgba(17,24,39,.70);
      font-size: 13px;
      line-height: 1.6;
      max-width: 52ch;
    }
    .status{
      display:flex;
      flex-direction:column;
      align-items:flex-end;
      gap:6px;
      padding-top: 2px;
    }
    .status .tag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding: 8px 10px;
      border-radius: 999px;
      border:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.65);
      font-weight: 750;
      font-size: 12.5px;
    }
    .dot{
      width:9px;height:9px;border-radius:999px;
      background: linear-gradient(135deg, var(--brandD), var(--brandB));
      box-shadow: 0 0 0 4px rgba(32,215,168,.12);
      display:inline-block;
    }
    .metric-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .metric{
      padding: 14px 14px;
      border-radius: 18px;
      border:1px solid rgba(16,24,40,.08);
      background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.58));
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .metric:hover{
      transform: translateY(-2px);
      border-color: rgba(109,91,255,.26);
      box-shadow: 0 18px 34px rgba(17,24,39,.10);
    }
    .metric b{
      font-size: 20px;
      letter-spacing:-.2px;
      display:block;
    }
    .metric span{
      margin-top: 6px;
      display:block;
      color: rgba(17,24,39,.72);
      font-size: 12.5px;
      line-height: 1.4;
    }

    /* Sections */
    main{padding: 10px 0 30px}
    section{padding: 22px 0}
    .section-title{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin-bottom: 14px;
    }
    .section-title h2{
      margin:0;
      font-size: 22px;
      letter-spacing:-.3px;
    }
    .section-title p{
      margin:0;
      color: rgba(17,24,39,.70);
      font-size: 13.5px;
      line-height: 1.6;
      max-width: 58ch;
    }
    .divider{
      height:1px;
      background: rgba(16,24,40,.07);
      margin: 18px 0 0;
    }

    .grid-2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .card{
      background: rgba(255,255,255,.76);
      border:1px solid rgba(16,24,40,.08);
      border-radius: var(--radius);
      box-shadow: 0 18px 40px rgba(17,24,39,.06);
      padding: 16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .card:hover{
      transform: translateY(-2px);
      border-color: rgba(109,91,255,.24);
      box-shadow: 0 22px 55px rgba(17,24,39,.10);
    }
    .card h3{
      margin: 10px 0 6px;
      font-size: 15px;
      letter-spacing:-.2px;
    }
    .card p{
      margin: 0;
      color: rgba(17,24,39,.72);
      font-size: 13.5px;
      line-height: 1.7;
    }
    .card .top{
      display:flex; align-items:center; gap:12px;
    }
    .iconbox{
      width:42px;height:42px;border-radius: 16px;
      border:1px solid rgba(16,24,40,.08);
      background:
        radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.85), transparent 60%),
        linear-gradient(135deg, rgba(109,91,255,.95), rgba(24,199,255,.82));
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow: 0 14px 30px rgba(109,91,255,.20);
      flex:0 0 auto;
    }
    .iconbox svg{width:20px;height:20px; fill:#fff}
    .list{
      display:flex; flex-direction:column; gap:10px; padding: 0; margin:0; list-style:none;
    }
    .li{
      display:flex; gap:10px; align-items:flex-start;
      padding: 10px 12px;
      border-radius: 14px;
      border:1px solid rgba(16,24,40,.07);
      background: rgba(255,255,255,.62);
    }
    .li .check{
      width:18px;height:18px;border-radius:6px;
      background: rgba(109,91,255,.14);
      border:1px solid rgba(109,91,255,.28);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }
    .li .check svg{width:12px;height:12px; fill: rgba(59,76,255,.95)}
    .li b{font-size:13.5px}
    .li span{display:block; margin-top:4px; color: rgba(17,24,39,.70); font-size: 12.7px; line-height: 1.6}

    .steps{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .step{
      padding: 14px;
      border-radius: 18px;
      border:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.68);
      position:relative;
      overflow:hidden;
    }
    .step:before{
      content:"";
      position:absolute;
      inset:-1px;
      background: linear-gradient(135deg, rgba(109,91,255,.18), rgba(24,199,255,.10), rgba(255,79,216,.08));
      opacity:.7;
      pointer-events:none;
    }
    .step > *{position:relative}
    .step .num{
      width:34px;height:34px;border-radius: 14px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(16,24,40,.08);
      display:flex; align-items:center; justify-content:center;
      font-weight: 900;
      letter-spacing:.2px;
      box-shadow: 0 14px 30px rgba(17,24,39,.06);
    }
    .step h3{margin:10px 0 6px; font-size: 14.5px; letter-spacing:-.2px}
    .step p{margin:0; color: rgba(17,24,39,.72); font-size: 13px; line-height: 1.65}

    /* Comparison table */
    .compare-wrap{
      padding: 16px;
      border-radius: 22px;
      border:1px solid rgba(16,24,40,.08);
      background:
        radial-gradient(900px 320px at 30% -20%, rgba(109,91,255,.18), transparent 60%),
        radial-gradient(700px 260px at 92% 20%, rgba(24,199,255,.14), transparent 62%),
        rgba(255,255,255,.70);
      box-shadow: var(--shadow);
    }
    .compare-top{
      display:flex;
      gap:14px;
      align-items:flex-start;
      justify-content:space-between;
      flex-wrap:wrap;
      margin-bottom: 12px;
    }
    .rating{
      display:flex;
      gap:12px;
      align-items:center;
      padding: 10px 12px;
      border-radius: 18px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(16,24,40,.08);
    }
    .stars{
      display:flex;
      gap:4px;
    }
    .star svg{width:18px;height:18px; fill: rgba(245,158,11,.95)}
    .rating .score b{
      font-size: 20px;
      display:block;
      letter-spacing:-.3px;
    }
    .rating .score span{
      color: rgba(17,24,39,.70);
      font-size: 12.5px;
      display:block;
      margin-top:4px;
    }
    .table-scroll{
      overflow:auto;
      border-radius: 16px;
      border:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.76);
    }
    table{
      width:100%;
      border-collapse:collapse;
      min-width: 760px;
    }
    th,td{
      padding: 12px 12px;
      text-align:left;
      border-bottom: 1px solid rgba(16,24,40,.08);
      vertical-align:top;
      font-size: 13.5px;
      color: rgba(17,24,39,.86);
    }
    th{
      background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.72));
      color: rgba(17,24,39,.88);
      font-size: 13px;
      letter-spacing:.2px;
      position:sticky;
      top:0;
      z-index:1;
    }
    tr:last-child td{border-bottom:none}
    .good{
      display:inline-flex; align-items:center; gap:8px;
      font-weight: 800;
      color: rgba(22,163,74,.98);
    }
    .good svg{width:16px;height:16px; fill: rgba(22,163,74,.98)}
    .neutral{
      display:inline-flex; align-items:center; gap:8px;
      font-weight: 800;
      color: rgba(245,158,11,.98);
    }
    .neutral svg{width:16px;height:16px; fill: rgba(245,158,11,.98)}
    .bad{
      display:inline-flex; align-items:center; gap:8px;
      font-weight: 800;
      color: rgba(239,68,68,.98);
    }
    .bad svg{width:16px;height:16px; fill: rgba(239,68,68,.98)}
    .table-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding: 8px 10px;
      border-radius: 999px;
      border:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.65);
      font-weight: 800;
      font-size: 12.5px;
      white-space:nowrap;
    }
    .table-pill strong{font-size: 12.5px}
    .table-pill .glow{
      width:10px;height:10px;border-radius:999px;
      background: linear-gradient(135deg, rgba(109,91,255,1), rgba(24,199,255,.95));
      box-shadow: 0 0 0 4px rgba(109,91,255,.12);
      display:inline-block;
    }

    /* FAQ */
    .faq-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 14px;
      align-items:start;
    }
    .faq-card{
      padding: 16px;
      border-radius: 22px;
      border:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.74);
      box-shadow: var(--shadow);
    }
    details.faq{
      border:1px solid rgba(16,24,40,.08);
      border-radius: 16px;
      background: rgba(255,255,255,.66);
      padding: 10px 12px;
      margin-top: 10px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    details.faq[open]{
      border-color: rgba(109,91,255,.26);
      box-shadow: 0 16px 32px rgba(17,24,39,.10);
      transform: translateY(-1px);
    }
    summary{
      cursor:pointer;
      list-style:none;
      font-weight: 900;
      font-size: 14px;
      letter-spacing:-.15px;
      display:flex;
      align-items:flex-start;
      gap:10px;
      padding: 6px 2px;
    }
    summary::-webkit-details-marker{display:none}
    .sum-icon{
      width:26px;height:26px;border-radius: 12px;
      background: rgba(109,91,255,.12);
      border:1px solid rgba(109,91,255,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .sum-icon svg{width:14px;height:14px; fill: rgba(59,76,255,.95)}
    .faq p{
      margin: 8px 0 2px;
      color: rgba(17,24,39,.72);
      line-height: 1.75;
      font-size: 13.5px;
    }

    /* Testimonials */
    .quote-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    .quote{
      padding: 16px;
      border-radius: 22px;
      border:1px solid rgba(16,24,40,.08);
      background:
        radial-gradient(500px 180px at 18% 0%, rgba(109,91,255,.14), transparent 55%),
        rgba(255,255,255,.74);
      box-shadow: 0 18px 40px rgba(17,24,39,.06);
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .quote .who{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .avatar{
      width:42px;height:42px;border-radius: 16px;
      background: linear-gradient(135deg, rgba(109,91,255,.95), rgba(255,79,216,.72));
      display:flex; align-items:center; justify-content:center;
      color:#fff;
      font-weight: 900;
      letter-spacing:.2px;
      border:1px solid rgba(255,255,255,.45);
      box-shadow: 0 16px 32px rgba(109,91,255,.20);
      flex:0 0 auto;
    }
    .quote .who b{font-size: 13.8px; letter-spacing:-.2px}
    .quote .who span{display:block; margin-top:4px; color: rgba(17,24,39,.68); font-size: 12.5px}
    .quote blockquote{
      margin:0;
      color: rgba(17,24,39,.78);
      font-size: 13.7px;
      line-height: 1.8;
    }
    .quote .meta{
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .chip{
      padding: 8px 10px;
      border-radius: 999px;
      border:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.66);
      color: rgba(17,24,39,.78);
      font-weight: 800;
      font-size: 12.3px;
    }

    /* Cases & articles */
    .case-grid{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 12px;
      align-items:stretch;
    }
    .thumb{
      border-radius: 20px;
      border:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.72);
      overflow:hidden;
      box-shadow: 0 18px 40px rgba(17,24,39,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex; flex-direction:column;
    }
    .thumb:hover{
      transform: translateY(-2px);
      border-color: rgba(109,91,255,.24);
      box-shadow: 0 22px 55px rgba(17,24,39,.10);
    }
    .thumb .imgwrap{
      position:relative;
      background: linear-gradient(135deg, rgba(109,91,255,.18), rgba(24,199,255,.10), rgba(255,79,216,.10));
      padding: 12px;
    }
    .thumb img{
      width:100%;
      height: auto;
      display:block;
      border-radius: 16px;
      border:1px solid rgba(16,24,40,.08);
      background: #fff;
    }
    .thumb .content{
      padding: 14px 14px 16px;
      display:flex; flex-direction:column; gap:8px;
      flex:1 1 auto;
    }
    .thumb h3{
      margin:0;
      font-size: 14.5px;
      letter-spacing:-.2px;
    }
    .thumb p{
      margin:0;
      color: rgba(17,24,39,.72);
      font-size: 13.3px;
      line-height: 1.7;
    }
    .thumb .row{
      display:flex; justify-content:space-between; align-items:center; gap:10px; margin-top:auto;
      padding-top: 8px;
      border-top:1px solid rgba(16,24,40,.08);
    }
    .tagline{
      display:inline-flex; align-items:center; gap:8px;
      font-weight: 900;
      font-size: 12.3px;
      color: rgba(17,24,39,.78);
      white-space:nowrap;
    }
    .tagline .tiny{
      width:10px;height:10px;border-radius:999px;
      background: linear-gradient(135deg, rgba(109,91,255,1), rgba(24,199,255,.95));
      box-shadow: 0 0 0 4px rgba(109,91,255,.12);
      display:inline-block;
    }
    .ghost-link{
      text-decoration:none;
      font-weight: 900;
      font-size: 12.8px;
      color: rgba(59,76,255,.98);
      padding: 8px 10px;
      border-radius: 12px;
      border:1px solid rgba(59,76,255,.22);
      background: rgba(59,76,255,.08);
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
      white-space:nowrap;
    }
    .ghost-link:hover{
      transform: translateY(-1px);
      background: rgba(59,76,255,.12);
      border-color: rgba(59,76,255,.30);
    }

    .article-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .article{
      padding: 16px;
      border-radius: 22px;
      border:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.74);
      box-shadow: var(--shadow);
      display:flex; flex-direction:column; gap:12px;
    }
    .article h3{margin:0; font-size: 16px; letter-spacing:-.2px}
    .article-list{
      margin:0;
      padding:0;
      list-style:none;
      display:flex; flex-direction:column; gap:10px;
    }
    .article-list a{
      text-decoration:none;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      padding: 12px 12px;
      border-radius: 16px;
      border:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.66);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .article-list a:hover{
      transform: translateY(-2px);
      border-color: rgba(109,91,255,.25);
      box-shadow: 0 16px 32px rgba(17,24,39,.10);
    }
    .article-list b{
      font-size: 13.8px; letter-spacing:-.2px;
    }
    .article-list span{
      display:block;
      margin-top:6px;
      color: rgba(17,24,39,.68);
      font-size: 12.7px;
      line-height: 1.5;
      max-width: 48ch;
    }
    .article-list .arrow{
      width:34px;height:34px;border-radius: 14px;
      background: rgba(109,91,255,.10);
      border:1px solid rgba(109,91,255,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .article-list .arrow svg{width:16px;height:16px; fill: rgba(59,76,255,.95)}

    /* Form */
    .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items:stretch;
    }
    .form-card{
      padding: 16px;
      border-radius: 26px;
      border:1px solid rgba(16,24,40,.08);
      background:
        radial-gradient(700px 260px at 20% -10%, rgba(109,91,255,.18), transparent 60%),
        radial-gradient(600px 220px at 92% 10%, rgba(24,199,255,.14), transparent 62%),
        rgba(255,255,255,.74);
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .form-card:before{
      content:"";
      position:absolute;
      right:-120px; top:-120px;
      width:240px; height:240px;
      background: radial-gradient(circle at 40% 40%, rgba(255,79,216,.22), transparent 60%);
      filter: blur(10px);
      opacity:.85;
      pointer-events:none;
    }
    .form-card > *{position:relative}
    form{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .fields{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    label{
      display:flex;
      flex-direction:column;
      gap:6px;
      font-size: 12.8px;
      color: rgba(17,24,39,.78);
      font-weight: 800;
    }
    input, select, textarea{
      width:100%;
      padding: 12px 12px;
      border-radius: 16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.82);
      color: var(--text);
      outline:none;
      transition: box-shadow .18s ease, border-color .18s ease, background .18s ease;
      font-size: 14px;
    }
    textarea{min-height: 108px; resize: vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(59,76,255,.35);
      box-shadow: 0 0 0 4px var(--focus);
      background:#fff;
    }
    .form-actions{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      flex-wrap:wrap;
      margin-top: 6px;
    }
    .form-note{
      color: rgba(17,24,39,.65);
      font-size: 12.8px;
      line-height: 1.5;
      max-width: 52ch;
    }
    .btn-submit{
      border:none;
      background: linear-gradient(135deg, rgba(17,24,39,1), rgba(59,76,255,.92));
      color:#fff;
      padding: 12px 16px;
      border-radius: 16px;
      font-weight: 900;
      font-size: 14px;
      cursor:pointer;
      box-shadow: 0 18px 40px rgba(17,24,39,.18);
      transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
      display:inline-flex; align-items:center; gap:10px;
    }
    .btn-submit:hover{
      transform: translateY(-1px);
      box-shadow: 0 24px 55px rgba(17,24,39,.22);
      filter: saturate(1.05);
    }
    .btn-submit:active{transform: translateY(0px)}
    .form-side{
      padding: 16px;
      border-radius: 26px;
      border:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.74);
      box-shadow: var(--shadow);
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .form-side h3{margin:0; font-size: 16px; letter-spacing:-.2px}
    .form-side p{margin:0; color: rgba(17,24,39,.72); font-size: 13.5px; line-height: 1.75}
    .network{
      display:flex; flex-direction:column; gap:10px;
      padding-top: 4px;
    }
    .net-item{
      display:flex; gap:12px; align-items:flex-start;
      padding: 12px 12px;
      border-radius: 18px;
      border:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.66);
    }
    .net-item .b{
      width:40px;height:40px;border-radius:16px;
      background: linear-gradient(135deg, rgba(109,91,255,.95), rgba(32,215,168,.78));
      border:1px solid rgba(255,255,255,.45);
      display:flex; align-items:center; justify-content:center;
      color:#fff;
      font-weight: 1000;
      box-shadow: 0 18px 36px rgba(109,91,255,.18);
      flex:0 0 auto;
    }
    .net-item b{display:block; font-size: 13.8px; letter-spacing:-.2px}
    .net-item span{display:block; margin-top:4px; color: rgba(17,24,39,.68); font-size: 12.8px; line-height: 1.6}

    /* Token reference */
    .token-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 14px;
      align-items:start;
    }
    .token-cards{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .token{
      padding: 16px;
      border-radius: 22px;
      border:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.74);
      box-shadow: var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .token:after{
      content:"";
      position:absolute;
      inset:-1px;
      background: radial-gradient(350px 120px at 20% 0%, rgba(109,91,255,.18), transparent 55%);
      opacity:.75;
      pointer-events:none;
    }
    .token > *{position:relative}
    .token .k{
      display:flex; justify-content:space-between; align-items:flex-start; gap:10px;
    }
    .token h3{margin:10px 0 6px; font-size: 15.2px; letter-spacing:-.2px}
    .token p{margin:0; color: rgba(17,24,39,.72); font-size: 13.5px; line-height: 1.7}
    .price{
      margin-top: 12px;
      display:flex;
      align-items:baseline;
      gap:8px;
      flex-wrap:wrap;
    }
    .price b{
      font-size: 26px;
      letter-spacing:-.4px;
    }
    .price span{
      color: rgba(17,24,39,.68);
      font-weight: 800;
      font-size: 12.8px;
    }
    .token .hint{
      margin-top: 10px;
      color: rgba(17,24,39,.62);
      font-size: 12.8px;
      line-height: 1.6;
      border-top:1px solid rgba(16,24,40,.08);
      padding-top: 10px;
    }

    /* Timeline */
    .timeline{
      padding: 16px;
      border-radius: 26px;
      border:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.74);
      box-shadow: var(--shadow);
    }
    .time-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 12px;
    }
    .time-item{
      padding: 14px;
      border-radius: 22px;
      border:1px solid rgba(16,24,40,.08);
      background:
        radial-gradient(400px 120px at 10% 0%, rgba(24,199,255,.14), transparent 55%),
        rgba(255,255,255,.70);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .time-item:hover{
      transform: translateY(-2px);
      border-color: rgba(24,199,255,.26);
      box-shadow: 0 22px 55px rgba(17,24,39,.10);
    }
    .time-head{
      display:flex; gap:12px; align-items:flex-start; justify-content:space-between;
    }
    .time-step{
      width:44px;height:44px;border-radius: 18px;
      background: linear-gradient(135deg, rgba(24,199,255,.88), rgba(109,91,255,.88));
      border:1px solid rgba(255,255,255,.45);
      display:flex; align-items:center; justify-content:center;
      color:#fff; font-weight: 1000;
      box-shadow: 0 18px 36px rgba(24,199,255,.16);
      flex:0 0 auto;
    }
    .time-item h3{margin: 8px 0 6px; font-size: 14.8px; letter-spacing:-.2px}
    .time-item p{margin:0; color: rgba(17,24,39,.72); font-size: 13.3px; line-height: 1.7}
    .time-bullets{
      margin: 10px 0 0;
      padding: 0;
      list-style:none;
      display:flex; flex-direction:column; gap:8px;
    }
    .time-bullets li{
      display:flex; gap:10px; align-items:flex-start;
      color: rgba(17,24,39,.72);
      font-size: 13px;
      line-height: 1.6;
    }
    .time-bullets i{
      width:10px;height:10px;border-radius:999px;
      background: linear-gradient(135deg, rgba(109,91,255,1), rgba(255,79,216,.85));
      box-shadow: 0 0 0 4px rgba(109,91,255,.12);
      margin-top: 6px;
      flex:0 0 auto;
    }

    /* Floating */
    .float-customer{
      position:fixed;
      right: 14px;
      bottom: 14px;
      z-index:60;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .float-btn{
      width:54px;height:54px;border-radius: 20px;
      border:1px solid rgba(255,255,255,.22);
      background: linear-gradient(135deg, rgba(17,24,39,1), rgba(59,76,255,.95));
      color:#fff;
      box-shadow: 0 22px 55px rgba(17,24,39,.22);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    }
    .float-btn:hover{
      transform: translateY(-2px);
      filter: saturate(1.05);
      box-shadow: 0 30px 70px rgba(17,24,39,.26);
    }
    .float-btn svg{width:22px;height:22px; fill:#fff}
    .float-pop{
      width: 280px;
      background: rgba(255,255,255,.90);
      border:1px solid rgba(16,24,40,.10);
      border-radius: 22px;
      box-shadow: 0 30px 70px rgba(17,24,39,.18);
      overflow:hidden;
      transform-origin: bottom right;
      animation: popin .22s ease both;
    }
    @keyframes popin{
      from{opacity:0; transform: translateY(10px) scale(.98)}
      to{opacity:1; transform: translateY(0) scale(1)}
    }
    .float-pop .hd{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      padding: 12px 12px;
      background: linear-gradient(135deg, rgba(109,91,255,.12), rgba(24,199,255,.08));
      border-bottom: 1px solid rgba(16,24,40,.08);
    }
    .float-pop .hd b{font-size: 13.8px; letter-spacing:-.2px}
    .close{
      width:34px;height:34px;border-radius: 14px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.75);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition: transform .18s ease;
    }
    .close:hover{transform: translateY(-1px)}
    .close svg{width:16px;height:16px; fill: rgba(17,24,39,.76)}
    .float-pop .bd{
      padding: 12px 12px 14px;
      display:flex;
      gap:12px;
      align-items:center;
    }
    .qrcode{
      width: 96px; height:96px; border-radius: 18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.86);
      padding: 6px;
      flex: 0 0 auto;
      display:flex; align-items:center; justify-content:center;
    }
    .qrcode img{width:100%;height:100%;object-fit:contain;border-radius: 14px; display:block}
    .float-pop p{
      margin:0;
      color: rgba(17,24,39,.72);
      font-size: 13px;
      line-height: 1.6;
      font-weight: 700;
    }
    .float-pop .ctas{
      margin-top: 10px;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .mini-btn{
      text-decoration:none;
      font-weight: 900;
      font-size: 12.8px;
      padding: 9px 10px;
      border-radius: 14px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      color: rgba(17,24,39,.86);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      white-space:nowrap;
    }
    .mini-btn:hover{
      transform: translateY(-1px);
      border-color: rgba(109,91,255,.26);
      background: rgba(255,255,255,.92);
    }

    /* Scroll reveal */
    .reveal{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .55s ease, transform .55s ease;
    }
    .reveal.is-visible{
      opacity:1;
      transform: translateY(0);
    }

    /* Footer */
    footer{
      padding: 18px 0 28px;
    }
    .footer-card{
      border-radius: 26px;
      border:1px solid rgba(16,24,40,.08);
      background:
        radial-gradient(900px 320px at 20% 0%, rgba(109,91,255,.18), transparent 60%),
        radial-gradient(700px 260px at 85% 15%, rgba(24,199,255,.14), transparent 62%),
        rgba(255,255,255,.72);
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .footer-inner{
      padding: 16px;
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 14px;
      align-items:start;
    }
    .foot-left h3{margin:0; font-size: 16px; letter-spacing:-.2px}
    .foot-left p{margin:8px 0 0; color: rgba(17,24,39,.72); font-size: 13.5px; line-height: 1.75}
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top: 12px;
    }
    .footer-links a{
      text-decoration:none;
      padding: 9px 10px;
      border-radius: 14px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.66);
      color: rgba(17,24,39,.84);
      font-weight: 850;
      font-size: 12.8px;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .footer-links a:hover{
      transform: translateY(-1px);
      border-color: rgba(109,91,255,.26);
      background: rgba(255,255,255,.92);
    }
    .foot-right{
      padding: 12px;
      border-radius: 22px;
      border:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.66);
    }
    .foot-right b{display:block; font-size: 13.8px; letter-spacing:-.2px}
    .foot-right .kv{
      margin-top: 10px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .kv-item{
      display:flex; gap:10px; align-items:flex-start;
      color: rgba(17,24,39,.78);
      font-weight: 800;
      font-size: 13px;
    }
    .kv-item svg{width:18px;height:18px; fill: rgba(59,76,255,.95); margin-top:1px}
    .copy{
      margin-top: 12px;
      padding-top: 12px;
      border-top:1px solid rgba(16,24,40,.08);
      color: rgba(17,24,39,.66);
      font-size: 12.5px;
      display:flex;
      justify-content:space-between;
      gap:10px;
      flex-wrap:wrap;
      padding-left: 16px;
      padding-right: 16px;
      padding-bottom: 14px;
    }
    .copy a{
      text-decoration:none;
      color: rgba(59,76,255,.98);
      font-weight: 900;
    }

    /* Anchors */
    .anchor{
      scroll-margin-top: 90px;
    }

    /* Responsive */
    @media (max-width: 980px){
      .nav{display:none}
      .nav-right .pill{display:none}
      .hamburger{display:flex}
      .mobile-panel{display:block}
      .hero-grid{grid-template-columns: 1fr}
      .steps{grid-template-columns: repeat(2, 1fr)}
      .grid-3{grid-template-columns: 1fr}
      .grid-2{grid-template-columns: 1fr}
      .faq-grid{grid-template-columns: 1fr}
      .quote-grid{grid-template-columns: 1fr}
      .case-grid{grid-template-columns: 1fr}
      .article-grid{grid-template-columns: 1fr}
      .form-grid{grid-template-columns: 1fr}
      .token-grid{grid-template-columns: 1fr}
      .token-cards{grid-template-columns: 1fr}
      .footer-inner{grid-template-columns: 1fr}
      .time-grid{grid-template-columns: 1fr}
      .topbar-inner{height:68px}
    }