:root{
      --bg0:#fbf7ff;
      --bg1:#ffffff;
      --text:#111827;
      --muted:#4b5563;
      --muted2:#6b7280;
      --line:rgba(17,24,39,.10);
      --card:#ffffff;
      --shadow: 0 12px 30px rgba(17,24,39,.10);
      --shadow2: 0 10px 18px rgba(17,24,39,.08);
      --shadow3: 0 6px 12px rgba(17,24,39,.10);
      --r:18px;

      --accent:#ff3d7f;
      --accent2:#7c3aed;
      --accent3:#ff6b00;
      --accent4:#00b3ff;
      --good:#16a34a;
      --warn:#f59e0b;

      --focus: 0 0 0 3px rgba(124,58,237,.22);
      --container: 1120px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans CJK SC", "Noto Sans", sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 420px at 14% -4%, rgba(124,58,237,.16) 0%, rgba(124,58,237,0) 55%),
        radial-gradient(720px 380px at 86% 0%, rgba(255,61,127,.18) 0%, rgba(255,61,127,0) 58%),
        radial-gradient(680px 420px at 60% 30%, rgba(0,179,255,.10) 0%, rgba(0,179,255,0) 60%),
        linear-gradient(180deg, #ffffff 0%, var(--bg0) 40%, #ffffff 100%);
      overflow-x:hidden;
    }

    .container{
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }

    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      background: rgba(255,255,255,.76);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(17,24,39,.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;
    }
    .ai-page-logo{
      width:44px;
      height:44px;
      border-radius:12px;
      object-fit:contain;
      background: linear-gradient(135deg, rgba(255,61,127,.14), rgba(124,58,237,.14));
      padding:6px;
      box-shadow: 0 8px 18px rgba(124,58,237,.12);
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brand-name{
      font-weight:860;
      letter-spacing:.2px;
      font-size:14px;
      color: #0f172a;
    }
    .brand-sub{
      font-size:12px;
      color: var(--muted2);
      margin-top:3px;
    }

    nav{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:8px;
      flex:1;
    }
    .nav-links{
      display:flex;
      gap:10px;
      align-items:center;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav-links a{
      text-decoration:none;
      color:#111827;
      font-size:13px;
      padding:9px 10px;
      border-radius:999px;
      border:1px solid transparent;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background: rgba(255,61,127,.08);
      border-color: rgba(255,61,127,.22);
      transform: translateY(-1px);
    }
    .nav-cta{
      display:flex;
      align-items:center;
      gap:10px;
      margin-left:8px;
    }

    .btn{
      border:1px solid rgba(17,24,39,.12);
      background: #fff;
      color:#111827;
      padding:10px 14px;
      border-radius:12px;
      font-weight:720;
      cursor:pointer;
      text-decoration:none;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:focus{outline:none; box-shadow:var(--focus)}
    .btn:hover{transform: translateY(-1px); box-shadow: var(--shadow3)}
    .btn-primary{
      border-color: rgba(255,61,127,.35);
      background: linear-gradient(135deg, rgba(255,61,127,1) 0%, rgba(124,58,237,1) 55%, rgba(0,179,255,1) 120%);
      color:#fff;
      box-shadow: 0 14px 30px rgba(124,58,237,.22);
    }
    .btn-primary:hover{box-shadow: 0 18px 40px rgba(124,58,237,.28)}
    .btn-ghost{
      background: rgba(255,255,255,.65);
      border-color: rgba(17,24,39,.12);
    }

    .hamburger{
      display:none;
      width:42px; height:42px;
      border-radius:12px;
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.65);
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .hamburger:hover{transform: translateY(-1px); box-shadow: var(--shadow3)}
    .hamburger span{
      width:18px; height:2px;
      background:#111827;
      position:relative;
      display:block;
    }
    .hamburger span:before,
    .hamburger span:after{
      content:"";
      position:absolute;
      left:0;
      width:18px; height:2px;
      background:#111827;
      border-radius:2px;
      transition: transform .18s ease, top .18s ease, opacity .18s ease;
    }
    .hamburger span:before{top:-6px}
    .hamburger span:after{top:6px}
    .hamburger[aria-expanded="true"] span{background:transparent}
    .hamburger[aria-expanded="true"] span:before{top:0; transform: rotate(45deg)}
    .hamburger[aria-expanded="true"] span:after{top:0; transform: rotate(-45deg)}

    .mobile-panel{
      display:none;
      padding:0 0 14px 0;
    }
    .mobile-panel .panel{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.85);
      border-radius:16px;
      padding:12px;
      box-shadow: 0 14px 30px rgba(17,24,39,.08);
    }
    .mobile-links{
      display:flex;
      flex-direction:column;
      gap:10px;
      padding:6px;
    }
    .mobile-links a{
      text-decoration:none;
      color:#111827;
      font-weight:700;
      border-radius:12px;
      padding:12px 12px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      transition: transform .15s ease;
    }
    .mobile-links a:hover{transform: translateY(-1px)}
    .mobile-ctas{
      display:flex;
      gap:10px;
      padding:6px;
      flex-wrap:wrap;
    }

    header.hero{
      padding:42px 0 18px 0;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-card{
      border-radius:24px;
      border:1px solid rgba(17,24,39,.08);
      background:
        radial-gradient(800px 380px at 12% 10%, rgba(255,61,127,.16) 0%, rgba(255,61,127,0) 55%),
        radial-gradient(720px 420px at 82% 16%, rgba(124,58,237,.18) 0%, rgba(124,58,237,0) 55%),
        radial-gradient(640px 420px at 70% 86%, rgba(0,179,255,.12) 0%, rgba(0,179,255,0) 62%),
        linear-gradient(180deg, rgba(255,255,255,.90) 0%, rgba(255,255,255,.66) 100%);
      box-shadow: 0 20px 60px rgba(124,58,237,.12);
      padding:22px 20px;
      position:relative;
      overflow:hidden;
      min-height: 360px;
    }
    .hero-card:after{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        linear-gradient(90deg, rgba(255,61,127,.14) 0%, rgba(124,58,237,.12) 30%, rgba(0,179,255,.10) 60%, rgba(255,107,0,.10) 100%);
      opacity:.35;
      mask-image: radial-gradient(closest-side at 20% 10%, #000 0%, transparent 60%);
      pointer-events:none;
    }

    .kicker{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
      position:relative;
      z-index:2;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      font-size:12px;
      color:#111827;
      font-weight:760;
    }
    .dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 55%, var(--accent4) 120%);
      box-shadow: 0 0 0 4px rgba(124,58,237,.12);
    }

    h1{
      position:relative;
      z-index:2;
      margin:14px 0 10px;
      font-size:34px;
      line-height:1.14;
      letter-spacing:-.6px;
    }
    .hero-desc{
      position:relative;
      z-index:2;
      color: var(--muted);
      font-size:15px;
      line-height:1.8;
      margin: 0 0 16px;
      max-width: 62ch;
    }
    .hero-actions{
      position:relative;
      z-index:2;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      margin-top:16px;
    }

    .micro{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:14px;
      position:relative;
      z-index:2;
    }
    .micro .chip{
      display:flex;
      align-items:center;
      gap:10px;
      padding:11px 12px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      min-width: 220px;
    }
    .chip-icon{
      width:36px; height:36px;
      border-radius:12px;
      background: linear-gradient(135deg, rgba(255,61,127,.16) 0%, rgba(124,58,237,.16) 60%, rgba(0,179,255,.14) 100%);
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(17,24,39,.08);
    }
    .chip-title{
      font-weight:860;
      font-size:13px;
      margin:0;
      line-height:1.2;
    }
    .chip-sub{
      margin:3px 0 0;
      color:var(--muted2);
      font-size:12px;
      line-height:1.3;
    }

    .hero-side{
      border-radius:24px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 40px rgba(17,24,39,.08);
      padding:18px;
      display:flex;
      flex-direction:column;
      gap:14px;
      min-height:360px;
    }
    .side-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }
    .side-title{
      font-weight:900;
      letter-spacing:-.2px;
      font-size:16px;
      margin:0;
    }
    .side-sub{
      margin:6px 0 0;
      color:var(--muted2);
      font-size:13px;
      line-height:1.6;
    }

    .stat-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:2px;
    }
    .stat{
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.62) 100%);
      padding:12px 12px;
      box-shadow: 0 10px 18px rgba(17,24,39,.05);
      transition: transform .18s ease, box-shadow .18s ease;
      transform: translateZ(0);
    }
    .stat:hover{transform: translateY(-2px); box-shadow: 0 18px 30px rgba(17,24,39,.10)}
    .stat .num{
      font-weight:950;
      font-size:18px;
      letter-spacing:-.2px;
      margin:0;
    }
    .stat .lab{
      margin:6px 0 0;
      color:var(--muted2);
      font-size:12px;
      line-height:1.3;
    }

    .quick-card{
      margin-top:auto;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:
        radial-gradient(620px 220px at 10% 0%, rgba(255,61,127,.18) 0%, rgba(255,61,127,0) 54%),
        radial-gradient(540px 240px at 90% 20%, rgba(124,58,237,.18) 0%, rgba(124,58,237,0) 55%),
        linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.66) 100%);
      padding:14px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .quick-row{
      display:flex;
      gap:10px;
      align-items:center;
    }
    .badge{
      width:40px; height:40px;
      border-radius:14px;
      background: linear-gradient(135deg, rgba(255,61,127,.18) 0%, rgba(124,58,237,.16) 55%, rgba(0,179,255,.14) 100%);
      border:1px solid rgba(17,24,39,.10);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .quick-text{
      display:flex; flex-direction:column;
      gap:2px;
    }
    .quick-text strong{font-size:13px; letter-spacing:-.1px}
    .quick-text span{font-size:12px; color:var(--muted2); line-height:1.4}

    .section{
      padding: 24px 0;
    }
    .section-title{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:12px;
      margin-bottom:14px;
    }
    .section-title h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.4px;
    }
    .section-title p{
      margin:0;
      color:var(--muted2);
      font-size:13px;
      line-height:1.5;
      max-width: 58ch;
    }

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .card{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--r);
      padding:14px;
      box-shadow: 0 12px 26px rgba(17,24,39,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-3px);
      box-shadow: 0 20px 45px rgba(17,24,39,.10);
      border-color: rgba(124,58,237,.22);
    }
    .card:before{
      content:"";
      position:absolute;
      inset:-2px;
      background: linear-gradient(135deg, rgba(255,61,127,.14) 0%, rgba(124,58,237,.14) 50%, rgba(0,179,255,.12) 100%);
      opacity:0;
      transition: opacity .18s ease;
      pointer-events:none;
      mask-image: radial-gradient(closest-side at 20% 10%, #000 0%, transparent 62%);
    }
    .card:hover:before{opacity:1}

    .card .h{
      display:flex;
      align-items:center;
      gap:10px;
      margin-bottom:10px;
    }
    .icon{
      width:42px; height:42px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background: linear-gradient(135deg, rgba(255,61,127,.18) 0%, rgba(124,58,237,.16) 55%, rgba(0,179,255,.14) 100%);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .card h3{
      margin:0;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color:var(--muted2);
      font-size:13px;
      line-height:1.8;
    }

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

    .steps{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .step{
      display:flex;
      gap:12px;
      align-items:flex-start;
      border:1px solid rgba(17,24,39,.10);
      border-radius:18px;
      background: rgba(255,255,255,.78);
      padding:14px;
      box-shadow: 0 12px 26px rgba(17,24,39,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .step:hover{
      transform: translateY(-2px);
      box-shadow: 0 20px 45px rgba(17,24,39,.10);
      border-color: rgba(255,61,127,.22);
    }
    .step-num{
      width:40px; height:40px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background: linear-gradient(135deg, rgba(255,61,127,.18) 0%, rgba(124,58,237,.18) 55%, rgba(0,179,255,.14) 100%);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      flex:0 0 auto;
    }
    .step-body h3{
      margin:0;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .step-body p{
      margin:6px 0 0;
      color:var(--muted2);
      font-size:13px;
      line-height:1.8;
    }

    .compare-wrap{
      border-radius:24px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.76);
      box-shadow: 0 18px 55px rgba(17,24,39,.08);
      padding:14px;
      overflow:hidden;
    }

    .compare-top{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:12px;
      padding:8px 6px 12px;
    }
    .rating{
      display:flex;
      gap:12px;
      align-items:center;
      flex-wrap:wrap;
    }
    .stars{
      display:flex; gap:6px; align-items:center;
    }
    .star{
      width:18px; height:18px;
      background: conic-gradient(from 90deg, var(--accent3), var(--accent), var(--accent2), var(--accent4), var(--accent3));
      -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="m12 17.27 5.18 3.73-1.98-6.3L20.5 9.5l-6.6-.03L12 3 10.1 9.47l-6.6.03 5.3 4.2-1.98 6.3L12 17.27z"/>') center/contain no-repeat;
      mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="m12 17.27 5.18 3.73-1.98-6.3L20.5 9.5l-6.6-.03L12 3 10.1 9.47l-6.6.03 5.3 4.2-1.98 6.3L12 17.27z"/>') center/contain no-repeat;
      border-radius:4px;
      transform: translateZ(0);
    }
    .rating .score{
      display:flex;
      flex-direction:column;
      gap:2px;
    }
    .rating .score strong{
      font-size:20px;
      letter-spacing:-.3px;
    }
    .rating .score span{
      color:var(--muted2);
      font-size:13px;
      line-height:1.4;
    }

    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width: 820px;
    }
    .table-wrap{
      overflow:auto;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
    }
    th, td{
      padding:12px 12px;
      border-bottom:1px solid rgba(17,24,39,.08);
      text-align:left;
      vertical-align:top;
      font-size:13px;
      line-height:1.6;
      white-space:normal;
    }
    th{
      background: linear-gradient(135deg, rgba(255,61,127,.10) 0%, rgba(124,58,237,.10) 55%, rgba(0,179,255,.08) 100%);
      color:#0f172a;
      font-weight:900;
      position:sticky;
      top:0;
      z-index:1;
    }
    tbody tr:last-child td{border-bottom:none}
    .good{
      color: #0b5a2a;
      font-weight:900;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.72);
      font-size:12px;
      font-weight:860;
      margin-right:8px;
      margin-top:6px;
      white-space:nowrap;
    }
    .tag .t-dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 55%, var(--accent4) 120%);
    }

    .pricing-row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }

    .token-card{
      border-radius:22px;
      border:1px solid rgba(17,24,39,.10);
      background:
        radial-gradient(680px 240px at 0% 0%, rgba(255,61,127,.18) 0%, rgba(255,61,127,0) 55%),
        radial-gradient(580px 260px at 100% 20%, rgba(124,58,237,.18) 0%, rgba(124,58,237,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.68) 100%);
      padding:16px;
      box-shadow: 0 18px 55px rgba(17,24,39,.08);
      position:relative;
      overflow:hidden;
    }
    .token-card:after{
      content:"";
      position:absolute;
      right:-80px; top:-90px;
      width:240px; height:240px;
      background: radial-gradient(circle at 30% 30%, rgba(0,179,255,.26), rgba(0,179,255,0) 62%);
      pointer-events:none;
      opacity:.9;
    }
    .token-card h3{margin:0; font-size:16px; letter-spacing:-.2px}
    .token-card p{margin:8px 0 0; color:var(--muted2); font-size:13px; line-height:1.8; position:relative; z-index:1}
    .token-list{
      margin-top:12px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      position:relative; z-index:1;
    }
    .token-item{
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      padding:12px;
    }
    .token-item strong{display:block; font-size:13px}
    .token-item span{display:block; margin-top:6px; font-size:12px; color:var(--muted2); line-height:1.4}

    .token-controls{
      display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; position:relative; z-index:1;
    }
    .select{
      display:flex;
      flex-direction:column;
      gap:6px;
      flex: 1 1 200px;
    }
    label{
      font-size:12px;
      color:var(--muted2);
      font-weight:800;
    }
    select, input, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.14);
      background: rgba(255,255,255,.86);
      font-size:14px;
      color:#111827;
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease;
    }
    select:focus, input:focus, textarea:focus{box-shadow: var(--focus); border-color: rgba(124,58,237,.35)}
    textarea{min-height:104px; resize:vertical}
    .hint{
      color:var(--muted2);
      font-size:12px;
      line-height:1.5;
      margin-top:8px;
    }
    .token-estimate{
      margin-top:12px;
      border-radius:18px;
      border:1px dashed rgba(124,58,237,.35);
      background: rgba(255,255,255,.70);
      padding:12px;
      position:relative; z-index:1;
    }
    .token-estimate .row{
      display:flex; gap:12px; justify-content:space-between; align-items:flex-start; flex-wrap:wrap;
    }
    .token-estimate strong{font-size:13px}
    .token-estimate span{display:block; color:var(--muted2); font-size:12px; margin-top:6px; line-height:1.5}
    .est-num{
      font-size:22px;
      font-weight:950;
      letter-spacing:-.4px;
      color:#0f172a;
    }
    .bar{
      height:10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      overflow:hidden;
      margin-top:10px;
    }
    .bar > i{
      display:block;
      height:100%;
      width:40%;
      background: linear-gradient(90deg, rgba(255,61,127,1) 0%, rgba(124,58,237,1) 55%, rgba(0,179,255,1) 120%);
      border-radius:999px;
      transition: width .25s ease;
    }

    .gallery{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .gallery-card{
      border-radius:22px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.76);
      box-shadow: 0 18px 55px rgba(17,24,39,.08);
      overflow:hidden;
    }
    .gallery-card .imgbox{
      padding:12px;
    }
    .gallery-card img{
      width:100%;
      height:auto;
      display:block;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background: #fff;
    }
    .gallery-card .meta{
      padding:0 14px 14px;
    }
    .gallery-card .meta strong{
      display:block;
      margin-top:10px;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .gallery-card .meta p{
      margin:8px 0 0;
      color:var(--muted2);
      font-size:13px;
      line-height:1.8;
    }
    .gallery-tags{
      display:flex; flex-wrap:wrap; gap:8px;
      margin-top:12px;
    }
    .muted-link{
      color:#111827;
      text-decoration:none;
      font-weight:820;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.72);
      display:inline-flex; align-items:center; gap:10px;
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .muted-link:hover{transform: translateY(-2px); box-shadow: var(--shadow3)}
    .muted-link i{
      width:10px; height:10px;
      border-radius:3px;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 55%, var(--accent4) 120%);
      display:inline-block;
    }

    .list-cards{
      display:grid;
      grid-template-columns: repeat(3,1fr);
      gap:14px;
    }
    .small-card{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      padding:14px;
      box-shadow: 0 12px 26px rgba(17,24,39,.06);
      transition: transform .18s ease, box-shadow .18s ease;
      display:flex;
      flex-direction:column;
      gap:10px;
      min-height: 168px;
    }
    .small-card:hover{transform: translateY(-3px); box-shadow: 0 22px 55px rgba(17,24,39,.10)}
    .small-card .top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .small-card .type{
      font-weight:900;
      letter-spacing:-.2px;
      font-size:14px;
    }
    .small-card .badge2{
      font-size:12px;
      color:#111827;
      font-weight:900;
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.72);
      padding:7px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .small-card p{
      margin:0;
      color:var(--muted2);
      font-size:13px;
      line-height:1.8;
    }
    .small-card .actions{
      display:flex; gap:10px; flex-wrap:wrap; margin-top:auto;
    }

    .faq{
      border-radius:24px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.76);
      box-shadow: 0 18px 55px rgba(17,24,39,.08);
      padding:6px;
      overflow:hidden;
    }
    details.faq-item{
      border-bottom:1px solid rgba(17,24,39,.08);
      padding:10px 10px;
      border-radius:14px;
      background: rgba(255,255,255,.55);
      margin:8px;
      transition: background .18s ease, transform .18s ease;
    }
    details.faq-item[open]{
      background: rgba(255,255,255,.78);
    }
    details.faq-item summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      font-weight:920;
      letter-spacing:-.2px;
      padding:10px 10px;
      border-radius:14px;
      outline:none;
      user-select:none;
    }
    details.faq-item summary::-webkit-details-marker{display:none}
    .faq-q{
      font-size:14px;
      line-height:1.6;
      color:#0f172a;
    }
    .faq-icon{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background: linear-gradient(135deg, rgba(255,61,127,.14) 0%, rgba(124,58,237,.14) 55%, rgba(0,179,255,.12) 100%);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transform: rotate(0deg);
      transition: transform .18s ease;
    }
    details[open] .faq-icon{transform: rotate(45deg)}
    .faq-a{
      padding:0 10px 10px 10px;
      color: var(--muted);
      font-size:13px;
      line-height:1.9;
    }

    .reviews{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .review-card{
      border-radius:22px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 55px rgba(17,24,39,.08);
      padding:14px;
      display:flex;
      flex-direction:column;
      gap:10px;
      min-height: 190px;
    }
    .review-head{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .reviewer{
      display:flex; gap:12px; align-items:center;
    }
    .avatar{
      width:42px; height:42px; border-radius:16px;
      background: linear-gradient(135deg, rgba(255,61,127,.16) 0%, rgba(124,58,237,.16) 55%, rgba(0,179,255,.14) 100%);
      border:1px solid rgba(17,24,39,.10);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:#0f172a;
      flex:0 0 auto;
    }
    .reviewer .name{
      font-weight:950;
      letter-spacing:-.2px;
      font-size:14px;
      margin:0;
    }
    .reviewer .role{
      margin:6px 0 0;
      color:var(--muted2);
      font-size:12px;
      line-height:1.4;
    }
    .review-stars{
      display:flex; gap:4px; align-items:center;
    }
    .mini-star{
      width:12px; height:12px;
      background: conic-gradient(from 90deg, var(--accent3), var(--accent), var(--accent2), var(--accent4), var(--accent3));
      -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="m12 17.27 5.18 3.73-1.98-6.3L20.5 9.5l-6.6-.03L12 3 10.1 9.47l-6.6.03 5.3 4.2-1.98 6.3L12 17.27z"/>') center/contain no-repeat;
      mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="m12 17.27 5.18 3.73-1.98-6.3L20.5 9.5l-6.6-.03L12 3 10.1 9.47l-6.6.03 5.3 4.2-1.98 6.3L12 17.27z"/>') center/contain no-repeat;
      border-radius:3px;
    }
    .review-card p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.9;
    }
    .review-foot{
      margin-top:auto;
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
    }

    .tagcloud{
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .tagcloud a{
      text-decoration:none;
      color:#111827;
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.72);
      border-radius:999px;
      padding:10px 12px;
      font-size:12px;
      font-weight:880;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .tagcloud a:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow3);
      border-color: rgba(255,61,127,.22);
    }

    .timeline{
      display:grid;
      gap:12px;
    }
    .titem{
      display:flex;
      gap:12px;
      align-items:flex-start;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      padding:14px;
      box-shadow: 0 12px 26px rgba(17,24,39,.06);
    }
    .tbullet{
      width:40px; height:40px; border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background: linear-gradient(135deg, rgba(255,61,127,.18) 0%, rgba(124,58,237,.18) 55%, rgba(0,179,255,.14) 100%);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      flex:0 0 auto;
    }
    .titem h3{margin:0; font-size:14px; letter-spacing:-.2px}
    .titem p{margin:6px 0 0; color:var(--muted2); font-size:13px; line-height:1.8}

    .form-card{
      border-radius:24px;
      border:1px solid rgba(17,24,39,.10);
      background:
        radial-gradient(700px 260px at 0% 0%, rgba(124,58,237,.18) 0%, rgba(124,58,237,0) 55%),
        radial-gradient(640px 280px at 100% 10%, rgba(255,61,127,.18) 0%, rgba(255,61,127,0) 58%),
        linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.68) 100%);
      box-shadow: 0 22px 70px rgba(17,24,39,.10);
      padding:16px;
      overflow:hidden;
    }
    .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .form-grid .full{grid-column: 1 / -1;}
    .form-actions{
      display:flex; gap:12px; flex-wrap:wrap;
      align-items:center; justify-content:flex-start;
      margin-top:4px;
    }
    .submit-note{
      color:var(--muted2);
      font-size:12px;
      line-height:1.5;
      margin:0;
    }

    footer{
      padding:22px 0 26px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.0) 0%, rgba(255,255,255,.66) 25%, rgba(255,255,255,.92) 100%),
        radial-gradient(920px 340px at 20% 0%, rgba(255,61,127,.14) 0%, rgba(255,61,127,0) 55%),
        radial-gradient(820px 340px at 85% 0%, rgba(124,58,237,.16) 0%, rgba(124,58,237,0) 58%);
      border-top:1px solid rgba(17,24,39,.08);
      margin-top: 10px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:14px;
      align-items:start;
    }
    .footer-left{
      border-radius:24px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 55px rgba(17,24,39,.08);
      padding:14px;
    }
    .footer-right{
      border-radius:24px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 55px rgba(17,24,39,.08);
      padding:14px;
    }
    .footer-left .row{
      display:flex; justify-content:space-between; align-items:flex-start; gap:12px; flex-wrap:wrap;
    }
    .footer-title{
      margin:0;
      font-size:15px;
      font-weight:980;
      letter-spacing:-.2px;
    }
    .footer-desc{
      margin:8px 0 0;
      color:var(--muted2);
      font-size:13px;
      line-height:1.8;
    }
    .footer-links{
      margin-top:12px;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .footer-links a{
      text-decoration:none;
      color:#111827;
      font-weight:900;
      font-size:12px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.72);
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .footer-links a:hover{transform: translateY(-2px); box-shadow: var(--shadow3)}
    .copyright{
      margin-top:14px;
      color:var(--muted2);
      font-size:12px;
      line-height:1.8;
      display:flex;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }
    .footer-right h3{margin:0; font-size:15px; font-weight:980; letter-spacing:-.2px}
    .contact-block{
      margin-top:10px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .contact-row{
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .contact-row .k{
      width:100px;
      color:var(--muted2);
      font-size:12px;
      font-weight:900;
      padding-top:2px;
      flex:0 0 auto;
    }
    .contact-row .v{
      font-size:13px;
      color:#111827;
      line-height:1.6;
      font-weight:760;
    }
    .qrcode{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      padding:12px;
      margin-top:10px;
    }
    .qrcode img{
      width:96px; height:auto;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:#fff;
    }
    .qrcode .qtext{
      display:flex; flex-direction:column;
      gap:6px;
    }
    .qrcode .qtext strong{font-size:13px}
    .qrcode .qtext span{font-size:12px; color:var(--muted2); line-height:1.5}

    .floating{
      position:fixed;
      right:14px;
      bottom:16px;
      z-index:80;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
      pointer-events:none;
    }
    .float-btn{
      pointer-events:auto;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.86);
      box-shadow: 0 16px 40px rgba(17,24,39,.12);
      padding:10px;
      display:flex;
      align-items:center;
      gap:10px;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, opacity .2s ease;
      user-select:none;
    }
    .float-btn:hover{transform: translateY(-2px)}
    .float-btn .ficon{
      width:38px; height:38px;
      border-radius:15px;
      background: linear-gradient(135deg, rgba(255,61,127,.18) 0%, rgba(124,58,237,.18) 55%, rgba(0,179,255,.14) 100%);
      border:1px solid rgba(17,24,39,.10);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .float-btn .ftext{
      display:flex; flex-direction:column; gap:3px;
      padding-right:4px;
      min-width: 98px;
    }
    .float-btn .ftext strong{font-size:12px; font-weight:980}
    .float-btn .ftext span{font-size:11px; color:var(--muted2)}
    .toTop{
      display:none;
    }

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

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr}
      .hero-card, .hero-side{min-height:auto}
      h1{font-size:28px}
      .grid-3{grid-template-columns: 1fr}
      .two-col{grid-template-columns: 1fr}
      .list-cards{grid-template-columns: 1fr}
      .reviews{grid-template-columns: 1fr}
      .pricing-row{grid-template-columns: 1fr}
      .gallery{grid-template-columns: 1fr}
      .footer-grid{grid-template-columns: 1fr}
      .form-grid{grid-template-columns: 1fr}
      .stat-grid{grid-template-columns: 1fr 1fr}
      .nav-links{display:none}
      .nav-cta{display:none}
      .hamburger{display:flex}
      .mobile-panel{display:block}
      table{min-width: 760px}
    }

    @media (prefers-reduced-motion: reduce){
      *{scroll-behavior:auto !important}
      .reveal{transition:none}
      .card, .stat, .step, .small-card, .btn{transition:none}
      .float-btn:hover, .btn:hover, .card:hover, .stat:hover, .step:hover, .small-card:hover{transform:none}
    }