:root{
      --bg0:#f6fbff;
      --bg1:#ffffff;
      --text:#0f172a;
      --muted:#475569;
      --muted2:#64748b;
      --line:rgba(15,23,42,.12);
      --card:rgba(255,255,255,.82);
      --card2:#ffffff;
      --shadow:0 14px 40px rgba(2, 18, 43, .10);
      --shadow2:0 10px 26px rgba(2,18,43,.10);
      --brand1:#00c2ff;
      --brand2:#10b981;
      --brand3:#4f46e5;
      --brand4:#06b6d4;
      --accent:#06b6d4;
      --focus:rgba(6,182,212,.25);
      --btn:#0ea5e9;
      --btn2:#10b981;
      --warn:#f59e0b;
      --radius:18px;
      --radius2:14px;
      --max:1120px;
      --gap:16px;
      --gap2:22px;
      --navh:72px;
    }
    *{box-sizing:border-box}
    html,body{height:100%}
    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 SC", "WenQuanYi Micro Hei", sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 420px at 10% -10%, rgba(16,185,129,.18), transparent 55%),
        radial-gradient(760px 380px at 90% 0%, rgba(14,165,233,.20), transparent 55%),
        radial-gradient(780px 380px at 60% 40%, rgba(79,70,229,.10), transparent 60%),
        linear-gradient(180deg, #f4fbff 0%, #ffffff 40%, #f7fafc 100%);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    .container{max-width:var(--max); margin:0 auto; padding:0 20px;}
    .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
    }
    .skip-link{
      position:absolute;left:12px;top:12px;transform:translateY(-160%);background:#0b1220;color:#fff;padding:10px 12px;border-radius:12px;z-index:9999;
      transition:transform .2s ease;
    }
    .skip-link:focus{transform:translateY(0); outline:none; box-shadow:0 0 0 4px var(--focus);}
    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter:saturate(1.2) blur(10px);
      background:rgba(246,251,255,.72);
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .nav-wrap{height:var(--navh); display:flex; align-items:center; justify-content:space-between; gap:14px;}
    .brand{display:flex; align-items:center; gap:12px; min-width:210px;}
    .brand img{width:34px; height:34px; border-radius:10px; box-shadow:0 10px 20px rgba(2,18,43,.12)}
    .brand .brand-text{display:flex; flex-direction:column; line-height:1.05}
    .brand .brand-text strong{font-size:14px; letter-spacing:.2px}
    .brand .brand-text span{font-size:12px; color:var(--muted2)}
    nav{display:flex; align-items:center; gap:10px;}
    .nav-links{display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end; max-width:620px;}
    .nav-links a{
      font-size:13px; color:rgba(15,23,42,.84);
      padding:10px 10px; border-radius:12px;
      transition:background .2s ease, transform .2s ease, color .2s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{background:rgba(6,182,212,.10); color:rgba(2,18,43,1); transform:translateY(-1px)}
    .nav-cta{display:flex; align-items:center; gap:10px; justify-content:flex-end;}
    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      border-radius:14px; padding:11px 14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.7);
      color:rgba(2,18,43,.94);
      font-weight:650; font-size:13px;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
      user-select:none;
    }
    .btn:hover{transform:translateY(-1px); box-shadow:0 12px 26px rgba(2,18,43,.10); border-color:rgba(6,182,212,.28)}
    .btn-primary{
      background:linear-gradient(135deg, rgba(14,165,233,.95), rgba(79,70,229,.92));
      color:#fff; border-color:rgba(79,70,229,.25);
      box-shadow:0 16px 40px rgba(14,165,233,.20);
    }
    .btn-primary:hover{box-shadow:0 20px 50px rgba(14,165,233,.26)}
    .btn-ghost{
      background:rgba(255,255,255,.55);
    }
    .btn-small{padding:9px 12px; border-radius:12px; font-size:12.5px; gap:8px;}
    .icon-dot{
      width:10px; height:10px; border-radius:50%;
      background:radial-gradient(circle at 30% 30%, #fff 0%, rgba(255,255,255,.55) 20%, rgba(255,255,255,0) 60%), linear-gradient(180deg, var(--brand1), var(--brand3));
      box-shadow:0 0 0 4px rgba(14,165,233,.15);
    }

    .mobile-toggle{
      display:none;
      border:1px solid rgba(15,23,42,.12);
      background:rgba(255,255,255,.65);
      padding:10px 12px; border-radius:14px;
      align-items:center; justify-content:center;
      gap:10px;
    }
    .burger{width:18px; height:12px; position:relative}
    .burger span{
      position:absolute; left:0; right:0; height:2px; border-radius:2px; background:rgba(15,23,42,.80);
      transition:transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .burger span:nth-child(1){top:0}
    .burger span:nth-child(2){top:5px}
    .burger span:nth-child(3){top:10px}
    .mobile-toggle[aria-expanded="true"] .burger span:nth-child(1){top:5px; transform:rotate(45deg)}
    .mobile-toggle[aria-expanded="true"] .burger span:nth-child(2){opacity:0}
    .mobile-toggle[aria-expanded="true"] .burger span:nth-child(3){top:5px; transform:rotate(-45deg)}
    .mobile-menu{
      display:none;
      padding:12px 0 18px;
    }
    .mobile-menu .mobile-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
    }
    .mobile-menu a{
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.55);
      font-size:13px;
      color:rgba(15,23,42,.9);
      transition:transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .mobile-menu a:hover{transform:translateY(-1px); border-color:rgba(6,182,212,.28); background:rgba(6,182,212,.08)}
    .mobile-actions{
      display:flex; gap:10px; margin-top:12px; flex-wrap:wrap;
    }

    .hero{
      padding:34px 0 18px;
      position:relative;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:22px;
      align-items:stretch;
    }
    .hero-left{
      padding:18px 0 10px;
    }
    .kicker{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(6,182,212,.22);
      background:rgba(255,255,255,.62);
      box-shadow:0 10px 26px rgba(2,18,43,.06);
    }
    .kicker b{font-size:12.5px}
    .kicker span{font-size:12.5px; color:rgba(71,85,105,.95)}
    h1{
      margin:14px 0 10px;
      font-size:40px;
      line-height:1.1;
      letter-spacing:-.6px;
    }
    .lead{
      margin:0;
      max-width:56ch;
      color:var(--muted);
      font-size:15.5px;
      line-height:1.7;
    }
    .hero-actions{
      display:flex; gap:12px; flex-wrap:wrap; margin-top:18px; align-items:center;
    }
    .trust-row{
      margin-top:14px;
      display:flex; align-items:center; gap:14px; flex-wrap:wrap;
      color:var(--muted2);
      font-size:13px;
    }
    .trust-chip{
      display:flex; align-items:center; gap:10px;
      padding:9px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.58);
      border:1px solid rgba(15,23,42,.10);
    }
    .chip-ico{
      width:28px; height:28px; border-radius:10px;
      background:linear-gradient(180deg, rgba(16,185,129,.22), rgba(14,165,233,.18));
      border:1px solid rgba(6,182,212,.18);
      display:flex; align-items:center; justify-content:center;
      color:rgba(2,18,43,.92);
    }
    .chip-ico svg{width:16px; height:16px}
    .hero-right{
      border-radius:var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(650px 260px at 20% 0%, rgba(14,165,233,.20), transparent 60%),
        radial-gradient(620px 320px at 85% 20%, rgba(79,70,229,.14), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.62));
      box-shadow:var(--shadow2);
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .hero-right::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        linear-gradient(115deg, rgba(14,165,233,.0) 20%, rgba(14,165,233,.12) 45%, rgba(79,70,229,.12) 70%, rgba(16,185,129,.0) 90%);
      transform:translateX(-40%);
      animation: shine 5.5s ease-in-out infinite;
      pointer-events:none;
      opacity:.9;
    }
    @keyframes shine{
      0%{transform:translateX(-55%)}
      45%{transform:translateX(10%)}
      100%{transform:translateX(55%)}
    }
    .hero-panel{
      position:relative;
      z-index:1;
      border-radius:16px;
      background:rgba(255,255,255,.66);
      border:1px solid rgba(15,23,42,.08);
      padding:14px;
      display:flex; flex-direction:column; gap:12px;
    }
    .panel-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .panel-top .title{display:flex; flex-direction:column; gap:5px}
    .panel-top .title b{font-size:14px}
    .panel-top .title span{font-size:12.5px; color:var(--muted2); line-height:1.4}
    .status-badge{
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(16,185,129,.20);
      background:rgba(16,185,129,.08);
      color:rgba(2,18,43,.92);
      font-weight:700;
      font-size:12.8px;
      white-space:nowrap;
    }
    .pulse{
      width:10px; height:10px; border-radius:50%;
      background:linear-gradient(180deg, rgba(16,185,129,1), rgba(14,165,233,1));
      box-shadow:0 0 0 0 rgba(16,185,129,.40);
      animation:pulse 1.8s ease-in-out infinite;
    }
    @keyframes pulse{
      0%{box-shadow:0 0 0 0 rgba(16,185,129,.35)}
      70%{box-shadow:0 0 0 14px rgba(16,185,129,0)}
      100%{box-shadow:0 0 0 0 rgba(16,185,129,0)}
    }
    .stats{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
    }
    .stat{
      border-radius:14px;
      border:1px solid rgba(15,23,42,.08);
      background:rgba(255,255,255,.64);
      padding:12px;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .stat:hover{
      transform:translateY(-2px);
      box-shadow:0 16px 40px rgba(2,18,43,.10);
      border-color:rgba(6,182,212,.24);
    }
    .stat .num{font-weight:900; font-size:18px; letter-spacing:-.3px}
    .stat .lab{margin-top:4px; font-size:12.5px; color:var(--muted2); line-height:1.35}
    .model-strip{
      display:flex; flex-wrap:wrap; gap:8px;
      border-top:1px dashed rgba(15,23,42,.14);
      padding-top:12px;
    }
    .pill{
      font-size:12px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.62);
      color:rgba(15,23,42,.88);
      max-width:100%;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    main{padding:12px 0 30px}
    section{padding:26px 0}
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px; flex-wrap:wrap;
      margin-bottom:16px;
    }
    .section-title{
      display:flex; flex-direction:column; gap:8px;
    }
    .section-title h2{
      margin:0;
      font-size:26px; letter-spacing:-.3px;
    }
    .section-title p{
      margin:0;
      color:var(--muted);
      line-height:1.7;
      font-size:14.5px;
      max-width:70ch;
    }
    .right-quick{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap; justify-content:flex-end;
    }

    .grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
    .grid-4{display:grid; grid-template-columns:repeat(4,1fr); gap:14px}
    .grid-2{display:grid; grid-template-columns:repeat(2,1fr); gap:14px}
    .card{
      border-radius:var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.68);
      box-shadow:0 10px 26px rgba(2,18,43,.06);
      padding:14px;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
      height:100%;
    }
    .card:hover{
      transform:translateY(-3px);
      box-shadow:0 18px 46px rgba(2,18,43,.10);
      border-color:rgba(6,182,212,.26);
      background:rgba(255,255,255,.82);
    }
    .card .top{
      display:flex; align-items:flex-start; gap:12px;
    }
    .badge-ico{
      width:42px; height:42px; border-radius:14px;
      background:linear-gradient(180deg, rgba(14,165,233,.18), rgba(79,70,229,.10));
      border:1px solid rgba(6,182,212,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .badge-ico svg{width:20px; height:20px}
    .card h3{
      margin:0;
      font-size:15.5px;
      letter-spacing:-.1px;
    }
    .card p{
      margin:8px 0 0;
      color:var(--muted);
      line-height:1.7;
      font-size:13.6px;
    }
    .list{
      display:flex; flex-direction:column; gap:10px; margin-top:10px;
      padding-left:18px;
    }
    .list li{
      color:rgba(71,85,105,.98);
      line-height:1.7;
      font-size:13.6px;
    }

    .steps{
      display:grid; grid-template-columns:repeat(4,1fr); gap:14px;
      counter-reset:step;
    }
    .step{
      position:relative;
      padding-left:54px;
    }
    .step::before{
      counter-increment:step;
      content: counter(step);
      position:absolute; left:14px; top:14px;
      width:34px; height:34px; border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      font-weight:900; font-size:13px;
      color:#042033;
      border:1px solid rgba(6,182,212,.22);
      background:linear-gradient(180deg, rgba(14,165,233,.18), rgba(79,70,229,.10));
    }
    .step h3{margin-top:4px}
    .step p{margin-top:8px}

    .compare-wrap{
      border-radius:var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(750px 280px at 10% 0%, rgba(14,165,233,.12), transparent 60%),
        radial-gradient(650px 320px at 90% 20%, rgba(16,185,129,.12), transparent 60%),
        rgba(255,255,255,.68);
      box-shadow:0 18px 46px rgba(2,18,43,.08);
      padding:16px;
    }
    .compare-grid{
      display:grid; grid-template-columns: 1fr;
      gap:12px;
    }
    .compare-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      overflow:hidden;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.72);
    }
    .compare-table th, .compare-table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(15,23,42,.08);
      vertical-align:top;
      font-size:13.6px;
      line-height:1.6;
    }
    .compare-table th{
      text-align:left;
      font-size:13px;
      color:rgba(71,85,105,.95);
      background:rgba(255,255,255,.68);
      white-space:nowrap;
    }
    .compare-table tr:last-child td{border-bottom:none}
    .star{
      display:inline-flex; align-items:center; gap:8px; flex-wrap:wrap;
      margin-top:4px;
    }
    .stars{
      display:inline-flex; gap:3px; align-items:center;
    }
    .star i{
      width:14px; height:14px; border-radius:3px; display:inline-block;
      background:linear-gradient(180deg, #fbbf24, #f59e0b);
      box-shadow:0 0 0 3px rgba(245,158,11,.14);
    }
    .score{
      font-weight:950; letter-spacing:-.3px; font-size:18px;
    }
    .tag{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px; border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.60);
      font-size:12.5px; color:rgba(15,23,42,.88);
      margin:4px 6px 0 0;
      white-space:nowrap;
    }
    .tag.good{border-color:rgba(16,185,129,.22); background:rgba(16,185,129,.10)}
    .tag.info{border-color:rgba(6,182,212,.22); background:rgba(6,182,212,.10)}
    .tag.purple{border-color:rgba(79,70,229,.20); background:rgba(79,70,229,.10)}
    .tag.warn{border-color:rgba(245,158,11,.24); background:rgba(245,158,11,.10)}

    .segmented{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
    }
    .seg{
      padding:10px 12px; border-radius:14px; border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.62);
      font-weight:700; font-size:13px;
      transition:transform .2s ease, background .2s ease, border-color .2s ease;
      cursor:pointer;
      user-select:none;
    }
    .seg[aria-pressed="true"]{
      border-color:rgba(6,182,212,.30);
      background:rgba(6,182,212,.12);
    }
    .seg:hover{transform:translateY(-1px)}
    .compare-summary{
      display:grid; grid-template-columns: 1.1fr .9fr; gap:14px; align-items:stretch;
      margin-top:12px;
    }
    .summary-card{
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.70);
      padding:14px;
    }
    .summary-card h3{margin:0; font-size:15.5px}
    .summary-card p{margin:8px 0 0; color:var(--muted); line-height:1.7; font-size:13.6px}
    .bullets{
      margin:12px 0 0; padding-left:18px; display:flex; flex-direction:column; gap:8px;
      color:rgba(71,85,105,.98); font-size:13.6px; line-height:1.7
    }
    .bullets li{position:relative}
    .bullets li::marker{color:rgba(6,182,212,.85)}

    .timeline{
      display:grid; grid-template-columns:1fr; gap:12px;
    }
    .time-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px; border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.68);
    }
    .time-dot{
      width:12px; height:12px; border-radius:50%;
      margin-top:6px;
      background:linear-gradient(180deg, rgba(14,165,233,1), rgba(79,70,229,1));
      box-shadow:0 0 0 4px rgba(14,165,233,.16);
      flex:0 0 auto;
    }
    .time-item b{display:block; font-size:14px}
    .time-item span{display:block; margin-top:4px; color:var(--muted); line-height:1.7; font-size:13.6px}

    .tabs{
      border-radius:var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.68);
      box-shadow:0 12px 30px rgba(2,18,43,.06);
      overflow:hidden;
    }
    .tab-head{
      display:flex; gap:8px; flex-wrap:wrap; padding:14px;
      border-bottom:1px solid rgba(15,23,42,.08);
      align-items:center;
      justify-content:space-between;
    }
    .tab-head .left{display:flex; flex-direction:column; gap:6px}
    .tab-head .left b{font-size:15px}
    .tab-head .left span{color:var(--muted2); font-size:13px; line-height:1.5}
    .tab-body{padding:14px}
    .tab-grid{display:grid; grid-template-columns:1fr; gap:12px}
    .match-item{
      border-radius:16px; padding:14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.72);
      transition:transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .match-item:hover{transform:translateY(-2px); border-color:rgba(6,182,212,.24); background:rgba(255,255,255,.86)}
    .match-top{display:flex; gap:12px; align-items:flex-start; justify-content:space-between; flex-wrap:wrap}
    .match-top b{font-size:14.5px}
    .mini-rate{display:flex; gap:10px; align-items:center; color:var(--muted2); font-size:12.8px}
    .mini-rate .bar{
      width:120px; height:8px; border-radius:999px;
      background:rgba(15,23,42,.08);
      overflow:hidden;
      border:1px solid rgba(15,23,42,.06);
    }
    .mini-rate .bar i{
      display:block; height:100%;
      background:linear-gradient(90deg, rgba(14,165,233,.95), rgba(79,70,229,.92));
      border-radius:999px;
    }
    .match-item p{margin:10px 0 0; color:var(--muted); line-height:1.7; font-size:13.6px}
    .match-tags{margin-top:10px; display:flex; flex-wrap:wrap; gap:8px}
    .match-tags .tag{margin:0}

    .gallery{
      display:grid; grid-template-columns: 1.2fr .8fr; gap:14px; align-items:stretch;
    }
    .poster{
      border-radius:var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.68);
      box-shadow:0 18px 44px rgba(2,18,43,.08);
      padding:14px;
      position:relative;
      overflow:hidden;
    }
    .poster::after{
      content:"";
      position:absolute; right:-120px; top:-120px;
      width:260px; height:260px; border-radius:50%;
      background:radial-gradient(circle at 30% 30%, rgba(14,165,233,.22), rgba(79,70,229,.10) 40%, transparent 62%);
      pointer-events:none;
    }
    .poster .inner{position:relative; z-index:1}
    .poster-top{display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap}
    .poster h3{margin:0; font-size:16px}
    .poster p{margin:10px 0 0; color:var(--muted); line-height:1.7; font-size:13.6px}
    .art-grid{display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:12px}
    .thumb{
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.68);
      padding:10px;
      display:flex;
      flex-direction:column;
      gap:8px;
      transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
      min-height:160px;
    }
    .thumb:hover{transform:translateY(-3px); border-color:rgba(6,182,212,.22); box-shadow:0 18px 42px rgba(2,18,43,.10)}
    .thumb .imgbox{
      width:100%; aspect-ratio:16/10; border-radius:12px; overflow:hidden;
      background:linear-gradient(135deg, rgba(14,165,233,.14), rgba(79,70,229,.12));
      border:1px solid rgba(15,23,42,.08);
      display:flex; align-items:center; justify-content:center;
    }
    .thumb .imgbox img{width:100%; height:100%; object-fit:cover; display:block}
    .thumb b{font-size:13.8px}
    .thumb span{font-size:12.8px; color:var(--muted2); line-height:1.5}

    .side-stack{display:flex; flex-direction:column; gap:14px}
    .side-card{border-radius:var(--radius); border:1px solid rgba(15,23,42,.10); background:rgba(255,255,255,.68); box-shadow:0 12px 30px rgba(2,18,43,.06); padding:14px}
    .side-card h3{margin:0; font-size:16px}
    .side-card p{margin:10px 0 0; color:var(--muted); line-height:1.7; font-size:13.6px}
    .price-row{
      margin-top:12px;
      display:grid; grid-template-columns:1fr; gap:10px;
    }
    .price-item{
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.74);
      padding:12px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .price-item b{font-size:13.8px}
    .price-item span{display:block; margin-top:4px; color:var(--muted2); font-size:12.8px; line-height:1.5}
    .price-right{
      font-weight:950; font-size:16px; letter-spacing:-.3px;
      background:linear-gradient(135deg, rgba(14,165,233,.95), rgba(79,70,229,.92));
      -webkit-background-clip:text; background-clip:text; color:transparent;
    }

    .article-list{
      display:grid; grid-template-columns:repeat(3,1fr); gap:14px;
    }
    .article{
      border-radius:var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.68);
      padding:14px;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .article:hover{transform:translateY(-3px); box-shadow:0 18px 42px rgba(2,18,43,.10); border-color:rgba(6,182,212,.22)}
    .article .meta{
      display:flex; align-items:center; justify-content:space-between; gap:10px; color:var(--muted2); font-size:12.5px;
    }
    .article h3{margin:10px 0 0; font-size:15px; letter-spacing:-.15px}
    .article p{margin:10px 0 0; color:var(--muted); line-height:1.7; font-size:13.6px}
    .article a{
      display:inline-flex; align-items:center; gap:10px; margin-top:12px;
      font-weight:750; font-size:13px;
      padding:10px 12px; border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.62);
      transition:transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .article a:hover{transform:translateY(-1px); border-color:rgba(6,182,212,.24); background:rgba(6,182,212,.08)}
    .arrow{
      width:18px; height:18px; border-radius:6px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.7);
      display:flex; align-items:center; justify-content:center;
      transition:transform .2s ease;
    }
    .article a:hover .arrow{transform:translateX(2px)}

    .form-wrap{
      border-radius:var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(780px 260px at 10% 0%, rgba(14,165,233,.14), transparent 60%),
        radial-gradient(720px 320px at 90% 20%, rgba(16,185,129,.12), transparent 60%),
        rgba(255,255,255,.68);
      box-shadow:0 18px 46px rgba(2,18,43,.08);
      overflow:hidden;
    }
    .form-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:0;
    }
    .form-left{
      padding:16px;
      border-right:1px solid rgba(15,23,42,.08);
    }
    .form-left h2{margin:0; font-size:22px}
    .form-left p{margin:10px 0 0; color:var(--muted); line-height:1.7; font-size:13.6px}
    .form-left .note{
      margin-top:14px;
      border-radius:16px;
      border:1px dashed rgba(15,23,42,.18);
      background:rgba(255,255,255,.60);
      padding:12px;
    }
    .form-left .note b{display:block; font-size:13.8px}
    .form-left .note span{display:block; margin-top:8px; color:var(--muted2); line-height:1.7; font-size:13.1px}
    form{
      padding:16px;
    }
    .field-row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
    label{
      display:flex; flex-direction:column; gap:8px;
      font-size:13px;
      color:rgba(71,85,105,.98);
      font-weight:650;
    }
    input, select, textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background:rgba(255,255,255,.78);
      padding:12px 12px;
      font-size:14px;
      color:var(--text);
      outline:none;
      transition:box-shadow .2s ease, border-color .2s ease, background .2s ease;
    }
    textarea{min-height:110px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color:rgba(6,182,212,.38);
      box-shadow:0 0 0 4px var(--focus);
      background:#fff;
    }
    .form-actions{
      display:flex; gap:12px; align-items:center; flex-wrap:wrap;
      margin-top:12px; justify-content:space-between;
    }
    .fineprint{
      color:var(--muted2);
      font-size:12.8px;
      line-height:1.6;
      max-width:48ch;
    }
    .toast{
      position:fixed; left:50%; bottom:22px;
      transform:translateX(-50%) translateY(16px);
      opacity:0; pointer-events:none;
      background:#0b1220; color:#fff;
      padding:12px 14px; border-radius:16px;
      box-shadow:0 20px 60px rgba(0,0,0,.28);
      transition:opacity .25s ease, transform .25s ease;
      z-index:999;
      font-weight:700;
      font-size:13.5px;
    }
    .toast.show{
      opacity:1; pointer-events:auto;
      transform:translateX(-50%) translateY(0);
    }

    .faq{
      border-radius:var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.68);
      box-shadow:0 12px 30px rgba(2,18,43,.06);
      overflow:hidden;
    }
    details.faq-item{
      border-top:1px solid rgba(15,23,42,.08);
      padding:0 14px;
      background:rgba(255,255,255,.65);
    }
    details.faq-item:first-child{border-top:none}
    details.faq-item summary{
      cursor:pointer;
      padding:16px 0;
      list-style:none;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    details.faq-item summary::-webkit-details-marker{display:none}
    .q{
      font-weight:850; font-size:14.6px; letter-spacing:-.12px;
      line-height:1.45;
    }
    .caret{
      width:34px; height:34px; border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.72);
      display:flex; align-items:center; justify-content:center;
      transition:transform .22s ease, border-color .2s ease;
      flex:0 0 auto;
      margin-top:-3px;
    }
    details[open] .caret{transform:rotate(180deg); border-color:rgba(6,182,212,.28)}
    .a{
      padding:0 0 16px;
      color:var(--muted);
      line-height:1.8;
      font-size:13.7px;
    }
    .a strong{color:rgba(15,23,42,.92)}
    .faq-note{
      padding:14px;
      border-bottom:1px solid rgba(15,23,42,.08);
      background:linear-gradient(135deg, rgba(14,165,233,.10), rgba(79,70,229,.08));
    }
    .faq-note b{display:block; font-size:16px}
    .faq-note span{display:block; margin-top:8px; color:var(--muted); line-height:1.7; font-size:13.6px}
    .badge-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}

    .review-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
    .review{
      border-radius:var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.68);
      padding:14px;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      height:100%;
      display:flex; flex-direction:column; gap:10px;
    }
    .review:hover{transform:translateY(-3px); box-shadow:0 18px 42px rgba(2,18,43,.10); border-color:rgba(6,182,212,.22)}
    .review .who{display:flex; align-items:center; justify-content:space-between; gap:10px}
    .avatar{
      width:38px; height:38px; border-radius:16px;
      background:linear-gradient(180deg, rgba(14,165,233,.18), rgba(79,70,229,.12));
      border:1px solid rgba(6,182,212,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:rgba(2,18,43,.92);
    }
    .who b{font-size:14.2px}
    .who span{display:block; color:var(--muted2); font-size:12.8px; margin-top:4px}
    .quote{
      color:var(--muted);
      line-height:1.8;
      font-size:13.7px;
      margin:0;
    }
    .review .foot{
      margin-top:auto;
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
    }

    .tag-cloud{
      border-radius:var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.68);
      box-shadow:0 12px 30px rgba(2,18,43,.06);
      padding:14px;
    }
    .tag-cloud .row{display:flex; gap:10px; flex-wrap:wrap}
    .t{
      padding:10px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.66);
      border:1px solid rgba(15,23,42,.10);
      font-size:13px;
      color:rgba(15,23,42,.88);
      transition:transform .2s ease, border-color .2s ease, background .2s ease;
      user-select:none;
    }
    .t:hover{transform:translateY(-2px); border-color:rgba(6,182,212,.26); background:rgba(6,182,212,.08)}
    .net-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
    .net{
      border-radius:var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.68);
      padding:14px;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      overflow:hidden;
      position:relative;
    }
    .net::after{
      content:"";
      position:absolute; inset:auto -40px -40px auto;
      width:160px; height:160px; border-radius:50%;
      background:radial-gradient(circle at 30% 30%, rgba(14,165,233,.18), rgba(79,70,229,.10) 45%, transparent 68%);
      pointer-events:none;
    }
    .net:hover{transform:translateY(-3px); box-shadow:0 18px 42px rgba(2,18,43,.10); border-color:rgba(6,182,212,.22)}
    .net b{display:block; font-size:15.5px}
    .net p{margin:10px 0 0; color:var(--muted); line-height:1.7; font-size:13.6px}
    .small-list{
      margin:12px 0 0; padding-left:18px; color:rgba(71,85,105,.98);
      font-size:13.6px; line-height:1.7; display:flex; flex-direction:column; gap:8px; position:relative; z-index:1;
    }

    .footer{
      padding:18px 0 26px;
      border-top:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.60);
    }
    .footer .foot-grid{
      display:grid; grid-template-columns: 1.2fr 1fr 1fr; gap:14px; align-items:flex-start;
    }
    .foot-card{
      border-radius:var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.72);
      padding:14px;
    }
    .foot-card h3{margin:0; font-size:15.5px}
    .foot-card p{margin:10px 0 0; color:var(--muted); line-height:1.7; font-size:13.6px}
    .foot-links{margin-top:10px; display:flex; flex-direction:column; gap:8px}
    .foot-links a{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 12px; border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.66);
      font-size:13px;
      transition:transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .foot-links a:hover{transform:translateY(-1px); border-color:rgba(6,182,212,.24); background:rgba(6,182,212,.08)}
    .foot-links .dot{
      width:10px; height:10px; border-radius:50%;
      background:linear-gradient(180deg, rgba(14,165,233,1), rgba(79,70,229,1));
      box-shadow:0 0 0 4px rgba(14,165,233,.14);
    }
    .copyright{
      margin-top:12px;
      color:var(--muted2);
      font-size:12.8px;
      line-height:1.6;
      text-align:center;
    }

    .float-cs{
      position:fixed; right:16px; bottom:16px;
      z-index:80;
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-end;
    }
    .float-cs a{
      display:flex; align-items:center; gap:12px;
      padding:12px 14px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.12);
      background:rgba(255,255,255,.78);
      box-shadow:0 18px 46px rgba(2,18,43,.14);
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
      font-weight:850; font-size:13.2px;
      color:rgba(2,18,43,.94);
      max-width:250px;
    }
    .float-cs a:hover{transform:translateY(-3px); border-color:rgba(6,182,212,.26); background:#fff}
    .qr{
      width:34px; height:34px; border-radius:14px;
      background:linear-gradient(180deg, rgba(16,185,129,.18), rgba(14,165,233,.14));
      border:1px solid rgba(16,185,129,.22);
      display:flex; align-items:center; justify-content:center;
    }
    .qr img{width:22px; height:22px; object-fit:cover; border-radius:6px}
    .backtop{
      display:inline-flex; align-items:center; justify-content:center;
      width:44px; height:44px; border-radius:18px;
      border:1px solid rgba(15,23,42,.12);
      background:rgba(255,255,255,.78);
      box-shadow:0 18px 46px rgba(2,18,43,.14);
      transition:transform .2s ease, border-color .2s ease, background .2s ease, opacity .2s ease;
      opacity:0; pointer-events:none;
    }
    .backtop.show{opacity:1; pointer-events:auto}
    .backtop:hover{transform:translateY(-3px); border-color:rgba(6,182,212,.26); background:#fff}
    .backtop svg{width:18px; height:18px}

    .reveal{opacity:0; transform:translateY(10px); transition:opacity .6s ease, transform .6s ease}
    .reveal.show{opacity:1; transform:translateY(0)}
    @media (prefers-reduced-motion: reduce){
      .reveal{transition:none}
      header{backdrop-filter:none}
      .hero-right::before{animation:none}
      .pulse{animation:none}
      .reveal{opacity:1; transform:none}
    }

    @media (max-width: 980px){
      h1{font-size:34px}
      .hero-grid{grid-template-columns:1fr; gap:14px}
      .hero-right{padding:14px}
      .grid-3{grid-template-columns:1fr 1fr}
      .grid-4{grid-template-columns:1fr 1fr}
      .steps{grid-template-columns:1fr 1fr}
      .review-grid{grid-template-columns:1fr 1fr}
      .article-list{grid-template-columns:1fr 1fr}
      .gallery{grid-template-columns:1fr}
      .compare-summary{grid-template-columns:1fr}
      .form-grid{grid-template-columns:1fr}
      .form-left{border-right:none; border-bottom:1px solid rgba(15,23,42,.08)}
      .net-grid{grid-template-columns:1fr 1fr}
      .float-cs{right:12px; bottom:12px}
      .float-cs a{max-width:210px}
    }
    @media (max-width: 780px){
      .nav-links{display:none}
      .nav-cta .btn-ghost{display:none}
      .mobile-toggle{display:flex}
      .mobile-menu{display:block}
      .mobile-menu.show{display:block}
      .grid-3, .grid-4{grid-template-columns:1fr}
      .steps{grid-template-columns:1fr}
      .review-grid{grid-template-columns:1fr}
      .article-list{grid-template-columns:1fr}
      .net-grid{grid-template-columns:1fr}
      .field-row{grid-template-columns:1fr}
      .hero{padding:20px 0 12px}
      .hero-actions{margin-top:14px}
      .trust-row{margin-top:10px}
      .compare-table th, .compare-table td{font-size:13.2px}
      .compare-table{overflow:auto}
      .compare-table thead{display:none}
      .compare-table, .compare-table tbody, .compare-table tr, .compare-table td{display:block; width:100%}
      .compare-table tr{
        border-bottom:1px solid rgba(15,23,42,.08);
        padding:10px 0;
      }
      .compare-table td{border-bottom:none}
      .compare-table td::before{
        content:attr(data-label);
        display:block;
        color:var(--muted2);
        font-size:12.5px;
        margin-bottom:6px;
        font-weight:750;
      }
      .float-cs a{padding:11px 12px}
    }