:root{
      --bg0:#ffffff;
      --bg1:#f7f8ff;
      --card:#ffffff;
      --text:#121826;
      --muted:#5b677a;
      --line:rgba(18,24,38,.10);
      --shadow:0 18px 50px rgba(18,24,38,.10);
      --shadow2:0 10px 30px rgba(18,24,38,.08);
      --ring:0 0 0 3px rgba(125, 84, 255, .18);

      --p1:#7d54ff;
      --p2:#22d3ee;
      --p3:#ff4fd8;
      --p4:#33c16a;

      --grad:linear-gradient(120deg, rgba(125,84,255,.18) 0%, rgba(34,211,238,.18) 35%, rgba(255,79,216,.14) 70%, rgba(51,193,106,.12) 100%);
      --grad2:linear-gradient(90deg, #7d54ff 0%, #22d3ee 45%, #ff4fd8 100%);
      --grad3:radial-gradient(700px 220px at 20% 0%, rgba(125,84,255,.30), transparent 55%),
              radial-gradient(600px 220px at 90% 10%, rgba(34,211,238,.25), transparent 50%),
              radial-gradient(600px 260px at 80% 70%, rgba(255,79,216,.20), transparent 55%);
      --radius:16px;
      --radius2:22px;

      --container:1160px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      background:linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 55%, #fff 100%);
      color:var(--text);
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Noto Sans CJK SC","Microsoft YaHei", sans-serif;
      line-height:1.55;
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }

    .topbar{
      position:sticky;
      top:0;
      z-index:60;
      backdrop-filter:saturate(130%) blur(10px);
      background:rgba(255,255,255,.72);
      border-bottom:1px solid rgba(18,24,38,.08);
    }
    .topbar-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:14px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:240px;
    }
    .brand img{
      width:44px; height:44px;
      border-radius:12px;
      box-shadow:0 10px 30px rgba(125,84,255,.18);
      object-fit:contain;
      background:rgba(125,84,255,.08);
      padding:6px;
    }
    .brand-title{
      display:flex;
      flex-direction:column;
      gap:2px;
    }
    .brand-title .name{
      font-weight:800;
      letter-spacing:.2px;
      font-size:15px;
      line-height:1.1;
      white-space:nowrap;
    }
    .brand-title .sub{
      font-size:12px;
      color:var(--muted);
      white-space:nowrap;
    }

    .nav{
      display:flex;
      align-items:center;
      gap:12px;
      justify-content:flex-end;
      flex:1;
    }
    .nav-links{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
      align-items:center;
    }
    .nav-links a{
      font-size:13px;
      color:#223044;
      padding:10px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition:transform .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background:rgba(125,84,255,.08);
      border-color:rgba(125,84,255,.20);
      transform:translateY(-1px);
    }

    .nav-cta{
      display:flex;
      align-items:center;
      gap:10px;
      margin-left:6px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:12px 14px;
      border-radius:14px;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.72);
      color:#122035;
      box-shadow:0 8px 26px rgba(18,24,38,.06);
      transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
      font-weight:700;
      font-size:13px;
      white-space:nowrap;
      user-select:none;
    }
    .btn:focus{outline:none; box-shadow:var(--ring), 0 8px 26px rgba(18,24,38,.06)}
    .btn:hover{
      transform:translateY(-1px);
      box-shadow:0 14px 36px rgba(18,24,38,.10);
      border-color:rgba(125,84,255,.25);
    }
    .btn-primary{
      border-color:rgba(125,84,255,.28);
      background:linear-gradient(180deg, rgba(125,84,255,.16) 0%, rgba(34,211,238,.10) 100%);
      position:relative;
      overflow:hidden;
    }
    .btn-primary:before{
      content:"";
      position:absolute; inset:-2px;
      background:conic-gradient(from 210deg, rgba(125,84,255,.0), rgba(125,84,255,.35), rgba(34,211,238,.25), rgba(255,79,216,.25), rgba(125,84,255,.0));
      opacity:.65;
      filter:blur(10px);
      transform:translateY(8px);
      pointer-events:none;
    }
    .btn-primary > span{position:relative}
    .btn-primary .spark{
      width:10px; height:10px; border-radius:3px;
      background:var(--grad2);
      box-shadow:0 0 0 5px rgba(125,84,255,.12);
      transform:rotate(15deg);
    }

    .menu-btn{
      display:none;
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.72);
      box-shadow:0 8px 26px rgba(18,24,38,.06);
      align-items:center;
      justify-content:center;
      transition:transform .15s ease;
    }
    .menu-btn:hover{transform:translateY(-1px)}
    .burger{
      width:18px; height:12px; position:relative;
    }
    .burger i{
      position:absolute; left:0; right:0;
      height:2px; border-radius:2px; background:#1f2a3b;
      transition:transform .18s ease, top .18s ease, opacity .18s ease;
    }
    .burger i:nth-child(1){top:0}
    .burger i:nth-child(2){top:5px}
    .burger i:nth-child(3){top:10px}
    .menu-open .burger i:nth-child(1){top:5px; transform:rotate(45deg)}
    .menu-open .burger i:nth-child(2){opacity:0}
    .menu-open .burger i:nth-child(3){top:5px; transform:rotate(-45deg)}

    .mobile-panel{
      display:none;
      padding:0 0 14px;
    }
    .mobile-panel .panel-inner{
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.86);
      border-radius:18px;
      padding:12px;
      box-shadow:0 16px 50px rgba(18,24,38,.10);
    }
    .mobile-panel a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:12px 10px;
      border-radius:14px;
      border:1px solid transparent;
      color:#1a2636;
      font-weight:700;
      font-size:13px;
      transition:background .15s ease, border-color .15s ease, transform .15s ease;
    }
    .mobile-panel a:hover{
      background:rgba(125,84,255,.08);
      border-color:rgba(125,84,255,.20);
      transform:translateY(-1px);
    }
    .mobile-panel .panel-links{
      display:grid; gap:8px;
    }
    .mobile-panel .panel-actions{
      display:grid; gap:10px;
      margin-top:12px;
    }
    .mobile-panel .panel-actions .btn{width:100%}

    .hero{
      position:relative;
      overflow:hidden;
      padding:38px 0 22px;
    }
    .hero .bg-aurora{
      position:absolute; inset:-120px -40px auto -40px;
      height:520px;
      background:var(--grad3);
      filter:saturate(120%);
      pointer-events:none;
    }
    .hero-grid{
      position:relative;
      display:grid;
      grid-template-columns: 1.08fr .92fr;
      gap:22px;
      align-items:start;
    }

    .hero-left{
      padding-top:14px;
    }
    .badge-row{
      display:flex;
      gap:10px;
      align-items:center;
      flex-wrap:wrap;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      border:1px solid rgba(125,84,255,.22);
      background:rgba(125,84,255,.08);
      padding:10px 12px;
      border-radius:999px;
      color:#1f2a3b;
      font-weight:800;
      font-size:12px;
      letter-spacing:.2px;
    }
    .badge .dot{
      width:10px; height:10px; border-radius:50%;
      background:var(--grad2);
      box-shadow:0 0 0 5px rgba(125,84,255,.10);
    }
    .badge.alt{
      border-color:rgba(34,211,238,.26);
      background:rgba(34,211,238,.08);
    }
    .badge.alt .dot{background:linear-gradient(180deg, #22d3ee, #7d54ff)}

    h1{
      margin:16px 0 10px;
      font-size:38px;
      line-height:1.18;
      letter-spacing:-.6px;
    }
    .lead{
      color:var(--muted);
      font-size:15px;
      margin:0 0 18px;
      max-width:62ch;
    }
    .hero-actions{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      margin:16px 0 14px;
    }
    .hero-actions .btn{
      padding:13px 16px;
    }
    .ghost{
      background:rgba(255,255,255,.72);
    }
    .hero-meta{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
      margin-top:10px;
      padding-top:12px;
    }
    .meta-item{
      display:flex;
      flex-direction:column;
      gap:4px;
      min-width:150px;
    }
    .meta-item .k{
      font-weight:900;
      font-size:13px;
    }
    .meta-item .v{
      color:var(--muted);
      font-size:12px;
    }
    .meta-sep{
      width:1px; background:rgba(18,24,38,.10);
      align-self:stretch;
      margin:0 2px;
      display:none;
    }

    .hero-right{
      position:relative;
    }
    .neon-panel{
      border-radius:var(--radius2);
      border:1px solid rgba(125,84,255,.18);
      background:linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.60) 100%);
      box-shadow:var(--shadow2);
      overflow:hidden;
    }
    .neon-panel:before{
      content:"";
      position:absolute; inset:-2px;
      background:conic-gradient(from 210deg, rgba(125,84,255,.0), rgba(125,84,255,.35), rgba(34,211,238,.25), rgba(255,79,216,.25), rgba(125,84,255,.0));
      opacity:.55;
      filter:blur(20px);
      pointer-events:none;
    }
    .neon-panel-inner{
      position:relative;
      padding:16px;
    }
    .panel-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:12px;
    }
    .panel-title .t{
      font-weight:900;
      letter-spacing:.2px;
      font-size:14px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      border:1px solid rgba(34,211,238,.22);
      background:rgba(34,211,238,.08);
      padding:8px 10px;
      border-radius:999px;
      font-size:12px;
      color:#133244;
      font-weight:800;
      white-space:nowrap;
    }
    .chip i{
      width:8px; height:8px; border-radius:3px;
      background:linear-gradient(180deg, #22d3ee, #7d54ff);
      box-shadow:0 0 0 5px rgba(34,211,238,.10);
      display:inline-block;
      transform:rotate(12deg);
    }

    .metrics{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:6px;
    }
    .metric{
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.72);
      border-radius:16px;
      padding:12px;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .metric:after{
      content:"";
      position:absolute;
      inset:auto -40px -40px auto;
      width:90px; height:90px;
      background:radial-gradient(circle at 30% 30%, rgba(125,84,255,.22), rgba(34,211,238,.12), transparent 65%);
      transform:rotate(15deg);
      pointer-events:none;
    }
    .metric:hover{
      transform:translateY(-3px);
      box-shadow:0 16px 44px rgba(18,24,38,.12);
      border-color:rgba(125,84,255,.24);
    }
    .metric .num{
      font-size:22px;
      font-weight:1000;
      letter-spacing:-.5px;
    }
    .metric .lab{
      color:var(--muted);
      font-size:12px;
      margin-top:4px;
      font-weight:700;
    }
    .metric .tag{
      margin-top:10px;
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-size:12px;
      font-weight:900;
      color:#1b2a40;
    }
    .metric .tag span{
      width:9px; height:9px; border-radius:50%;
      background:var(--grad2);
      box-shadow:0 0 0 5px rgba(125,84,255,.10);
    }

    .panel-quick{
      margin-top:12px;
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    .quick-card{
      border-radius:16px;
      border:1px dashed rgba(125,84,255,.28);
      background:linear-gradient(180deg, rgba(125,84,255,.07), rgba(255,255,255,.55));
      padding:12px;
    }
    .quick-row{
      display:flex;
      align-items:flex-start;
      gap:12px;
    }
    .ico{
      width:40px; height:40px;
      border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background:rgba(125,84,255,.10);
      border:1px solid rgba(125,84,255,.22);
      flex:0 0 auto;
    }
    .ico svg{width:20px; height:20px}
    .quick-card .q-title{
      font-weight:1000;
      letter-spacing:-.2px;
      margin:0;
      font-size:13px;
    }
    .quick-card .q-desc{
      margin:4px 0 0;
      color:var(--muted);
      font-size:12px;
      max-width:40ch;
    }

    .section{
      padding:36px 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin-bottom:18px;
    }
    .section-head .left{
      display:flex; flex-direction:column; gap:8px;
    }
    .eyebrow{
      color:rgba(18,24,38,.75);
      font-weight:900;
      font-size:12px;
      letter-spacing:.22px;
      text-transform:uppercase;
      display:flex; align-items:center; gap:10px;
    }
    .eyebrow:before{
      content:"";
      width:12px; height:12px;
      border-radius:4px;
      background:var(--grad2);
      box-shadow:0 0 0 6px rgba(125,84,255,.10);
      transform:rotate(12deg);
    }
    h2{
      margin:0;
      font-size:26px;
      letter-spacing:-.4px;
      line-height:1.25;
    }
    .sec-desc{
      margin:0;
      color:var(--muted);
      font-size:14px;
      max-width:70ch;
    }
    .section-head .right{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }

    .pill{
      border-radius:999px;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.72);
      padding:10px 12px;
      font-weight:900;
      font-size:12px;
      color:#1a2a3f;
      white-space:nowrap;
      display:inline-flex;
      gap:10px;
      align-items:center;
    }
    .pill i{
      width:10px; height:10px;
      border-radius:50%;
      background:rgba(125,84,255,.20);
      box-shadow:0 0 0 5px rgba(125,84,255,.08);
      display:inline-block;
    }

    .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{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(18,24,38,.10);
      border-radius:var(--radius);
      padding:16px;
      box-shadow:0 12px 35px rgba(18,24,38,.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 18px 50px rgba(18,24,38,.10);
      border-color:rgba(125,84,255,.22);
    }
    .card .card-title{
      margin:8px 0 6px;
      font-weight:1000;
      letter-spacing:-.2px;
      font-size:15px;
    }
    .card .card-desc{
      margin:0;
      color:var(--muted);
      font-size:13px;
    }
    .card .card-foot{
      margin-top:12px;
      display:flex;
      gap:10px;
      align-items:center;
      flex-wrap:wrap;
    }
    .mini{
      font-size:12px;
      color:#1a2a3f;
      background:rgba(125,84,255,.08);
      border:1px solid rgba(125,84,255,.18);
      padding:8px 10px;
      border-radius:999px;
      font-weight:900;
      white-space:nowrap;
    }

    .steps{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .step{
      padding:16px;
      border-radius:var(--radius);
      border:1px solid rgba(18,24,38,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.80) 0%, rgba(255,255,255,.62) 100%);
      box-shadow:0 12px 35px rgba(18,24,38,.06);
      position:relative;
      overflow:hidden;
    }
    .step:before{
      content:"";
      position:absolute;
      inset:auto -40px -50px auto;
      width:120px; height:120px;
      background:radial-gradient(circle at 30% 30%, rgba(34,211,238,.22), rgba(125,84,255,.14), transparent 65%);
      transform:rotate(15deg);
      pointer-events:none;
    }
    .step .n{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:34px; height:34px;
      border-radius:12px;
      background:rgba(125,84,255,.10);
      border:1px solid rgba(125,84,255,.22);
      font-weight:1000;
      color:#1a2a3f;
      box-shadow:0 10px 26px rgba(125,84,255,.10);
      position:relative;
    }
    .step h3{
      margin:12px 0 6px;
      font-size:14px;
      letter-spacing:-.2px;
      position:relative;
    }
    .step p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      position:relative;
    }

    .compare-wrap{
      border-radius:var(--radius2);
      border:1px solid rgba(18,24,38,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.56));
      box-shadow:var(--shadow2);
      overflow:hidden;
    }
    .compare-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      padding:16px 16px 0;
      flex-wrap:wrap;
    }
    .rating-card{
      display:flex;
      align-items:center;
      gap:14px;
      padding:12px 14px;
      border-radius:16px;
      border:1px solid rgba(255,79,216,.18);
      background:linear-gradient(180deg, rgba(255,79,216,.08), rgba(255,255,255,.55));
      margin-bottom:14px;
    }
    .stars{
      display:flex;
      gap:4px;
      align-items:center;
    }
    .star{
      width:18px; height:18px;
      display:inline-block;
      background:conic-gradient(from 180deg, #ffb703, #ff4fd8, #7d54ff, #22d3ee, #ffb703);
      clip-path:polygon(50% 0%, 61% 36%, 98% 36%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 36%, 39% 36%);
      filter:saturate(1.2);
      box-shadow:0 0 0 4px rgba(255,79,216,.08);
    }
    .rating-meta .big{
      font-weight:1100;
      font-size:22px;
      letter-spacing:-.4px;
    }
    .rating-meta .small{
      color:var(--muted);
      font-weight:800;
      font-size:12px;
      margin-top:2px;
      white-space:nowrap;
    }

    table{
      width:100%;
      border-collapse:collapse;
      margin-top:8px;
    }
    th, td{
      border-top:1px solid rgba(18,24,38,.08);
      padding:14px 12px;
      text-align:left;
      vertical-align:top;
      font-size:13px;
    }
    th{
      color:#17243a;
      background:rgba(245,247,255,.70);
      font-weight:1000;
      letter-spacing:.1px;
      white-space:nowrap;
    }
    td .yes{
      display:inline-flex;
      gap:8px;
      align-items:center;
      font-weight:900;
    }
    .check{
      width:18px; height:18px;
      border-radius:8px;
      background:rgba(51,193,106,.12);
      border:1px solid rgba(51,193,106,.25);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
    }
    .check svg{width:12px; height:12px}
    .v-badge{
      display:inline-flex;
      gap:10px;
      align-items:center;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(125,84,255,.18);
      background:rgba(125,84,255,.08);
      font-weight:1000;
      white-space:nowrap;
    }
    .v-badge i{
      width:10px; height:10px; border-radius:50%;
      background:var(--grad2);
      box-shadow:0 0 0 5px rgba(125,84,255,.10);
      display:inline-block;
    }

    .compare-note{
      padding:0 16px 16px;
      color:var(--muted);
      font-size:12px;
    }

    .tabs{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
    }
    .tab{
      cursor:pointer;
      border-radius:999px;
      padding:10px 12px;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.72);
      font-weight:1000;
      font-size:12px;
      color:#1a2a3f;
      transition:transform .15s ease, border-color .15s ease, background .15s ease;
      user-select:none;
    }
    .tab:hover{transform:translateY(-1px); border-color:rgba(125,84,255,.22)}
    .tab.active{
      border-color:rgba(125,84,255,.30);
      background:linear-gradient(180deg, rgba(125,84,255,.12), rgba(34,211,238,.06));
    }

    .list{
      margin:0; padding:0; list-style:none;
      display:grid; gap:10px;
    }
    .li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:12px;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.70);
      border-radius:16px;
    }
    .li .bullet{
      width:34px; height:34px; border-radius:14px;
      background:rgba(34,211,238,.10);
      border:1px solid rgba(34,211,238,.20);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .li .bullet svg{width:16px; height:16px}
    .li .content .t{
      font-weight:1000;
      letter-spacing:-.2px;
      font-size:14px;
      margin:0;
    }
    .li .content .d{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13px;
    }

    .gallery{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .gallery-left{
      border-radius:var(--radius2);
      border:1px solid rgba(18,24,38,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.58));
      box-shadow:var(--shadow2);
      padding:16px;
      overflow:hidden;
    }
    .gallery-left .grid-img{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:12px;
    }
    .img-wrap{
      border-radius:18px;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.72);
      overflow:hidden;
    }
    .img-wrap img{
      width:100%;
      height:auto;
      display:block;
      object-fit:cover;
      transition:transform .35s ease, filter .35s ease;
      filter:saturate(1.05) contrast(1.02);
    }
    .img-wrap:hover img{
      transform:scale(1.03);
      filter:saturate(1.18) contrast(1.05);
    }

    .timeline{
      border-radius:var(--radius2);
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.70);
      box-shadow:var(--shadow2);
      padding:16px;
    }
    .timeline .step-row{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
      margin-top:10px;
    }
    .titem{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.68);
    }
    .titem .marker{
      width:36px; height:36px;
      border-radius:14px;
      background:rgba(125,84,255,.10);
      border:1px solid rgba(125,84,255,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .titem .marker span{
      width:10px; height:10px;
      border-radius:50%;
      background:var(--grad2);
      box-shadow:0 0 0 6px rgba(125,84,255,.10);
      display:inline-block;
    }
    .titem .tmeta .tt{
      margin:0;
      font-weight:1000;
      font-size:14px;
      letter-spacing:-.2px;
    }
    .titem .tmeta .td{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13px;
    }

    .form-card{
      border-radius:var(--radius2);
      border:1px solid rgba(18,24,38,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.58));
      box-shadow:var(--shadow2);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .form-card:after{
      content:"";
      position:absolute;
      inset:-120px auto auto -120px;
      width:260px; height:260px;
      background:radial-gradient(circle at 40% 40%, rgba(34,211,238,.22), transparent 60%),
                 radial-gradient(circle at 60% 60%, rgba(125,84,255,.20), transparent 58%);
      pointer-events:none;
      filter:saturate(120%);
    }
    .form-inner{
      position:relative;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .form-left .hint{
      margin:10px 0 0;
      color:var(--muted);
      font-size:13px;
      max-width:52ch;
    }
    .form-right{
      border-radius:18px;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.72);
      padding:14px;
    }
    .fields{
      display:grid;
      gap:10px;
    }
    label{
      display:grid;
      gap:6px;
      font-weight:1000;
      font-size:12px;
      color:#223044;
    }
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(18,24,38,.12);
      background:rgba(255,255,255,.92);
      color:#122035;
      font-size:14px;
      outline:none;
      transition:box-shadow .15s ease, border-color .15s ease, transform .1s ease;
    }
    textarea{min-height:110px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color:rgba(125,84,255,.32);
      box-shadow:var(--ring);
    }
    .form-actions{
      display:flex;
      gap:10px;
      align-items:center;
      justify-content:space-between;
      flex-wrap:wrap;
      margin-top:12px;
    }
    .form-actions .note{
      color:var(--muted);
      font-size:12px;
      font-weight:800;
    }
    .btn-submit{
      border:none;
      background:linear-gradient(90deg, rgba(125,84,255,.95), rgba(34,211,238,.90));
      color:#fff;
      padding:12px 16px;
      border-radius:14px;
      font-weight:1000;
      box-shadow:0 16px 44px rgba(125,84,255,.24);
      cursor:pointer;
      transition:transform .15s ease, filter .15s ease;
      display:inline-flex;
      align-items:center;
      gap:10px;
      user-select:none;
      white-space:nowrap;
    }
    .btn-submit:hover{transform:translateY(-1px); filter:saturate(1.1)}
    .btn-submit:focus{outline:none; box-shadow:var(--ring), 0 16px 44px rgba(125,84,255,.24)}
    .btn-submit svg{width:16px; height:16px}

    .comments{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .quote{
      padding:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.74);
      box-shadow:0 12px 35px rgba(18,24,38,.06);
      position:relative;
      overflow:hidden;
    }
    .quote:before{
      content:"";
      position:absolute;
      inset:-80px -70px auto auto;
      width:200px; height:200px;
      background:radial-gradient(circle at 30% 30%, rgba(255,79,216,.16), rgba(125,84,255,.14), transparent 60%);
      pointer-events:none;
    }
    .quote .who{
      display:flex; align-items:center; gap:12px;
      position:relative;
    }
    .avatar{
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(18,24,38,.10);
      background:linear-gradient(180deg, rgba(125,84,255,.12), rgba(34,211,238,.08));
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:1100;
      color:#1a2a3f;
      box-shadow:0 12px 28px rgba(18,24,38,.06);
      user-select:none;
    }
    .quote .role{
      font-weight:1000;
      font-size:13px;
      letter-spacing:-.2px;
      margin:0;
    }
    .quote .org{
      color:var(--muted);
      font-size:12px;
      margin-top:2px;
      font-weight:800;
    }
    .quote .text{
      margin:12px 0 0;
      color:#243144;
      font-size:13px;
      position:relative;
    }
    .quote .stamp{
      margin-top:12px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      position:relative;
      flex-wrap:wrap;
    }
    .quote .stamp .sev{
      display:inline-flex;
      gap:8px;
      align-items:center;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(125,84,255,.18);
      background:rgba(125,84,255,.08);
      font-weight:1000;
      font-size:12px;
      white-space:nowrap;
    }
    .quote .stamp .sev i{
      width:10px; height:10px; border-radius:50%;
      background:var(--grad2);
      box-shadow:0 0 0 5px rgba(125,84,255,.10);
      display:inline-block;
    }

    .faq{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .faq-col{
      display:grid;
      gap:12px;
    }
    details{
      border-radius:var(--radius);
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.74);
      box-shadow:0 12px 35px rgba(18,24,38,.06);
      padding:12px 14px;
      transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }
    details[open]{
      border-color:rgba(125,84,255,.26);
      box-shadow:0 18px 50px rgba(18,24,38,.10);
      transform:translateY(-2px);
    }
    summary{
      cursor:pointer;
      font-weight:1000;
      font-size:14px;
      outline:none;
      list-style:none;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }
    summary::-webkit-details-marker{display:none}
    .sum-left{
      display:flex; gap:12px; align-items:flex-start;
    }
    .qbadge{
      width:34px; height:34px;
      border-radius:14px;
      background:rgba(34,211,238,.10);
      border:1px solid rgba(34,211,238,.20);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .qbadge svg{width:16px; height:16px}
    .chev{
      width:22px; height:22px;
      border-radius:10px;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.8);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition:transform .18s ease;
      margin-top:2px;
    }
    details[open] .chev{transform:rotate(180deg)}
    .faq p{
      margin:10px 0 0;
      color:var(--muted);
      font-size:13px;
      padding-right:10px;
    }

    .articles{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .article-card{
      padding:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.74);
      box-shadow:0 12px 35px rgba(18,24,38,.06);
      overflow:hidden;
      position:relative;
    }
    .article-card:before{
      content:"";
      position:absolute; inset:-120px auto auto -120px;
      width:260px; height:260px;
      background:radial-gradient(circle at 40% 40%, rgba(125,84,255,.18), transparent 62%);
      pointer-events:none;
    }
    .article-card .inner{
      position:relative;
    }
    .article-card h3{
      margin:0;
      font-size:15px;
      font-weight:1100;
      letter-spacing:-.2px;
    }
    .article-list{
      margin:12px 0 0;
      padding:0; list-style:none;
      display:grid; gap:10px;
    }
    .article-list a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.72);
      transition:transform .15s ease, border-color .15s ease, box-shadow .15s ease;
    }
    .article-list a:hover{
      transform:translateY(-2px);
      border-color:rgba(125,84,255,.22);
      box-shadow:0 14px 36px rgba(18,24,38,.10);
    }
    .article-list .tt{
      font-weight:1000;
      font-size:13px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:46ch;
    }
    .article-list .go{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--muted);
      font-weight:900;
      font-size:12px;
      white-space:nowrap;
    }
    .article-list .go span{
      width:26px; height:26px;
      border-radius:12px;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.84);
      display:flex; align-items:center; justify-content:center;
    }
    .article-list .go svg{width:14px; height:14px}

    .cloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:12px;
    }
    .tag-cloud{
      border:1px dashed rgba(125,84,255,.22);
      background:rgba(125,84,255,.06);
      padding:10px 12px;
      border-radius:999px;
      font-weight:1000;
      font-size:12px;
      color:#1a2a3f;
      cursor:pointer;
      transition:transform .15s ease, background .15s ease, border-color .15s ease;
      user-select:none;
    }
    .tag-cloud:hover{
      transform:translateY(-2px);
      border-color:rgba(125,84,255,.30);
      background:rgba(125,84,255,.10);
    }

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

    .network{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .map-card{
      border-radius:var(--radius2);
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.74);
      box-shadow:0 12px 35px rgba(18,24,38,.06);
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .map-card:before{
      content:"";
      position:absolute; inset:-150px -150px auto auto;
      width:320px; height:320px;
      background:radial-gradient(circle at 30% 30%, rgba(34,211,238,.18), transparent 62%);
      pointer-events:none;
    }
    .map-grid{
      position:relative;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:12px;
    }
    .net-item{
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.70);
    }
    .net-item .k{
      font-weight:1100;
      font-size:13px;
      margin:0;
      letter-spacing:-.2px;
    }
    .net-item .v{
      color:var(--muted);
      font-weight:800;
      font-size:12px;
      margin-top:6px;
      line-height:1.35;
    }
    .small-list{
      margin:0; padding:0; list-style:none;
      display:grid; gap:10px;
    }
    .small-list li{
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.72);
      display:flex; gap:12px; align-items:flex-start;
    }
    .small-list .b{
      width:36px; height:36px;
      border-radius:14px;
      border:1px solid rgba(255,79,216,.18);
      background:rgba(255,79,216,.08);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .small-list .b svg{width:16px; height:16px}
    .small-list .tt{
      font-weight:1100; font-size:13px; margin:0; letter-spacing:-.2px;
    }
    .small-list .dd{
      margin:6px 0 0; color:var(--muted); font-size:12px; font-weight:800;
    }

    .footer{
      background:linear-gradient(180deg, rgba(18,24,38,.03), rgba(18,24,38,.06));
      border-top:1px solid rgba(18,24,38,.08);
      padding:22px 0;
      margin-top:10px;
    }
    .footer-inner{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
    }
    .foot-left{
      display:flex; flex-direction:column; gap:10px;
      min-width:260px;
    }
    .foot-left .brandline{
      display:flex; align-items:center; gap:10px;
    }
    .foot-left .brandline .mark{
      width:38px; height:38px;
      border-radius:14px;
      border:1px solid rgba(18,24,38,.10);
      background:linear-gradient(180deg, rgba(125,84,255,.12), rgba(34,211,238,.08));
      display:flex; align-items:center; justify-content:center;
      font-weight:1100;
    }
    .foot-left .brandline b{
      font-size:14px;
      letter-spacing:-.2px;
    }
    .foot-left .copy{
      color:var(--muted);
      font-weight:800;
      font-size:12px;
      margin:0;
    }
    .foot-mid{
      display:flex;
      gap:16px;
      flex-wrap:wrap;
      align-items:flex-start;
      justify-content:flex-end;
      flex:1;
      min-width:240px;
    }
    .foot-col{
      min-width:220px;
    }
    .foot-col h4{
      margin:0 0 10px;
      font-size:13px;
      font-weight:1100;
      letter-spacing:-.2px;
    }
    .foot-links{
      display:grid; gap:8px;
    }
    .foot-links a{
      color:#243144;
      font-weight:850;
      font-size:12px;
      padding:8px 10px;
      border-radius:12px;
      border:1px solid rgba(18,24,38,.08);
      background:rgba(255,255,255,.60);
      transition:transform .15s ease, border-color .15s ease;
    }
    .foot-links a:hover{
      transform:translateY(-2px);
      border-color:rgba(125,84,255,.22);
    }

    .bottom-bar{
      margin-top:16px;
      padding-top:14px;
      border-top:1px solid rgba(18,24,38,.08);
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
    }
    .bottom-bar .legal{
      color:var(--muted);
      font-weight:900;
      font-size:12px;
    }
    .to-top{
      border-radius:14px;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.70);
      padding:10px 12px;
      cursor:pointer;
      font-weight:1000;
      font-size:12px;
      display:inline-flex;
      align-items:center;
      gap:10px;
      transition:transform .15s ease, border-color .15s ease;
      user-select:none;
    }
    .to-top:hover{transform:translateY(-2px); border-color:rgba(125,84,255,.22)}
    .to-top svg{width:16px; height:16px}

    .floating{
      position:fixed;
      right:16px;
      bottom:18px;
      z-index:70;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
      pointer-events:none;
    }
    .float-btn{
      pointer-events:auto;
      display:inline-flex;
      align-items:center;
      gap:10px;
      border-radius:16px;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.78);
      backdrop-filter: blur(10px);
      padding:12px 14px;
      box-shadow:0 16px 44px rgba(18,24,38,.12);
      cursor:pointer;
      user-select:none;
      transition:transform .15s ease, border-color .15s ease;
    }
    .float-btn:hover{transform:translateY(-2px); border-color:rgba(125,84,255,.22)}
    .float-btn .txt{
      display:flex; flex-direction:column; gap:2px;
      line-height:1.1;
    }
    .float-btn .txt b{
      font-size:13px;
      letter-spacing:-.2px;
    }
    .float-btn .txt span{
      color:var(--muted);
      font-weight:850;
      font-size:12px;
      white-space:nowrap;
    }
    .float-btn svg{width:18px; height:18px}

    .qr-pop{
      pointer-events:none;
      opacity:0;
      transform:translateY(8px);
      transition:opacity .18s ease, transform .18s ease;
      position:absolute;
      right:0;
      bottom:64px;
      width:230px;
      border-radius:18px;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.92);
      box-shadow:0 20px 60px rgba(18,24,38,.14);
      overflow:hidden;
    }
    .qr-pop .qr{
      padding:14px;
      display:grid; gap:10px;
    }
    .qr-pop .qr h5{
      margin:0;
      font-size:13px;
      font-weight:1100;
      letter-spacing:-.2px;
    }
    .qr-pop .qr p{
      margin:0;
      color:var(--muted);
      font-size:12px;
      font-weight:850;
    }
    .qr-pop img{
      width:100%;
      height:auto;
      display:block;
      border-radius:14px;
      border:1px solid rgba(18,24,38,.10);
      background:#fff;
    }
    .floating:hover .qr-pop{
      pointer-events:auto;
      opacity:1;
      transform:translateY(0);
    }

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

    .anchor{
      position:relative;
      top:-86px;
      height:0;
      width:0;
      overflow:hidden;
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; gap:14px}
      h1{font-size:32px}
      .grid-3{grid-template-columns: 1fr; }
      .steps{grid-template-columns: 1fr 1fr}
      .gallery{grid-template-columns: 1fr}
      .faq{grid-template-columns: 1fr}
      .comments{grid-template-columns: 1fr}
      .articles{grid-template-columns: 1fr}
      .network{grid-template-columns: 1fr}
      .form-inner{grid-template-columns: 1fr}
      .metrics{grid-template-columns: 1fr 1fr}
      .nav-links{display:none}
      .nav-cta .btn-quiet{display:none}
      .menu-btn{display:flex}
      .mobile-panel{display:block}
      .mobile-panel[data-open="false"]{display:none}
      .mobile-panel[data-open="true"]{display:block}
      .meta-sep{display:block}
    }
    @media (max-width: 520px){
      .metrics{grid-template-columns: 1fr}
      .steps{grid-template-columns: 1fr}
      h1{font-size:28px}
      .brand{min-width:auto}
      .floating{right:12px; bottom:14px}
      .float-btn .txt span{display:none}
    }
    @media (prefers-reduced-motion: reduce){
      *{transition:none !important; animation:none !important; scroll-behavior:auto !important}
    }