:root{
      --bg0:#fff7f6;
      --bg1:#ffffff;
      --text:#1f2328;
      --muted:#5b636e;
      --subtle:#7a8493;
      --card:#ffffff;
      --border:rgba(30,41,59,.12);
      --shadow: 0 12px 30px rgba(16,24,40,.08);
      --shadow2: 0 10px 26px rgba(168, 0, 59, .12);
      --primary:#b4004b;
      --primary2:#ff3d7a;
      --primary3:#7a2bff;
      --accent:#ff7a00;
      --ok:#0a8f6a;
      --warn:#b45309;
      --radius:18px;
      --radius2:24px;
      --container:1120px;
      --gap:18px;
      --focus: rgba(180,0,75,.28);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans SC", Arial, "Apple Color Emoji","Segoe UI Emoji";
      color:var(--text);
      background:
        radial-gradient(1000px 420px at 20% -10%, rgba(255,61,122,.18), transparent 60%),
        radial-gradient(900px 420px at 80% 0%, rgba(122,43,255,.14), transparent 55%),
        radial-gradient(700px 360px at 60% 25%, rgba(255,122,0,.12), transparent 58%),
        linear-gradient(180deg, var(--bg0), #fff);
      min-height:100vh;
    }
    a{color:inherit; text-decoration:none}
    img{max-width:100%; height:auto; display:block}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 20px;
    }
    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,.72);
      border-bottom: 1px solid rgba(31,35,40,.08);
    }
    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:14px 0;
      gap:14px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 170px;
    }
    .logo-wrap{
      width:40px; height:40px;
      border-radius:12px;
      background:
        radial-gradient(12px 12px at 30% 30%, rgba(255,255,255,.85), rgba(255,255,255,.0) 60%),
        linear-gradient(135deg, rgba(180,0,75,.95), rgba(255,61,122,.85) 40%, rgba(122,43,255,.75));
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 10px 26px rgba(180,0,75,.18);
      border:1px solid rgba(255,255,255,.45);
      overflow:hidden;
    }
    .logo-wrap img{width:36px; height:36px; object-fit:contain}
    .brand-text{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand-name{
      font-weight:850;
      letter-spacing:.2px;
      font-size:15px;
      color:#16181d;
    }
    .brand-sub{
      font-size:12px;
      color:var(--muted);
      margin-top:3px;
      white-space:nowrap;
    }
    .nav-right{
      display:flex; align-items:center; justify-content:flex-end; gap:12px;
      flex-wrap:wrap;
    }
    .nav-links{
      display:flex; align-items:center; gap:14px;
      padding:6px 0;
    }
    .nav-links a{
      font-size:13.5px;
      color:rgba(31,35,40,.86);
      padding:8px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background: rgba(180,0,75,.06);
      border-color: rgba(180,0,75,.14);
      transform: translateY(-1px);
    }
    .nav-cta{
      display:flex; align-items:center; gap:10px;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      padding:11px 14px;
      border-radius:14px;
      font-weight:750;
      font-size:13.5px;
      border:1px solid rgba(31,35,40,.12);
      background: rgba(255,255,255,.72);
      color:#171a1f;
      box-shadow: 0 10px 22px rgba(16,24,40,.06);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
      cursor:pointer;
      user-select:none;
    }
    .btn:hover{
      transform: translateY(-1px);
      box-shadow: 0 14px 26px rgba(16,24,40,.1);
      border-color: rgba(180,0,75,.2);
    }
    .btn:active{transform: translateY(0px)}
    .btn-primary{
      background: linear-gradient(135deg, rgba(180,0,75,.98), rgba(255,61,122,.9) 42%, rgba(122,43,255,.78));
      color:#fff;
      border-color: rgba(255,255,255,.16);
      box-shadow: 0 18px 40px rgba(180,0,75,.26);
    }
    .btn-primary:hover{
      box-shadow: 0 22px 52px rgba(180,0,75,.34);
      border-color: rgba(255,255,255,.22);
    }
    .btn-ghost{
      background: rgba(255,255,255,.65);
      border-color: rgba(31,35,40,.12);
      box-shadow:none;
    }
    .btn-ghost:hover{
      background: rgba(255,255,255,.9);
      box-shadow: 0 14px 26px rgba(16,24,40,.09);
    }
    .menu-btn{
      display:none;
      width:42px; height:42px;
      border-radius:14px;
      border:1px solid rgba(31,35,40,.12);
      background: rgba(255,255,255,.8);
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      box-shadow: 0 12px 24px rgba(16,24,40,.06);
      align-items:center; justify-content:center;
    }
    .menu-btn:hover{transform: translateY(-1px); border-color: rgba(180,0,75,.2)}
    .hamburger{
      width:18px; height:12px; position:relative;
    }
    .hamburger span{
      position:absolute; left:0; right:0; height:2px; background: rgba(31,35,40,.78);
      border-radius:99px; transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .hamburger span:nth-child(1){top:0}
    .hamburger span:nth-child(2){top:5px}
    .hamburger span:nth-child(3){top:10px}
    .menu-open .hamburger span:nth-child(1){top:5px; transform: rotate(45deg)}
    .menu-open .hamburger span:nth-child(2){opacity:0}
    .menu-open .hamburger span:nth-child(3){top:5px; transform: rotate(-45deg)}
    .mobile-panel{
      display:none;
      padding:10px 0 16px;
    }
    .mobile-links{
      display:flex; flex-direction:column; gap:8px;
    }
    .mobile-links a{
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.78);
      font-weight:680;
      font-size:14px;
    }

    .hero{
      padding:46px 0 24px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.25fr .75fr;
      gap:22px;
      align-items:start;
    }
    .hero-card{
      border-radius:var(--radius2);
      background:
        radial-gradient(900px 460px at 10% 0%, rgba(255,61,122,.20), transparent 60%),
        radial-gradient(700px 420px at 75% 20%, rgba(122,43,255,.16), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
      border:1px solid rgba(31,35,40,.10);
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
      padding:26px;
    }
    .hero-card::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        linear-gradient(120deg, rgba(180,0,75,.10), transparent 35%),
        linear-gradient(60deg, rgba(255,61,122,.12), transparent 40%),
        linear-gradient(200deg, rgba(122,43,255,.10), transparent 42%);
      pointer-events:none;
    }
    .hero-inner{position:relative; z-index:1}
    .badge-row{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
      margin-bottom:14px;
    }
    .badge{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(31,35,40,.12);
      background: rgba(255,255,255,.68);
      box-shadow: 0 10px 24px rgba(16,24,40,.06);
      font-weight:720;
      font-size:13px;
      color: rgba(31,35,40,.9);
    }
    .badge i{
      width:22px; height:22px; border-radius:8px;
      background: linear-gradient(135deg, rgba(180,0,75,.96), rgba(255,61,122,.86));
      display:inline-flex; align-items:center; justify-content:center;
      color:#fff;
      font-style:normal;
      font-weight:900;
      box-shadow: 0 14px 26px rgba(180,0,75,.22);
      border:1px solid rgba(255,255,255,.22);
    }
    h1{
      font-size:34px;
      margin:4px 0 10px;
      letter-spacing:-.6px;
      line-height:1.12;
    }
    .hero-lead{
      color: rgba(31,35,40,.80);
      font-size:15.5px;
      line-height:1.75;
      margin:0 0 18px;
      max-width: 68ch;
    }
    .hero-actions{
      display:flex; align-items:center; gap:12px; flex-wrap:wrap;
      margin-top:14px;
    }
    .hero-mini{
      display:flex; gap:12px; margin-top:18px; flex-wrap:wrap;
    }
    .mini-stat{
      flex:1 1 210px;
      min-width: 210px;
      padding:12px 14px;
      border-radius:16px;
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.62);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .mini-stat:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 28px rgba(16,24,40,.10);
    }
    .mini-stat .k{
      font-weight:900; font-size:18px; letter-spacing:-.3px;
      background: linear-gradient(90deg, rgba(180,0,75,.98), rgba(255,61,122,.92), rgba(122,43,255,.82));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .mini-stat .t{
      margin-top:4px;
      font-size:13.5px;
      color: var(--muted);
      line-height:1.4;
    }

    .side-panel{
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .side-card{
      border-radius:var(--radius2);
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
      padding:18px;
      position:relative;
      overflow:hidden;
    }
    .side-card::after{
      content:"";
      position:absolute;
      right:-120px; top:-120px;
      width:240px; height:240px;
      background: radial-gradient(circle at 30% 30%, rgba(255,61,122,.35), transparent 60%);
      pointer-events:none;
    }
    .side-card h3{
      margin:0 0 8px;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .side-card p{
      margin:0;
      color: var(--muted);
      font-size:13.5px;
      line-height:1.65;
      position:relative;
      z-index:1;
    }
    .pulse{
      display:flex; gap:12px; align-items:flex-start; margin-top:12px;
      position:relative; z-index:1;
    }
    .pulse-dot{
      width:12px; height:12px; border-radius:999px;
      background: linear-gradient(135deg, rgba(180,0,75,.98), rgba(255,61,122,.9));
      box-shadow: 0 0 0 0 rgba(180,0,75,.35);
      animation: pulse 1.8s ease-in-out infinite;
      margin-top:6px;
      flex:0 0 auto;
    }
    @keyframes pulse{
      0%{box-shadow:0 0 0 0 rgba(180,0,75,.35)}
      60%{box-shadow:0 0 0 14px rgba(180,0,75,0)}
      100%{box-shadow:0 0 0 0 rgba(180,0,75,0)}
    }
    .pulse .txt{
      font-size:13.5px; color: rgba(31,35,40,.82); line-height:1.6;
    }

    .chip-row{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:12px;
      position:relative; z-index:1;
    }
    .chip{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.62);
      font-weight:700;
      font-size:12.5px;
      color: rgba(31,35,40,.86);
      transition: transform .18s ease, border-color .18s ease;
      cursor:default;
      white-space:nowrap;
    }
    .chip:hover{transform: translateY(-1px); border-color: rgba(180,0,75,.18)}
    .section{
      padding:30px 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin-bottom:16px;
    }
    .section-title{
      margin:0;
      font-size:22px;
      letter-spacing:-.35px;
    }
    .section-sub{
      margin:6px 0 0;
      color: var(--muted);
      font-size:14px;
      line-height:1.7;
      max-width: 70ch;
    }
    .section-actions{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
    }
    .seg{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.60);
      color: rgba(31,35,40,.84);
      font-weight:760;
      font-size:13.5px;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      user-select:none;
    }
    .seg:hover{
      transform: translateY(-1px);
      box-shadow: 0 14px 26px rgba(16,24,40,.08);
      border-color: rgba(180,0,75,.18);
    }

    .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(--radius);
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 10px 24px rgba(16,24,40,.06);
      padding:16px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(16,24,40,.10);
      border-color: rgba(180,0,75,.18);
    }
    .card h3{
      margin:0 0 8px;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color: var(--muted);
      font-size:13.5px;
      line-height:1.7;
    }
    .icon{
      width:42px; height:42px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.35);
      background:
        radial-gradient(16px 16px at 30% 30%, rgba(255,255,255,.8), rgba(255,255,255,0) 60%),
        linear-gradient(135deg, rgba(180,0,75,.98), rgba(255,61,122,.9) 45%, rgba(122,43,255,.75));
      display:flex; align-items:center; justify-content:center;
      color:#fff;
      font-weight:900;
      box-shadow: 0 18px 36px rgba(180,0,75,.22);
      margin-bottom:12px;
    }
    .list{
      margin:12px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .li{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(31,35,40,.08);
      background: rgba(255,255,255,.62);
    }
    .li b{font-size:13.8px}
    .li span{
      color: var(--muted);
      font-size:13.2px;
      line-height:1.6;
      margin-top:3px;
      display:block;
    }
    .check{
      width:18px; height:18px; border-radius:7px;
      background: rgba(10,143,106,.12);
      border:1px solid rgba(10,143,106,.28);
      color: var(--ok);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      font-weight:900;
      margin-top:2px;
      font-size:12px;
    }

    .timeline{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .step{
      display:flex;
      gap:12px;
      padding:16px;
      border-radius:var(--radius);
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 10px 24px rgba(16,24,40,.06);
      align-items:flex-start;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .step:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(16,24,40,.10);
      border-color: rgba(180,0,75,.18);
    }
    .step-num{
      width:40px; height:40px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:#fff;
      background: linear-gradient(135deg, rgba(180,0,75,.98), rgba(255,61,122,.9) 50%, rgba(122,43,255,.75));
      box-shadow: 0 18px 40px rgba(180,0,75,.25);
      border:1px solid rgba(255,255,255,.22);
      flex:0 0 auto;
    }
    .step h3{margin:0; font-size:15.5px}
    .step p{margin:6px 0 0; color: var(--muted); font-size:13.5px; line-height:1.7}

    .comparison{
      border-radius:var(--radius2);
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
      overflow:hidden;
    }
    .cmp-head{
      padding:16px 16px 12px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      background:
        radial-gradient(800px 260px at 20% -40%, rgba(255,61,122,.18), transparent 65%),
        radial-gradient(700px 220px at 85% 0%, rgba(122,43,255,.14), transparent 55%),
        rgba(255,255,255,.72);
      border-bottom:1px solid rgba(31,35,40,.08);
    }
    .cmp-title{
      margin:0;
      font-size:18px;
      letter-spacing:-.25px;
    }
    .cmp-sub{
      margin:6px 0 0;
      color: var(--muted);
      font-size:13.5px;
      line-height:1.7;
    }
    .rating{
      display:flex; flex-direction:column; align-items:flex-end; gap:8px;
      min-width: 160px;
    }
    .star-row{
      display:flex; align-items:center; gap:6px;
      font-weight:900;
      color:#ff7a00;
      letter-spacing:.2px;
    }
    .stars{
      display:inline-flex; gap:3px; align-items:center;
    }
    .stars svg{width:16px; height:16px}
    .rating .score{
      font-size:20px;
      font-weight:950;
      background: linear-gradient(90deg, rgba(180,0,75,.98), rgba(255,61,122,.92));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      letter-spacing:-.4px;
    }
    .cmp-table{
      width:100%;
      border-collapse:collapse;
      font-size:14px;
      table-layout:fixed;
    }
    .cmp-table th,.cmp-table td{
      border-top:1px solid rgba(31,35,40,.08);
      padding:12px 12px;
      vertical-align:top;
    }
    .cmp-table thead th{
      background: rgba(255,255,255,.9);
      color: rgba(31,35,40,.86);
      font-weight:900;
      text-align:left;
    }
    .cmp-table td{
      color: rgba(31,35,40,.84);
    }
    .tag{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(31,35,40,.12);
      background: rgba(255,255,255,.62);
      font-weight:820;
      font-size:12.5px;
      color: rgba(31,35,40,.86);
      margin:4px 6px 0 0;
      white-space:nowrap;
    }
    .tag.good{
      border-color: rgba(10,143,106,.28);
      background: rgba(10,143,106,.10);
      color:#0a7b5f;
    }
    .tag.hot{
      border-color: rgba(180,0,75,.22);
      background: rgba(180,0,75,.10);
      color: rgba(180,0,75,.98);
    }
    .tag.neutral{
      border-color: rgba(31,35,40,.12);
      background: rgba(255,255,255,.62);
    }

    .gallery{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .case-card{
      border-radius:var(--radius2);
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
      overflow:hidden;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .case-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(16,24,40,.10);
      border-color: rgba(180,0,75,.18);
    }
    .case-top{
      padding:16px 16px 10px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .case-top h3{margin:0; font-size:16px; letter-spacing:-.2px}
    .case-top p{margin:6px 0 0; color:var(--muted); font-size:13.5px; line-height:1.7}
    .case-badges{display:flex; flex-wrap:wrap; gap:8px; align-items:center; justify-content:flex-end}
    .thumb{
      padding:0 14px 14px;
    }
    .thumb img{
      width:100%;
      border-radius:16px;
      border:1px solid rgba(31,35,40,.10);
      box-shadow: 0 14px 30px rgba(16,24,40,.08);
      object-fit:cover;
    }
    .case-bottom{
      padding:12px 16px 16px;
      display:flex; gap:12px; align-items:center; justify-content:space-between; flex-wrap:wrap;
      border-top:1px solid rgba(31,35,40,.08);
      background: rgba(255,255,255,.60);
    }
    .case-bottom .meta{
      display:flex; flex-direction:column; gap:4px;
    }
    .meta strong{font-size:14px}
    .meta span{font-size:13px; color: var(--muted)}
    .link-btn{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(180,0,75,.22);
      background: rgba(180,0,75,.08);
      font-weight:850;
      font-size:13.5px;
      cursor:pointer;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
    }
    .link-btn:hover{
      transform: translateY(-1px);
      background: rgba(180,0,75,.12);
      border-color: rgba(180,0,75,.3);
    }
    .link-btn svg{width:16px; height:16px}

    .article-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .article-card{
      border-radius:var(--radius2);
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
      padding:16px;
    }
    .article-card h3{margin:0 0 10px; font-size:16px; letter-spacing:-.2px}
    .article-list{
      display:flex; flex-direction:column; gap:10px;
      margin-top:10px;
    }
    .article-item{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(31,35,40,.08);
      background: rgba(255,255,255,.62);
      transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
    }
    .article-item:hover{
      transform: translateY(-2px);
      border-color: rgba(180,0,75,.18);
      box-shadow: 0 16px 30px rgba(16,24,40,.08);
    }
    .article-item a{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      color: rgba(31,35,40,.88);
    }
    .article-item b{
      font-size:14px; line-height:1.5;
    }
    .article-item span{
      color: var(--muted);
      font-size:12.8px;
      white-space:nowrap;
      margin-top:2px;
    }
    .aside-box{
      border-radius:var(--radius2);
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .aside-box::after{
      content:"";
      position:absolute;
      left:-90px; top:-110px;
      width:240px; height:240px;
      background: radial-gradient(circle at 30% 30%, rgba(255,61,122,.22), transparent 60%);
      pointer-events:none;
    }
    .aside-box h3{margin:0 0 10px; font-size:16px; letter-spacing:-.2px; position:relative; z-index:1}
    .aside-box p{margin:0; color: var(--muted); font-size:13.5px; line-height:1.75; position:relative; z-index:1}
    .aside-tags{margin-top:12px; display:flex; flex-wrap:wrap; gap:10px; position:relative; z-index:1}

    .faq-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .faq{
      border-radius:var(--radius2);
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
      overflow:hidden;
    }
    .faq-item{
      border-top:1px solid rgba(31,35,40,.08);
    }
    .faq-item:first-child{border-top:none}
    details.faq-details{
      padding:0;
    }
    details.faq-details summary{
      list-style:none;
      cursor:pointer;
      padding:14px 16px;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      user-select:none;
      font-weight:880;
      color: rgba(31,35,40,.9);
      font-size:14px;
    }
    details.faq-details summary::-webkit-details-marker{display:none}
    .faq-chevron{
      width:30px; height:30px;
      border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(31,35,40,.12);
      background: rgba(255,255,255,.62);
      flex:0 0 auto;
      transition: transform .2s ease, border-color .2s ease;
      margin-top:-3px;
    }
    details[open] .faq-chevron{transform: rotate(180deg); border-color: rgba(180,0,75,.22)}
    details.faq-details .faq-body{
      padding:0 16px 14px;
      color: var(--muted);
      font-size:13.5px;
      line-height:1.75;
    }

    .review-grid{display:grid; grid-template-columns: repeat(3,1fr); gap:14px}
    .review{
      border-radius:var(--radius2);
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
      padding:16px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      overflow:hidden;
      position:relative;
    }
    .review::after{
      content:"";
      position:absolute;
      right:-120px; bottom:-120px;
      width:260px; height:260px;
      background: radial-gradient(circle at 30% 30%, rgba(122,43,255,.14), transparent 60%);
      pointer-events:none;
    }
    .review:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(16,24,40,.10);
      border-color: rgba(180,0,75,.18);
    }
    .review .top{
      display:flex; align-items:center; justify-content:space-between; gap:12px; position:relative; z-index:1;
      margin-bottom:10px;
    }
    .avatar{
      width:38px; height:38px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.35);
      background:
        radial-gradient(14px 14px at 30% 30%, rgba(255,255,255,.82), rgba(255,255,255,0) 60%),
        linear-gradient(135deg, rgba(180,0,75,.98), rgba(255,61,122,.9) 45%, rgba(122,43,255,.75));
      color:#fff;
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      box-shadow: 0 18px 40px rgba(180,0,75,.22);
    }
    .review .role{
      font-weight:900; font-size:13.5px;
    }
    .review .rating{
      min-width:auto; align-items:flex-end;
    }
    .review p{
      margin:0;
      color: var(--muted);
      font-size:13.5px;
      line-height:1.75;
      position:relative; z-index:1;
    }

    .form-wrap{
      border-radius:var(--radius2);
      border:1px solid rgba(31,35,40,.10);
      background:
        radial-gradient(900px 320px at 10% 0%, rgba(255,61,122,.14), transparent 62%),
        radial-gradient(700px 260px at 85% 15%, rgba(122,43,255,.12), transparent 56%),
        rgba(255,255,255,.72);
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
      padding:16px;
    }
    form{margin-top:6px}
    .fields{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .field{
      display:flex; flex-direction:column; gap:8px;
    }
    label{
      font-weight:820;
      font-size:13px;
      color: rgba(31,35,40,.86);
    }
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(31,35,40,.12);
      background: rgba(255,255,255,.82);
      color: rgba(31,35,40,.92);
      font-size:14px;
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease, background .15s ease;
    }
    textarea{min-height:110px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(180,0,75,.35);
      box-shadow: 0 0 0 4px var(--focus);
      background: rgba(255,255,255,.96);
    }
    .form-actions{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-top:12px;
      padding-top:12px;
      border-top:1px solid rgba(31,35,40,.08);
    }
    .form-actions .hint{
      color: var(--muted);
      font-size:12.8px;
      line-height:1.5;
    }

    .network{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .network-map{
      border-radius:var(--radius2);
      border:1px solid rgba(31,35,40,.10);
      background:
        radial-gradient(900px 420px at 40% 0%, rgba(255,61,122,.16), transparent 60%),
        rgba(255,255,255,.72);
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .map-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:12px;
      position:relative; z-index:1;
    }
    .city{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.62);
      transition: transform .2s ease, border-color .2s ease;
    }
    .city:hover{transform: translateY(-2px); border-color: rgba(180,0,75,.18)}
    .city b{display:block; font-size:14px}
    .city span{display:block; margin-top:5px; color: var(--muted); font-size:13px; line-height:1.5}
    .map-shape{
      position:absolute; inset:-40px -60px auto auto;
      width:320px; height:320px;
      background: conic-gradient(from 180deg, rgba(180,0,75,.25), rgba(255,61,122,.18), rgba(122,43,255,.18), rgba(255,122,0,.14), rgba(180,0,75,.25));
      border-radius:50%;
      filter: blur(20px);
      opacity:.65;
      pointer-events:none;
    }
    .network-note{
      border-radius:var(--radius2);
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
      padding:16px;
      display:flex; flex-direction:column; justify-content:space-between; gap:14px;
    }
    .network-note h3{margin:0; font-size:16px; letter-spacing:-.2px}
    .network-note p{margin:8px 0 0; color: var(--muted); font-size:13.5px; line-height:1.75}
    .network-list{margin-top:12px; display:flex; flex-direction:column; gap:10px}
    .network-list .li{background: rgba(255,255,255,.66)}

    .tag-cloud{
      display:flex; flex-wrap:wrap; gap:10px;
      padding-top:4px;
    }
    .cloud-item{
      padding:9px 10px;
      border-radius:999px;
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.62);
      font-weight:820;
      font-size:12.8px;
      color: rgba(31,35,40,.84);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      cursor:pointer;
      user-select:none;
    }
    .cloud-item:hover{
      transform: translateY(-2px);
      border-color: rgba(180,0,75,.18);
      background: rgba(255,255,255,.9);
    }

    .footer{
      padding:24px 0 36px;
      background: rgba(255,255,255,.64);
      border-top:1px solid rgba(31,35,40,.08);
      margin-top:10px;
    }
    .footer-inner{
      border-radius:var(--radius2);
      border:1px solid rgba(31,35,40,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.70));
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
      padding:16px;
    }
    .footer-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px; flex-wrap:wrap;
    }
    .footer-col{
      min-width: 220px;
      flex: 1 1 260px;
    }
    .footer-col h3{
      margin:0 0 10px;
      font-size:15.5px;
      letter-spacing:-.2px;
    }
    .footer-col p, .footer-col a{
      color: rgba(31,35,40,.78);
      font-size:13.5px;
      line-height:1.8;
    }
    .footer-links{
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .footer-links a{
      padding:9px 10px;
      border-radius:14px;
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.60);
      transition: transform .15s ease, border-color .15s ease;
      font-weight:780;
    }
    .footer-links a:hover{
      transform: translateY(-2px);
      border-color: rgba(180,0,75,.18);
    }
    .qr-row{
      display:flex; gap:12px; align-items:center; flex-wrap:wrap;
    }
    .qr{
      width:92px; border-radius:18px;
      border:1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.66);
      padding:8px;
    }
    .qr img{width:100%; height:auto}
    .footer-bottom{
      margin-top:14px;
      padding-top:14px;
      border-top:1px solid rgba(31,35,40,.08);
      display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap;
      color: rgba(31,35,40,.70);
      font-size:12.8px;
    }

    .float-cs{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:80;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .float-item{
      display:flex; align-items:center; gap:10px;
      border-radius:18px;
      border:1px solid rgba(31,35,40,.12);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 40px rgba(16,24,40,.12);
      padding:10px 12px;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      user-select:none;
    }
    .float-item:hover{
      transform: translateY(-2px);
      border-color: rgba(180,0,75,.22);
      box-shadow: 0 24px 58px rgba(16,24,40,.16);
    }
    .float-item .dot{
      width:36px; height:36px;
      border-radius:16px;
      background: linear-gradient(135deg, rgba(180,0,75,.98), rgba(255,61,122,.9) 50%, rgba(122,43,255,.75));
      display:flex; align-items:center; justify-content:center;
      color:#fff;
      font-weight:950;
      border:1px solid rgba(255,255,255,.22);
    }
    .float-item span{font-weight:900; font-size:13.5px; color: rgba(31,35,40,.86)}
    .float-item small{display:block; color: var(--muted); font-weight:700; font-size:12px; margin-top:2px}
    .to-top{
      width:46px; height:46px;
      border-radius:18px;
      border:1px solid rgba(31,35,40,.12);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 40px rgba(16,24,40,.12);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
    }
    .to-top:hover{transform: translateY(-2px); border-color: rgba(180,0,75,.22); box-shadow: 0 24px 58px rgba(16,24,40,.16)}
    .to-top svg{width:18px; height:18px; color: rgba(31,35,40,.82)}
    .reveal{
      opacity:0;
      transform: translateY(12px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.show{
      opacity:1;
      transform: translateY(0);
    }

    .anchor-gap{scroll-margin-top:92px}

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .review-grid{grid-template-columns: repeat(2,1fr)}
      .grid-4{grid-template-columns: repeat(2,1fr)}
      .grid-3{grid-template-columns: repeat(2,1fr)}
      .timeline{grid-template-columns: 1fr}
      .gallery{grid-template-columns: 1fr}
      .article-grid{grid-template-columns: 1fr}
      .faq-grid{grid-template-columns: 1fr}
      .network{grid-template-columns: 1fr}
      .menu-btn{display:flex}
      .nav-links{display:none}
      .mobile-panel{display:block}
    }
    @media (max-width: 560px){
      h1{font-size:28px}
      .hero-card{padding:18px}
      .fields{grid-template-columns: 1fr}
      .review-grid{grid-template-columns: 1fr}
      .grid-3,.grid-4{grid-template-columns: 1fr}
      .float-cs{right:12px; bottom:12px}
    }