:root{
      --bg0:#070612;
      --bg1:#0b0a1d;
      --bg2:#120a24;
      --card:rgba(255,255,255,.06);
      --card2:rgba(255,255,255,.08);
      --stroke:rgba(255,255,255,.12);
      --text:#f4f3ff;
      --muted:rgba(244,243,255,.72);
      --muted2:rgba(244,243,255,.55);
      --brand:#ff4fd8;
      --brand2:#9b7bff;
      --brand3:#28d7ff;
      --good:#33d39a;
      --warn:#ffbd4a;
      --shadow: 0 22px 60px rgba(0,0,0,.45);
      --shadow2: 0 14px 36px rgba(0,0,0,.35);
      --radius: 18px;
      --radius2: 14px;
      --container: 1120px;
      --gutter: 18px;
      --focus: 0 0 0 3px rgba(255,79,216,.25), 0 0 0 1px rgba(255,79,216,.35);
    }
    *{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, "Noto Sans", sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 500px at 15% 12%, rgba(255,79,216,.26), transparent 55%),
        radial-gradient(760px 480px at 85% 18%, rgba(155,123,255,.26), transparent 54%),
        radial-gradient(620px 420px at 50% 60%, rgba(40,215,255,.16), transparent 56%),
        linear-gradient(180deg, var(--bg0), var(--bg1) 45%, var(--bg2));
      min-height:100vh;
      overflow-x:hidden;
    }

    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:var(--container);
      padding:0 var(--gutter);
      margin:0 auto;
    }

    /* Top nav */
    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(9,7,20,.55);
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .topbar-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width: 220px;
    }
    .brand img{
      width:34px;
      height:34px;
      object-fit:contain;
      border-radius:10px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.12);
      box-shadow: 0 10px 22px rgba(0,0,0,.25);
    }
    .brand-title{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brand-title strong{
      font-size:14px;
      letter-spacing:.2px;
    }
    .brand-title span{
      font-size:12px;
      color:var(--muted2);
    }
    .nav{
      display:flex;
      align-items:center;
      gap:14px;
      flex:1;
      justify-content:center;
      min-width: 420px;
    }
    .nav a{
      font-size:13px;
      color:rgba(244,243,255,.8);
      padding:8px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: transform .15s ease, border-color .2s ease, background .2s ease;
      white-space:nowrap;
    }
    .nav a:hover{
      background: rgba(255,255,255,.06);
      border-color: rgba(255,255,255,.12);
      transform: translateY(-1px);
    }
    .nav-cta{
      display:flex;
      align-items:center;
      gap:10px;
      min-width: 220px;
      justify-content:flex-end;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      border-radius: 14px;
      padding:10px 14px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      color: var(--text);
      font-weight:650;
      font-size:13px;
      letter-spacing:.2px;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      user-select:none;
    }
    .btn:hover{
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(0,0,0,.35);
      background: rgba(255,255,255,.085);
      border-color: rgba(255,255,255,.22);
    }
    .btn:focus{outline:none; box-shadow: var(--focus)}
    .btn-primary{
      border-color: rgba(255,79,216,.45);
      background: linear-gradient(135deg, rgba(255,79,216,.25), rgba(155,123,255,.18));
      box-shadow: 0 18px 40px rgba(255,79,216,.12);
    }
    .btn-primary .dot{
      width:9px; height:9px; border-radius:50%;
      background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,.2) 30%, transparent 60%), linear-gradient(180deg, var(--brand), var(--brand2));
      box-shadow: 0 0 0 3px rgba(255,79,216,.15);
    }
    .btn-ghost{
      background: transparent;
      border-color: rgba(255,255,255,.12);
      color: rgba(244,243,255,.92);
    }
    .icon{
      width:16px; height:16px; display:inline-block;
    }
    .hamburger{
      display:none;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      color: var(--text);
      padding:10px 12px;
      font-weight:700;
      cursor:pointer;
      transition: transform .15s ease, background .2s ease, border-color .2s ease;
    }
    .hamburger:focus{outline:none; box-shadow: var(--focus)}
    .hamburger:hover{transform: translateY(-1px); background: rgba(255,255,255,.085); border-color: rgba(255,255,255,.22);}
    .mobile-panel{
      display:none;
      padding:0 0 14px 0;
    }
    .mobile-panel .grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      padding-top:12px;
    }
    .mobile-panel a{
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      padding:10px 12px;
      border-radius:14px;
      color: rgba(244,243,255,.88);
      font-size:13px;
      transition: transform .15s ease, background .2s ease, border-color .2s ease;
    }
    .mobile-panel a:hover{transform: translateY(-1px); background: rgba(255,255,255,.075); border-color: rgba(255,255,255,.22);}

    /* Hero */
    .hero{
      padding: 26px 0 14px 0;
      position:relative;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-card{
      border-radius: var(--radius);
      background:
        radial-gradient(900px 340px at 10% 20%, rgba(255,79,216,.18), transparent 60%),
        radial-gradient(650px 300px at 85% 0%, rgba(155,123,255,.20), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.045));
      border: 1px solid rgba(255,255,255,.12);
      box-shadow: var(--shadow2);
      padding: 22px;
      position:relative;
      overflow:hidden;
    }
    .hero-card:before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(420px 160px at 30% 20%, rgba(40,215,255,.18), transparent 55%),
        radial-gradient(260px 120px at 65% 55%, rgba(255,79,216,.16), transparent 60%);
      opacity:.85;
      pointer-events:none;
    }
    .hero-card > *{position:relative}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 12px;
      border-radius: 999px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      color: rgba(244,243,255,.9);
      font-size:12px;
      letter-spacing:.2px;
      margin-bottom:14px;
      width: fit-content;
    }
    .eyebrow .spark{
      width:9px; height:9px; border-radius:50%;
      background: linear-gradient(180deg, var(--brand), var(--brand2));
      box-shadow: 0 0 0 4px rgba(255,79,216,.13);
    }
    h1{
      font-size: clamp(22px, 3.2vw, 36px);
      line-height:1.12;
      margin:0 0 10px 0;
      letter-spacing:.2px;
    }
    .lead{
      color: var(--muted);
      font-size: 14px;
      line-height:1.7;
      margin:0 0 16px 0;
      max-width: 60ch;
    }
    .hero-actions{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      margin-bottom:16px;
    }
    .meta-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius: 14px;
      background: rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.10);
      color: rgba(244,243,255,.88);
      font-size:13px;
      transition: transform .15s ease, background .2s ease, border-color .2s ease;
    }
    .pill:hover{transform: translateY(-1px); background: rgba(255,255,255,.075); border-color: rgba(255,255,255,.18);}
    .pill .k{
      width:30px; height:30px; border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      box-shadow: 0 12px 24px rgba(0,0,0,.25);
      flex:0 0 auto;
    }

    .hero-side{
      border-radius: var(--radius);
      border:1px solid rgba(255,255,255,.12);
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.035));
      box-shadow: var(--shadow2);
      padding: 18px;
      overflow:hidden;
      position:relative;
    }
    .hero-side:before{
      content:"";
      position:absolute;
      width: 520px;
      height: 520px;
      right:-280px;
      top:-340px;
      background: radial-gradient(circle at 30% 30%, rgba(155,123,255,.34), transparent 55%);
      filter: blur(2px);
      opacity:.9;
      pointer-events:none;
    }
    .hero-side > *{position:relative}
    .side-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:10px;
    }
    .side-title strong{
      font-size:14px;
      letter-spacing:.2px;
    }
    .side-title span{
      color: var(--muted2);
      font-size:12px;
    }
    .sparkline{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin: 12px 0 14px 0;
    }
    .stat-card{
      border-radius: 16px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.05);
      padding:14px 14px 12px 14px;
      transition: transform .15s ease, border-color .2s ease, background .2s ease;
    }
    .stat-card:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.07);}
    .stat-top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:8px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 10px;
      border-radius: 999px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      color: rgba(244,243,255,.9);
      font-size:12px;
      white-space:nowrap;
    }
    .badge .b{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(180deg, var(--brand3), var(--brand2));
      box-shadow: 0 0 0 4px rgba(40,215,255,.12);
    }
    .stat-value{
      font-size: 20px;
      font-weight: 800;
      letter-spacing:.2px;
    }
    .stat-sub{
      color: var(--muted2);
      font-size:12px;
      line-height:1.5;
      margin-top:2px;
    }
    .side-list{
      display:flex;
      flex-direction:column;
      gap:10px;
      margin-top:6px;
    }
    .side-item{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:12px;
      border-radius: 16px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
    }
    .side-item .check{
      width:22px; height:22px;
      border-radius:10px;
      background: rgba(51,211,154,.14);
      border:1px solid rgba(51,211,154,.25);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }
    .side-item strong{
      font-size:13px;
      display:block;
      margin-bottom:3px;
    }
    .side-item span{
      color: var(--muted2);
      font-size:12px;
      line-height:1.5;
    }

    /* Section base */
    section{padding: 18px 0}
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:12px;
      margin: 6px 0 14px 0;
    }
    .section-head h2{
      margin:0;
      font-size: 20px;
      letter-spacing:.2px;
    }
    .section-head p{
      margin:0;
      color: var(--muted2);
      font-size:13px;
      line-height:1.6;
      max-width: 58ch;
    }
    .divider{
      height:1px;
      background: rgba(255,255,255,.10);
      margin: 8px 0 0 0;
    }

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

    /* Cards */
    .grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;}
    .grid-2{display:grid; grid-template-columns: repeat(2, 1fr); gap:14px;}
    .card{
      border-radius: var(--radius2);
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      box-shadow: 0 16px 40px rgba(0,0,0,.22);
      padding: 16px;
      position:relative;
      overflow:hidden;
    }
    .card:after{
      content:"";
      position:absolute;
      inset:-1px;
      background: radial-gradient(600px 180px at 0% 0%, rgba(255,79,216,.14), transparent 60%);
      opacity:.0;
      transition: opacity .2s ease;
      pointer-events:none;
    }
    .card:hover:after{opacity:1;}
    .card h3{
      margin:0 0 8px 0;
      font-size: 15px;
      letter-spacing:.2px;
    }
    .card p{
      margin:0;
      color: var(--muted2);
      font-size:13px;
      line-height:1.7;
    }
    .card .row{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.12);
      color: rgba(244,243,255,.9);
      font-size:12px;
      white-space:nowrap;
    }
    .tag .t{
      width:9px; height:9px; border-radius:50%;
      background: linear-gradient(180deg, var(--brand), var(--brand2));
      box-shadow: 0 0 0 4px rgba(255,79,216,.12);
    }
    .mini{
      color: var(--muted2);
      font-size:12px;
      line-height:1.6;
      margin-top:10px;
      display:flex;
      gap:10px;
      align-items:flex-start;
    }
    .mini .dot2{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(180deg, var(--brand3), var(--brand));
      box-shadow: 0 0 0 4px rgba(40,215,255,.12);
      margin-top:4px;
      flex:0 0 auto;
    }

    /* Steps */
    .steps{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .step{
      padding:14px 14px 12px 14px;
      border-radius: 16px;
      border:1px solid rgba(255,255,255,.12);
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.035));
      position:relative;
      overflow:hidden;
      transition: transform .15s ease, border-color .2s ease, background .2s ease;
    }
    .step:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.20); background: rgba(255,255,255,.07);}
    .step .num{
      width:38px; height:38px; border-radius: 14px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      letter-spacing:.2px;
      box-shadow: 0 16px 32px rgba(0,0,0,.25);
      margin-bottom:10px;
    }
    .step h3{margin:0 0 6px 0; font-size:14px}
    .step p{margin:0; color:var(--muted2); font-size:12.8px; line-height:1.7}

    /* Compare table */
    .compare-wrap{
      border-radius: var(--radius);
      border:1px solid rgba(255,255,255,.12);
      background:
        radial-gradient(600px 240px at 20% 0%, rgba(155,123,255,.18), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      box-shadow: var(--shadow2);
      overflow:hidden;
    }
    .compare-top{
      padding: 16px 16px 0 16px;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }
    .rating{
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .stars{
      display:flex;
      gap:6px;
      margin-top:4px;
    }
    .star{
      width:18px; height:18px;
      filter: drop-shadow(0 10px 18px rgba(255,79,216,.18));
    }
    .rating .score{
      display:flex; flex-direction:column;
      line-height:1.2;
    }
    .rating .score strong{
      font-size: 24px;
      letter-spacing:.2px;
    }
    .rating .score span{color:var(--muted2); font-size:12.5px}
    .compare-note{
      padding: 14px 16px 12px 16px;
      color: var(--muted2);
      font-size:13px;
      line-height:1.7;
      max-width: 62ch;
    }
    .compare-table{
      width:100%;
      border-collapse: collapse;
      margin:0;
    }
    .compare-table th,
    .compare-table td{
      border-top: 1px solid rgba(255,255,255,.10);
      border-right: 1px solid rgba(255,255,255,.10);
      padding: 12px 12px;
      text-align:left;
      vertical-align: top;
      font-size:13px;
    }
    .compare-table th:last-child,
    .compare-table td:last-child{border-right:none;}
    .compare-table tr:last-child td{border-bottom:none}
    .compare-table th{
      background: rgba(255,255,255,.04);
      color: rgba(244,243,255,.92);
      font-weight:800;
      letter-spacing:.2px;
    }
    .good{color: rgba(51,211,154,.95); font-weight:750}
    .warn{color: rgba(255,189,74,.95); font-weight:750}
    .muted{color: var(--muted2)}
    .checkline{
      display:flex;
      gap:10px;
      align-items:flex-start;
    }
    .checkline i{
      width:18px; height:18px;
      border-radius:8px;
      border:1px solid rgba(51,211,154,.28);
      background: rgba(51,211,154,.12);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .crossline i{
      width:18px; height:18px;
      border-radius:8px;
      border:1px solid rgba(255,189,74,.25);
      background: rgba(255,189,74,.10);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }

    /* Portfolio / cases */
    .cases-grid{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:14px;
    }
    .case-card{
      padding:14px;
      border-radius: 16px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      transition: transform .15s ease, border-color .2s ease, background .2s ease;
      position:relative;
      overflow:hidden;
      min-height: 210px;
    }
    .case-card:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.20); background: rgba(255,255,255,.07);}
    .case-top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .case-ico{
      width:42px; height:42px;
      border-radius: 16px;
      border:1px solid rgba(255,255,255,.12);
      background: linear-gradient(180deg, rgba(255,79,216,.18), rgba(155,123,255,.08));
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 18px 44px rgba(255,79,216,.08);
    }
    .case-card h3{margin:0 0 6px 0; font-size:14.5px}
    .case-card p{margin:0; color: var(--muted2); font-size:13px; line-height:1.7}
    .case-list{
      margin-top:10px;
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .chip{
      font-size:12px;
      color: rgba(244,243,255,.88);
      padding:8px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.10);
    }

    /* Articles */
    .articles{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .article-card{
      padding:16px;
      border-radius: 16px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      transition: transform .15s ease, border-color .2s ease, background .2s ease;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .article-card:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.20); background: rgba(255,255,255,.07);}
    .article-head{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .article-head strong{font-size:14.5px}
    .article-head span{color:var(--muted2); font-size:12px; white-space:nowrap}
    .article-card p{margin:0; color:var(--muted2); font-size:13px; line-height:1.7}
    .article-link{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-top:auto;
      border-top: 1px solid rgba(255,255,255,.10);
      padding-top:12px;
      color: rgba(244,243,255,.92);
      font-weight:700;
      font-size:13px;
    }
    .arrow{
      width:30px; height:30px;
      border-radius: 12px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      display:flex; align-items:center; justify-content:center;
      transition: transform .15s ease, background .2s ease, border-color .2s ease;
    }
    .article-card:hover .arrow{transform: translateX(2px); background: rgba(255,255,255,.075); border-color: rgba(255,255,255,.20);}

    /* Form */
    .form-wrap{
      border-radius: var(--radius);
      border:1px solid rgba(255,255,255,.12);
      background:
        radial-gradient(640px 240px at 15% 0%, rgba(255,79,216,.16), transparent 60%),
        radial-gradient(560px 240px at 90% 15%, rgba(155,123,255,.16), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      box-shadow: var(--shadow2);
      padding: 16px;
    }
    form{margin:0}
    .form-grid{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap:12px;
    }
    label{
      display:block;
      font-size:12.5px;
      color: rgba(244,243,255,.86);
      margin: 0 0 8px 0;
    }
    input, select, textarea{
      width:100%;
      border-radius: 14px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(0,0,0,.18);
      color: rgba(244,243,255,.95);
      padding: 12px 12px;
      font-size: 14px;
      outline:none;
      transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
    }
    textarea{min-height: 112px; resize: vertical}
    input::placeholder, textarea::placeholder{color: rgba(244,243,255,.40)}
    input:focus, select:focus, textarea:focus{
      box-shadow: var(--focus);
      border-color: rgba(255,79,216,.35);
      background: rgba(0,0,0,.24);
    }
    .form-actions{
      grid-column: 1 / -1;
      display:flex;
      gap:12px;
      align-items:center;
      justify-content:space-between;
      flex-wrap:wrap;
      margin-top: 4px;
    }
    .form-hint{
      color: var(--muted2);
      font-size:12.5px;
      line-height:1.6;
      max-width: 70ch;
    }

    /* Testimonials */
    .test-grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;}
    .quote{
      border-radius:16px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      padding:16px;
      transition: transform .15s ease, border-color .2s ease, background .2s ease;
      position:relative;
      overflow:hidden;
      min-height: 210px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .quote:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.20); background: rgba(255,255,255,.07);}
    .quote:before{
      content:"“";
      position:absolute;
      top:-10px;
      left:12px;
      font-size:70px;
      color: rgba(255,79,216,.14);
      font-weight:900;
      pointer-events:none;
    }
    .quote > *{position:relative}
    .quote .who{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
    }
    .avatar{
      width:40px; height:40px;
      border-radius: 16px;
      border:1px solid rgba(255,255,255,.12);
      background: linear-gradient(180deg, rgba(255,79,216,.15), rgba(155,123,255,.08));
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      box-shadow: 0 18px 46px rgba(255,79,216,.08);
    }
    .who strong{font-size:13.5px}
    .who span{color:var(--muted2); font-size:12px; white-space:nowrap}
    .quote p{margin:0; color:var(--muted2); font-size:13px; line-height:1.75}
    .quote .meta{
      margin-top:auto;
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }

    /* Pricing reference / token */
    .token-grid{display:grid; grid-template-columns: 1fr 1fr; gap:14px;}
    .token-card{
      border-radius: var(--radius);
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      padding:16px;
      box-shadow: 0 16px 40px rgba(0,0,0,.18);
      overflow:hidden;
      position:relative;
    }
    .token-card:before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(480px 220px at 30% 0%, rgba(40,215,255,.16), transparent 60%),
        radial-gradient(380px 200px at 90% 20%, rgba(255,79,216,.14), transparent 58%);
      opacity:.9;
      pointer-events:none;
    }
    .token-card > *{position:relative}
    .token-card h3{margin:0 0 10px 0; font-size:15px}
    .token-table{
      width:100%;
      border-collapse: collapse;
      margin-top: 8px;
      overflow:hidden;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(0,0,0,.14);
    }
    .token-table th, .token-table td{
      padding: 12px 12px;
      border-top:1px solid rgba(255,255,255,.08);
      border-right:1px solid rgba(255,255,255,.08);
      font-size:13px;
      vertical-align:top;
    }
    .token-table th:last-child, .token-table td:last-child{border-right:none}
    .token-table tr:first-child th{border-top:none}
    .token-table th{
      color: rgba(244,243,255,.92);
      background: rgba(255,255,255,.04);
      font-weight:900;
      letter-spacing:.2px;
      text-align:left;
    }
    .token-table td{color: rgba(244,243,255,.86)}
    .hint-line{
      display:flex; gap:10px; align-items:flex-start;
      margin-top: 12px;
      color: var(--muted2);
      font-size:12.8px;
      line-height:1.7;
    }
    .hint-line b{color: rgba(244,243,255,.92)}
    .hint-line i{
      width:18px; height:18px;
      border-radius: 8px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      display:inline-flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }

    /* FAQ */
    .faq{
      border-radius: var(--radius);
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      overflow:hidden;
      box-shadow: var(--shadow2);
    }
    .faq-item{
      border-top: 1px solid rgba(255,255,255,.10);
    }
    .faq-item:first-child{border-top:none}
    details{
      padding:0 14px;
    }
    summary{
      list-style:none;
      cursor:pointer;
      padding: 14px 0;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      user-select:none;
    }
    summary::-webkit-details-marker{display:none}
    .q{
      font-weight:900;
      font-size:14px;
      letter-spacing:.2px;
    }
    .chev{
      width:34px; height:34px;
      border-radius: 14px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
      margin-top:-2px;
    }
    details[open] summary .chev{
      transform: rotate(180deg);
      border-color: rgba(255,79,216,.32);
      background: rgba(255,79,216,.10);
    }
    .a{
      color: var(--muted2);
      font-size:13px;
      line-height:1.75;
      padding: 0 0 14px 0;
    }

    /* Case small + links */
    .list-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .link-card{
      border-radius: 16px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      padding:16px;
      transition: transform .15s ease, border-color .2s ease, background .2s ease;
      min-height: 150px;
    }
    .link-card:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.20); background: rgba(255,255,255,.07);}
    .link-card h3{margin:0 0 8px 0; font-size:14.5px}
    .link-card p{margin:0; color:var(--muted2); font-size:13px; line-height:1.7}
    .link-card .links{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top: 12px;
    }
    .slink{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding: 10px 12px;
      border-radius: 14px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      font-size:13px;
      color: rgba(244,243,255,.92);
      transition: transform .15s ease, background .2s ease, border-color .2s ease;
    }
    .slink:hover{transform: translateY(-1px); background: rgba(255,255,255,.075); border-color: rgba(255,255,255,.20);}

    /* Floating customer */
    .float-customer{
      position: fixed;
      right: 14px;
      bottom: 18px;
      z-index: 60;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .float-btn{
      border-radius: 16px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(9,7,20,.55);
      backdrop-filter: blur(10px);
      padding: 10px 12px;
      display:flex;
      align-items:center;
      gap:10px;
      box-shadow: 0 20px 50px rgba(0,0,0,.38);
      cursor:pointer;
      user-select:none;
      transition: transform .15s ease, border-color .2s ease, background .2s ease;
      color: rgba(244,243,255,.96);
      max-width: 200px;
    }
    .float-btn:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.22); background: rgba(12,10,26,.65);}
    .float-btn:focus{outline:none; box-shadow: var(--focus)}
    .float-btn .ico{
      width:34px; height:34px;
      border-radius: 14px;
      border:1px solid rgba(255,79,216,.35);
      background: linear-gradient(135deg, rgba(255,79,216,.20), rgba(155,123,255,.10));
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 18px 44px rgba(255,79,216,.12);
      flex:0 0 auto;
    }
    .float-panel{
      display:none;
      width: 220px;
      border-radius: 18px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(9,7,20,.62);
      backdrop-filter: blur(10px);
      box-shadow: 0 25px 70px rgba(0,0,0,.45);
      padding: 12px;
      overflow:hidden;
    }
    .float-panel .head{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .float-panel .head strong{font-size:13px}
    .close-x{
      width:32px; height:32px;
      border-radius: 14px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      color: rgba(244,243,255,.92);
      cursor:pointer;
      transition: transform .15s ease, border-color .2s ease, background .2s ease;
      display:flex; align-items:center; justify-content:center;
    }
    .close-x:hover{transform: translateY(-1px); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.075);}
    .qrbox{
      border-radius: 16px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      padding: 10px;
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:8px;
    }
    .qrbox img{
      width: 180px;
      height: 180px;
      object-fit: contain;
      border-radius: 14px;
      background: rgba(255,255,255,.06);
    }
    .qrbox span{color:var(--muted2); font-size:12.5px; line-height:1.6; text-align:center}
    .to-top{
      position: fixed;
      right: 14px;
      bottom: 88px;
      z-index: 60;
      display:none;
    }
    .to-top button{
      border-radius: 16px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(9,7,20,.55);
      backdrop-filter: blur(10px);
      color: rgba(244,243,255,.96);
      padding: 10px 12px;
      cursor:pointer;
      box-shadow: 0 20px 50px rgba(0,0,0,.38);
      transition: transform .15s ease, border-color .2s ease, background .2s ease;
    }
    .to-top button:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.22); background: rgba(12,10,26,.65);}

    /* Footer */
    footer{
      padding: 18px 0 24px 0;
      border-top: 1px solid rgba(255,255,255,.10);
      margin-top: 10px;
      background: rgba(0,0,0,.10);
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .foot-card{
      border-radius: 18px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      padding: 16px;
      box-shadow: 0 16px 40px rgba(0,0,0,.18);
    }
    .foot-card h3{
      margin:0 0 8px 0;
      font-size:14.5px;
      letter-spacing:.2px;
    }
    .foot-card p{
      margin:0;
      color: var(--muted2);
      font-size:13px;
      line-height:1.8;
    }
    .foot-links{
      display:flex;
      flex-direction:column;
      gap:10px;
      margin-top: 10px;
    }
    .foot-links a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding: 10px 12px;
      border-radius: 14px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      color: rgba(244,243,255,.9);
      font-size:13px;
      transition: transform .15s ease, border-color .2s ease, background .2s ease;
    }
    .foot-links a:hover{transform: translateY(-1px); border-color: rgba(255,255,255,.20); background: rgba(255,255,255,.07);}
    .smallprint{
      margin-top: 14px;
      display:flex;
      gap:12px;
      align-items:center;
      justify-content:space-between;
      flex-wrap:wrap;
      color: var(--muted2);
      font-size:12.5px;
    }
    .smallprint .sep{
      width:1px; height: 14px; background: rgba(255,255,255,.14); display:none;
    }

    /* Responsive */
    @media (max-width: 980px){
      .nav{display:none}
      .hamburger{display:inline-flex}
      .mobile-panel{display:block}
      .hero-grid{grid-template-columns: 1fr}
      .grid-3{grid-template-columns: 1fr; }
      .grid-2{grid-template-columns: 1fr}
      .steps{grid-template-columns: 1fr 1fr}
      .cases-grid{grid-template-columns: 1fr}
      .articles{grid-template-columns: 1fr}
      .test-grid{grid-template-columns: 1fr}
      .list-grid{grid-template-columns: 1fr}
      .token-grid{grid-template-columns: 1fr}
      .footer-grid{grid-template-columns: 1fr}
      .form-grid{grid-template-columns: 1fr}
      .nav-cta{min-width:auto}
      .brand{min-width:auto}
    }

    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .reveal{transition:none}
      .btn, .card, .step, .case-card, .quote, .slink, .link-card, .article-card, .float-btn {transition:none !important}
    }