:root{
      --bg0:#fbf7ff;
      --bg1:#ffffff;
      --text:#1f2937;
      --muted:#5b6777;
      --card:#ffffff;
      --border:rgba(20,35,55,.12);
      --shadow:0 14px 40px rgba(17,24,39,.10);
      --shadow2:0 10px 25px rgba(17,24,39,.10);
      --primary:#ff3d6e;
      --primary2:#6c3cff;
      --accent:#00b7ff;
      --ok:#00b37e;
      --warn:#ff8a00;
      --focus:rgba(255,61,110,.35);
      --radius:18px;
      --radius2:14px;
      --max:1120px;
      --gap:18px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans CJK SC","Helvetica Neue", Arial, "Apple Color Emoji","Segoe UI Emoji";
      color:var(--text);
      background:
        radial-gradient(900px 500px at 15% 0%, rgba(108,60,255,.10), transparent 60%),
        radial-gradient(900px 500px at 85% 10%, rgba(255,61,110,.11), transparent 55%),
        linear-gradient(180deg, var(--bg0), #ffffff 34%, #ffffff 100%);
    }
    a{color:inherit; text-decoration:none}
    img{display:block; max-width:100%; height:auto}
    .container{
      width:min(var(--max), calc(100% - 32px));
      margin:0 auto;
    }

    .topbar-wrap{
      position:sticky;
      top:0;
      z-index:60;
      backdrop-filter:saturate(140%) blur(10px);
      background:rgba(255,255,255,.72);
      border-bottom:1px solid rgba(20,35,55,.08);
    }
    .topbar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:220px;
    }
    .brand img{
      width:44px;
      height:44px;
      border-radius:12px;
      background:linear-gradient(135deg, rgba(255,61,110,.14), rgba(108,60,255,.14));
      box-shadow:0 10px 20px rgba(108,60,255,.10);
      object-fit:contain;
      padding:7px;
    }
    .brand .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brand .name{
      font-weight:850;
      letter-spacing:.2px;
      font-size:15.5px;
    }
    .brand .sub{
      font-size:12.5px;
      color:var(--muted);
      margin-top:4px;
      white-space:nowrap;
    }

    nav{
      display:flex;
      align-items:center;
      gap:10px;
      justify-content:flex-end;
      flex-wrap:nowrap;
    }
    .navlinks{
      display:flex;
      gap:14px;
      align-items:center;
    }
    .navlinks a{
      font-size:13px;
      color:rgba(31,41,55,.86);
      padding:8px 10px;
      border-radius:12px;
      transition:background .2s ease, transform .2s ease, color .2s ease;
      white-space:nowrap;
    }
    .navlinks a:hover{
      background:rgba(255,61,110,.10);
      color:rgba(31,41,55,1);
      transform:translateY(-1px);
    }
    .nav-cta{
      display:flex;
      gap:10px;
      align-items:center;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:10px 14px;
      border-radius:14px;
      border:1px solid rgba(20,35,55,.12);
      background:rgba(255,255,255,.86);
      color:rgba(31,41,55,.92);
      font-weight:700;
      font-size:13px;
      transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:focus{outline:none}
    .btn:focus-visible{
      box-shadow:0 0 0 4px var(--focus);
      border-color:rgba(255,61,110,.35);
    }
    .btn:hover{transform:translateY(-1px); box-shadow:0 14px 28px rgba(17,24,39,.10)}
    .btn-primary{
      border-color:rgba(255,61,110,.25);
      background:linear-gradient(135deg, rgba(255,61,110,.98), rgba(108,60,255,.92));
      color:#fff;
      box-shadow:0 16px 32px rgba(255,61,110,.22);
    }
    .btn-primary:hover{box-shadow:0 18px 40px rgba(255,61,110,.28)}
    .btn-soft{
      border-color:rgba(0,183,255,.20);
      background:linear-gradient(180deg, rgba(0,183,255,.10), rgba(0,183,255,.03));
    }
    .btn-ghost{
      background:transparent;
      border-color:rgba(20,35,55,.10);
    }

    .burger{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid rgba(20,35,55,.12);
      background:rgba(255,255,255,.8);
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition:transform .18s ease, box-shadow .18s ease;
    }
    .burger:hover{transform:translateY(-1px); box-shadow:0 14px 28px rgba(17,24,39,.10)}
    .burger svg{width:18px; height:18px}

    .mobile-drawer{
      display:none;
      padding:0 0 14px 0;
    }
    .mobile-drawer .panel{
      border:1px solid rgba(20,35,55,.10);
      background:rgba(255,255,255,.90);
      border-radius:18px;
      padding:12px;
      box-shadow:0 18px 44px rgba(17,24,39,.12);
    }
    .mobile-drawer .panel a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:12px 12px;
      border-radius:14px;
      font-size:14px;
      color:rgba(31,41,55,.92);
      border:1px solid transparent;
      transition:background .18s ease, border-color .18s ease;
    }
    .mobile-drawer .panel a:hover{
      background:rgba(255,61,110,.08);
      border-color:rgba(255,61,110,.14);
    }
    .mobile-drawer .panel .row{
      display:flex;
      gap:10px;
      padding:10px 6px 2px;
      flex-wrap:wrap;
    }

    header.hero{
      padding:26px 0 18px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:22px;
      align-items:stretch;
      padding:18px 0 10px;
    }
    .hero-card{
      border:1px solid rgba(20,35,55,.10);
      background:
        radial-gradient(900px 260px at 20% 0%, rgba(255,61,110,.14), transparent 58%),
        radial-gradient(800px 240px at 85% 15%, rgba(108,60,255,.14), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.70));
      border-radius:24px;
      padding:26px;
      box-shadow:0 18px 50px rgba(17,24,39,.10);
      position:relative;
      overflow:hidden;
    }
    .hero-card:before{
      content:"";
      position:absolute;
      inset:-2px -2px auto -2px;
      height:220px;
      background:
        linear-gradient(90deg, rgba(255,61,110,.22), rgba(108,60,255,.18), rgba(0,183,255,.14));
      filter:blur(26px);
      opacity:.55;
      pointer-events:none;
    }
    .hero-inner{position:relative}
    .kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(20,35,55,.10);
      background:rgba(255,255,255,.65);
      font-size:13px;
      font-weight:800;
      letter-spacing:.2px;
      color:rgba(31,41,55,.92);
      margin-bottom:14px;
    }
    .dot{
      width:10px; height:10px; border-radius:50%;
      background:linear-gradient(135deg, var(--primary), var(--primary2));
      box-shadow:0 10px 20px rgba(255,61,110,.25);
    }
    h1{
      margin:0;
      font-size:34px;
      line-height:1.14;
      letter-spacing:-.5px;
    }
    .lead{
      margin:14px 0 18px;
      color:var(--muted);
      font-size:15.5px;
      line-height:1.7;
      max-width:56ch;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      align-items:center;
      flex-wrap:wrap;
      margin-top:10px;
    }
    .btn .icon{
      width:16px; height:16px; display:inline-block;
    }
    .trustbar{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
      margin-top:18px;
      padding-top:14px;
      border-top:1px dashed rgba(20,35,55,.14);
    }
    .trust{
      display:flex; gap:10px; align-items:flex-start;
      min-width:190px;
    }
    .trust svg{width:20px; height:20px; margin-top:2px; flex:none}
    .trust .t{
      display:flex; flex-direction:column; gap:4px;
    }
    .trust .t b{font-size:13.5px}
    .trust .t span{font-size:12.5px; color:var(--muted); line-height:1.4}

    .hero-side{
      border-radius:24px;
      border:1px solid rgba(20,35,55,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.70));
      box-shadow:0 18px 50px rgba(17,24,39,.08);
      padding:18px;
      display:flex;
      flex-direction:column;
      gap:14px;
      overflow:hidden;
      position:relative;
    }
    .hero-side:after{
      content:"";
      position:absolute;
      right:-90px; top:-90px;
      width:220px; height:220px;
      background:radial-gradient(circle at 35% 35%, rgba(255,61,110,.26), rgba(108,60,255,.14), transparent 60%);
      filter:blur(2px);
      pointer-events:none;
    }
    .side-title{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
      position:relative;
    }
    .side-title h2{
      margin:0;
      font-size:15px;
      letter-spacing:.2px;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 10px;
      border-radius:999px;
      background:rgba(0,183,255,.10);
      border:1px solid rgba(0,183,255,.18);
      font-weight:800;
      font-size:12.5px;
      color:rgba(8,86,112,.95);
      white-space:nowrap;
    }
    .pill .spark{
      width:10px; height:10px; border-radius:3px;
      background:linear-gradient(135deg, rgba(0,183,255,.9), rgba(108,60,255,.85));
      box-shadow:0 14px 22px rgba(0,183,255,.18);
      transform:rotate(8deg);
    }

    .metrics{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      position:relative;
    }
    .metric{
      border:1px solid rgba(20,35,55,.10);
      background:rgba(255,255,255,.82);
      border-radius:18px;
      padding:14px 14px 12px;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      will-change:transform;
      min-height:92px;
    }
    .metric:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 40px rgba(17,24,39,.12);
      border-color:rgba(255,61,110,.18);
    }
    .metric .num{
      font-weight:950;
      font-size:22px;
      letter-spacing:-.3px;
    }
    .metric .label{
      margin-top:6px;
      color:var(--muted);
      font-size:12.8px;
      line-height:1.4;
    }
    .metric .tag{
      margin-top:10px;
      display:flex;
      align-items:center;
      gap:8px;
      color:rgba(31,41,55,.88);
      font-size:12.5px;
      font-weight:800;
    }
    .tag .mini{
      width:10px; height:10px; border-radius:50%;
      background:linear-gradient(135deg, rgba(255,61,110,.95), rgba(108,60,255,.95));
    }

    .side-bottom{
      border-top:1px dashed rgba(20,35,55,.14);
      padding-top:12px;
      display:flex;
      flex-direction:column;
      gap:10px;
      position:relative;
    }
    .model-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .chip{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,35,55,.10);
      background:rgba(255,255,255,.75);
      font-size:12.5px;
      color:rgba(31,41,55,.90);
      font-weight:750;
      transition:transform .18s ease, background .18s ease;
      white-space:nowrap;
    }
    .chip:hover{transform:translateY(-1px); background:rgba(255,61,110,.08)}

    .scrollhint{
      display:flex;
      align-items:center;
      gap:10px;
      color:var(--muted);
      font-size:12.8px;
      margin-top:4px;
    }
    .scrollhint .bar{
      width:86px; height:10px;
      border-radius:999px;
      border:1px solid rgba(20,35,55,.10);
      background:rgba(255,255,255,.75);
      position:relative;
      overflow:hidden;
    }
    .scrollhint .bar:after{
      content:"";
      position:absolute;
      inset:0;
      width:40%;
      background:linear-gradient(90deg, rgba(255,61,110,.0), rgba(255,61,110,.35), rgba(108,60,255,.35), rgba(255,61,110,.0));
      animation:shimmer 2.2s ease-in-out infinite;
      transform:translateX(-120%);
    }
    @keyframes shimmer{
      0%{transform:translateX(-120%)}
      60%{transform:translateX(170%)}
      100%{transform:translateX(170%)}
    }

    section{
      padding:44px 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:18px;
      margin-bottom:18px;
    }
    .section-head h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.2px;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      line-height:1.7;
      font-size:14.5px;
      max-width:60ch;
    }

    .cards-grid{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap:14px;
    }
    .card{
      grid-column: span 4;
      border:1px solid rgba(20,35,55,.10);
      background:rgba(255,255,255,.82);
      border-radius:20px;
      box-shadow:0 10px 26px rgba(17,24,39,.06);
      padding:16px;
      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 45px rgba(17,24,39,.12);
      border-color:rgba(255,61,110,.18);
    }
    .card .top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
      margin-bottom:10px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,35,55,.10);
      background:rgba(255,255,255,.72);
      font-weight:900;
      font-size:12.5px;
      color:rgba(31,41,55,.92);
      white-space:nowrap;
    }
    .badge .bicon{
      width:12px; height:12px;
      border-radius:4px;
      background:linear-gradient(135deg, rgba(255,61,110,.98), rgba(108,60,255,.92));
    }
    .card h3{
      margin:0;
      font-size:16px;
      letter-spacing:-.15px;
    }
    .card p{
      margin:10px 0 0;
      color:var(--muted);
      font-size:14px;
      line-height:1.65;
    }
    .card .list{
      margin:12px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .card .list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:rgba(31,41,55,.92);
      font-weight:720;
      font-size:13.3px;
    }
    .check{
      width:18px; height:18px;
      border-radius:6px;
      background:rgba(0,179,126,.12);
      border:1px solid rgba(0,179,126,.22);
      display:flex; align-items:center; justify-content:center;
      flex:none;
      margin-top:1px;
    }
    .check svg{width:12px; height:12px}

    .two-col{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:16px;
      align-items:start;
    }
    .panel{
      border:1px solid rgba(20,35,55,.10);
      background:rgba(255,255,255,.82);
      border-radius:22px;
      padding:16px;
      box-shadow:0 10px 26px rgba(17,24,39,.06);
    }

    .steps{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .step{
      display:flex;
      gap:14px;
      align-items:flex-start;
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(20,35,55,.10);
      background:rgba(255,255,255,.78);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .step:hover{transform:translateY(-2px); box-shadow:0 18px 45px rgba(17,24,39,.10); border-color:rgba(108,60,255,.18)}
    .step .n{
      width:36px; height:36px;
      border-radius:14px;
      background:linear-gradient(135deg, rgba(108,60,255,.18), rgba(255,61,110,.14));
      border:1px solid rgba(108,60,255,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
    }
    .step h3{
      margin:0;
      font-size:15.5px;
      letter-spacing:-.1px;
    }
    .step p{
      margin:8px 0 0;
      color:var(--muted);
      line-height:1.65;
      font-size:14px;
    }

    .compare-wrap{
      overflow:auto;
      border-radius:22px;
      border:1px solid rgba(20,35,55,.10);
      background:rgba(255,255,255,.82);
      box-shadow:0 10px 26px rgba(17,24,39,.06);
    }
    table{
      width:100%;
      min-width:820px;
      border-collapse:separate;
      border-spacing:0;
      font-size:14px;
    }
    thead th{
      position:sticky;
      top:0;
      background:linear-gradient(135deg, rgba(255,61,110,.12), rgba(108,60,255,.10));
      z-index:2;
      border-bottom:1px solid rgba(20,35,55,.10);
      color:rgba(31,41,55,.96);
      padding:14px 12px;
      text-align:left;
      font-weight:900;
      white-space:nowrap;
    }
    tbody td{
      padding:12px 12px;
      border-bottom:1px solid rgba(20,35,55,.07);
      color:rgba(31,41,55,.90);
      vertical-align:top;
    }
    tbody tr:hover td{background:rgba(255,61,110,.05)}
    .score{
      display:flex; flex-direction:column; gap:6px;
    }
    .stars{
      display:flex; gap:6px; align-items:center; flex-wrap:wrap;
    }
    .star{
      width:18px; height:18px;
      fill:rgba(255,138,0,.95);
      filter: drop-shadow(0 8px 10px rgba(255,138,0,.18));
    }
    .score .big{
      font-weight:950;
      font-size:22px;
      letter-spacing:-.3px;
    }
    .score .small{color:var(--muted); font-size:12.8px; line-height:1.4}

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .mini-card{
      border-radius:20px;
      border:1px solid rgba(20,35,55,.10);
      background:rgba(255,255,255,.82);
      padding:16px;
      box-shadow:0 10px 26px rgba(17,24,39,.06);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .mini-card:hover{transform:translateY(-2px); box-shadow:0 18px 45px rgba(17,24,39,.12); border-color:rgba(255,61,110,.18)}
    .mini-card h3{margin:0; font-size:15.5px}
    .mini-card p{margin:10px 0 0; color:var(--muted); line-height:1.65; font-size:14px}
    .kv{
      margin-top:12px;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .kv span{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,35,55,.10);
      background:rgba(255,255,255,.74);
      font-weight:850;
      font-size:12.5px;
      color:rgba(31,41,55,.92);
    }

    .timeline{
      display:grid;
      gap:12px;
    }
    .titem{
      display:grid;
      grid-template-columns: 110px 1fr;
      gap:12px;
      align-items:start;
      padding:14px;
      border-radius:20px;
      border:1px solid rgba(20,35,55,.10);
      background:rgba(255,255,255,.80);
    }
    .titem .when{
      font-weight:950;
      color:rgba(31,41,55,.95);
      background:linear-gradient(135deg, rgba(0,183,255,.14), rgba(108,60,255,.12));
      border:1px solid rgba(0,183,255,.22);
      padding:10px 12px;
      border-radius:16px;
      white-space:nowrap;
      text-align:center;
    }
    .titem h3{margin:0; font-size:15.5px}
    .titem p{margin:8px 0 0; color:var(--muted); font-size:14px; line-height:1.65}

    .gallery{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap:14px;
    }
    .media{
      grid-column: span 4;
      border-radius:22px;
      border:1px solid rgba(20,35,55,.10);
      overflow:hidden;
      background:rgba(255,255,255,.82);
      box-shadow:0 10px 26px rgba(17,24,39,.06);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .media:hover{transform:translateY(-2px); box-shadow:0 18px 45px rgba(17,24,39,.12); border-color:rgba(108,60,255,.18)}
    .media .imgwrap{
      padding:14px 14px 0;
    }
    .media .cap{
      padding:12px 14px 14px;
      display:flex;
      flex-direction:column;
      gap:6px;
    }
    .cap b{font-size:15.5px; letter-spacing:-.1px}
    .cap span{color:var(--muted); font-size:13.8px; line-height:1.6}

    .comments-grid{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap:14px;
    }
    .review{
      grid-column: span 4;
      border-radius:22px;
      border:1px solid rgba(20,35,55,.10);
      background:rgba(255,255,255,.82);
      box-shadow:0 10px 26px rgba(17,24,39,.06);
      padding:16px;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .review:before{
      content:"";
      position:absolute;
      inset:-1px auto auto -1px;
      width:120px; height:120px;
      background:radial-gradient(circle at 25% 25%, rgba(255,61,110,.20), rgba(108,60,255,.14), transparent 60%);
      opacity:.8;
      pointer-events:none;
    }
    .review:hover{transform:translateY(-2px); box-shadow:0 18px 45px rgba(17,24,39,.12); border-color:rgba(255,61,110,.18)}
    .review .head{
      position:relative;
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .avatar{
      width:38px; height:38px;
      border-radius:14px;
      background:linear-gradient(135deg, rgba(255,61,110,.18), rgba(108,60,255,.14));
      border:1px solid rgba(255,61,110,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:950; color:rgba(31,41,55,.92);
      flex:none;
    }
    .review .role{
      font-weight:950;
      font-size:13.2px;
      color:rgba(31,41,55,.95);
      margin-top:3px;
    }
    .review .meta{
      color:var(--muted);
      font-size:12.6px;
      margin-top:5px;
      line-height:1.4;
    }
    .review .text{
      position:relative;
      color:rgba(31,41,55,.92);
      line-height:1.75;
      font-size:14.2px;
      margin:0;
    }

    .list-grid{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap:14px;
      align-items:start;
    }
    .artlist{
      grid-column: span 7;
      border-radius:22px;
      border:1px solid rgba(20,35,55,.10);
      background:rgba(255,255,255,.82);
      box-shadow:0 10px 26px rgba(17,24,39,.06);
      overflow:hidden;
    }
    .artlist .inner{padding:14px}
    .artlist .rowhead{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding:0 14px 12px;
      border-bottom:1px solid rgba(20,35,55,.08);
    }
    .seg{
      display:flex; gap:8px; flex-wrap:wrap; align-items:center;
    }
    .seg button{
      appearance:none;
      border:1px solid rgba(20,35,55,.10);
      background:rgba(255,255,255,.74);
      border-radius:999px;
      padding:8px 10px;
      font-weight:850;
      font-size:12.8px;
      color:rgba(31,41,55,.90);
      cursor:pointer;
      transition:transform .18s ease, background .18s ease, border-color .18s ease;
    }
    .seg button:hover{transform:translateY(-1px); border-color:rgba(255,61,110,.18)}
    .seg button[aria-pressed="true"]{
      background:linear-gradient(135deg, rgba(255,61,110,.18), rgba(108,60,255,.14));
      border-color:rgba(255,61,110,.22);
    }
    .artitem{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      padding:12px 14px;
      border-bottom:1px solid rgba(20,35,55,.07);
      transition:background .18s ease;
    }
    .artitem:hover{background:rgba(255,61,110,.05)}
    .artitem:last-child{border-bottom:none}
    .artitem .left{display:flex; flex-direction:column; gap:6px}
    .artitem b{font-size:14.8px; letter-spacing:-.05px}
    .artitem span{color:var(--muted); font-size:12.9px; line-height:1.5}
    .artitem a{
      flex:none;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(20,35,55,.10);
      background:rgba(255,255,255,.74);
      font-weight:900;
      font-size:12.8px;
      transition:transform .18s ease, box-shadow .18s ease;
      white-space:nowrap;
    }
    .artitem a:hover{transform:translateY(-2px); box-shadow:0 18px 40px rgba(17,24,39,.12)}
    .sidebox{
      grid-column: span 5;
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .focusbox{
      border-radius:22px;
      border:1px solid rgba(20,35,55,.10);
      background:linear-gradient(135deg, rgba(255,61,110,.10), rgba(108,60,255,.08), rgba(0,183,255,.06));
      box-shadow:0 10px 26px rgba(17,24,39,.06);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .focusbox:before{
      content:"";
      position:absolute;
      inset:auto -120px -140px auto;
      width:320px; height:320px;
      background:radial-gradient(circle at 30% 30%, rgba(255,61,110,.18), rgba(108,60,255,.14), transparent 60%);
      pointer-events:none;
    }
    .focusbox h3{margin:0; font-size:15.8px; letter-spacing:-.1px}
    .focusbox p{margin:10px 0 0; color:var(--muted); line-height:1.65; font-size:14px; position:relative}
    .focusbox .row{
      margin-top:14px;
      display:flex; gap:10px; flex-wrap:wrap; position:relative;
    }

    details.faq{
      border-radius:22px;
      border:1px solid rgba(20,35,55,.10);
      background:rgba(255,255,255,.82);
      box-shadow:0 10px 26px rgba(17,24,39,.06);
      padding:14px 14px;
      overflow:hidden;
      transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }
    details.faq[open]{
      border-color:rgba(255,61,110,.22);
      box-shadow:0 18px 45px rgba(17,24,39,.12);
    }
    details.faq summary{
      cursor:pointer;
      list-style:none;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      font-weight:950;
      letter-spacing:-.05px;
      color:rgba(31,41,55,.95);
      padding:2px 2px;
      outline:none;
    }
    details.faq summary::-webkit-details-marker{display:none}
    .sumright{
      flex:none;
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(20,35,55,.10);
      background:rgba(255,255,255,.78);
      display:flex; align-items:center; justify-content:center;
      transition:transform .2s ease, border-color .2s ease;
    }
    details.faq[open] .sumright{transform:rotate(45deg); border-color:rgba(255,61,110,.22)}
    .faqgrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .faqanswer{
      margin:10px 2px 2px;
      color:var(--muted);
      line-height:1.8;
      font-size:14.2px;
    }

    .form{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:12px;
    }
    .form .full{grid-column: span 2}
    label{
      display:flex;
      flex-direction:column;
      gap:8px;
      font-weight:900;
      color:rgba(31,41,55,.95);
      font-size:13px;
    }
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(20,35,55,.12);
      background:rgba(255,255,255,.86);
      color:rgba(31,41,55,.95);
      outline:none;
      transition:box-shadow .18s ease, border-color .18s ease, transform .18s ease;
      font-size:14px;
    }
    textarea{min-height:104px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color:rgba(255,61,110,.35);
      box-shadow:0 0 0 4px rgba(255,61,110,.18);
    }
    .form-actions{
      grid-column: span 2;
      display:flex;
      gap:12px;
      align-items:center;
      justify-content:flex-start;
      flex-wrap:wrap;
      margin-top:4px;
    }
    .hint{
      color:var(--muted);
      font-size:12.6px;
      line-height:1.5;
      max-width:52ch;
    }
    .formsuccess{
      display:none;
      margin-top:12px;
      padding:12px 12px;
      border:1px solid rgba(0,179,126,.25);
      background:rgba(0,179,126,.08);
      border-radius:16px;
      color:rgba(11,74,52,.95);
      font-weight:850;
    }

    .linkcloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .linkcloud a{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,35,55,.10);
      background:rgba(255,255,255,.76);
      font-weight:900;
      font-size:12.8px;
      transition:transform .18s ease, background .18s ease, border-color .18s ease;
      white-space:nowrap;
    }
    .linkcloud a:hover{
      transform:translateY(-2px);
      background:rgba(108,60,255,.08);
      border-color:rgba(108,60,255,.18);
    }

    .footer{
      background:linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.92));
      border-top:1px solid rgba(20,35,55,.08);
      padding:26px 0 22px;
      margin-top:6px;
    }
    footer .footgrid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:18px;
      align-items:start;
    }
    .footbrand{
      border:1px solid rgba(20,35,55,.10);
      background:rgba(255,255,255,.85);
      border-radius:22px;
      padding:16px;
      box-shadow:0 10px 26px rgba(17,24,39,.06);
    }
    .footbrand .row{
      display:flex; gap:12px; align-items:center;
    }
    .footbrand img{
      width:44px; height:44px; border-radius:14px;
      border:1px solid rgba(20,35,55,.10);
      background:rgba(255,255,255,.8);
      padding:7px;
      object-fit:contain;
    }
    .footbrand b{font-size:15.5px}
    .footbrand p{
      margin:10px 0 0;
      color:var(--muted);
      line-height:1.7;
      font-size:14px;
    }
    .footlinks{
      border:1px solid rgba(20,35,55,.10);
      background:rgba(255,255,255,.85);
      border-radius:22px;
      padding:16px;
      box-shadow:0 10px 26px rgba(17,24,39,.06);
    }
    .footlinks h3{margin:0; font-size:15.5px}
    .footlinks .row{
      margin-top:12px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .footlinks a{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(20,35,55,.10);
      background:rgba(255,255,255,.76);
      font-weight:900;
      font-size:12.8px;
      transition:transform .18s ease, box-shadow .18s ease;
      white-space:nowrap;
    }
    .footlinks a:hover{transform:translateY(-2px); box-shadow:0 18px 40px rgba(17,24,39,.12)}
    .copyright{
      margin-top:12px;
      color:rgba(91,103,119,.95);
      font-size:12.8px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }

    .backtop{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:80;
      width:46px; height:46px;
      border-radius:18px;
      border:1px solid rgba(20,35,55,.12);
      background:rgba(255,255,255,.85);
      box-shadow:0 14px 40px rgba(17,24,39,.16);
      display:flex;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      opacity:0;
      transform:translateY(8px);
      pointer-events:none;
      transition:opacity .2s ease, transform .2s ease, background .2s ease, border-color .2s ease;
    }
    .backtop.show{
      opacity:1;
      transform:translateY(0);
      pointer-events:auto;
    }
    .backtop:hover{
      border-color:rgba(255,61,110,.22);
      background:rgba(255,255,255,.95);
    }
    .backtop svg{width:18px; height:18px}

    .float-quick{
      position:fixed;
      left:16px;
      bottom:16px;
      z-index:80;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .quickbtn{
      border-radius:18px;
      border:1px solid rgba(20,35,55,.12);
      background:rgba(255,255,255,.88);
      box-shadow:0 14px 40px rgba(17,24,39,.14);
      width:46px; height:46px;
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .quickbtn:hover{transform:translateY(-2px); border-color:rgba(108,60,255,.18); box-shadow:0 18px 45px rgba(17,24,39,.20)}
    .quickbtn svg{width:18px; height:18px}
    .kefu-pop{
      width:250px;
      border-radius:22px;
      border:1px solid rgba(20,35,55,.12);
      background:rgba(255,255,255,.94);
      box-shadow:0 18px 60px rgba(17,24,39,.20);
      overflow:hidden;
      display:none;
      transform-origin:bottom left;
      animation:popin .18s ease-out both;
    }
    @keyframes popin{
      from{opacity:.0; transform:scale(.98) translateY(6px)}
      to{opacity:1; transform:scale(1) translateY(0)}
    }
    .kefu-pop .head{
      padding:12px 12px 10px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      border-bottom:1px solid rgba(20,35,55,.08);
      background:linear-gradient(135deg, rgba(255,61,110,.12), rgba(108,60,255,.10));
    }
    .kefu-pop .head b{font-size:13.5px}
    .kefu-pop .close{
      width:32px; height:32px;
      border-radius:14px;
      border:1px solid rgba(20,35,55,.10);
      background:rgba(255,255,255,.8);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition:transform .18s ease;
    }
    .kefu-pop .close:hover{transform:translateY(-1px)}
    .kefu-pop .body{padding:12px}
    .kefu-pop img{
      width:100%;
      border-radius:18px;
      border:1px solid rgba(20,35,55,.10);
      background:rgba(255,255,255,.86);
      object-fit:contain;
    }
    .kefu-pop .small{
      margin-top:10px;
      color:var(--muted);
      font-size:12.8px;
      line-height:1.55;
      font-weight:700;
    }

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

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .two-col{grid-template-columns: 1fr}
      .card{grid-column: span 6}
      .review{grid-column: span 6}
      .media{grid-column: span 6}
      .faqgrid{grid-template-columns: 1fr}
      .list-grid{grid-template-columns: 1fr}
      .artlist{grid-column: span 12}
      .sidebox{grid-column: span 12}
      footer .footgrid{grid-template-columns: 1fr}
      .form{grid-template-columns: 1fr}
      .form .full{grid-column: span 1}
      .form-actions{grid-column: span 1}
      h1{font-size:30px}
      .navlinks{display:none}
      nav{gap:10px}
      .nav-cta .btn{display:none}
      .burger{display:flex}
      .mobile-drawer{display:block}
    }
    @media (max-width: 560px){
      .hero-card{padding:18px}
      .metrics{grid-template-columns: 1fr}
      .card{grid-column: span 12}
      .review{grid-column: span 12}
      .media{grid-column: span 12}
      h1{font-size:26px}
      .titem{grid-template-columns: 1fr}
      .titem .when{text-align:left}
      .float-quick{left:12px; bottom:12px}
      .backtop{right:12px; bottom:12px}
    }