:root{
      --bg:#fbf7f2;
      --bg2:#ffffff;
      --text:#1f2430;
      --muted:#5b6476;
      --sub:#7a859a;
      --line:rgba(31,36,48,.10);
      --card:#ffffff;
      --shadow: 0 14px 40px rgba(16,24,40,.08);
      --shadow2: 0 10px 24px rgba(16,24,40,.10);
      --shadow3: 0 6px 16px rgba(16,24,40,.10);
      --primary:#ff3b6a;
      --secondary:#5b57ff;
      --accent:#ff8a00;
      --teal:#00a389;
      --blue:#1f7aff;
      --radius:18px;
      --radius2:14px;
      --radius3:12px;
      --container: 1120px;
      --padX: 18px;
      --focus: 0 0 0 4px rgba(91,87,255,.20);
      --grad: linear-gradient(135deg, rgba(255,59,106,.12), rgba(91,87,255,.10) 45%, rgba(255,138,0,.10));
      --heroGrad: radial-gradient(1200px 520px at 18% 18%, rgba(255,59,106,.26), transparent 52%),
                  radial-gradient(900px 520px at 78% 30%, rgba(91,87,255,.24), transparent 55%),
                  radial-gradient(820px 420px at 55% 78%, rgba(255,138,0,.18), transparent 55%),
                  linear-gradient(180deg, #fbf7f2, #ffffff 70%);
      --chipGrad: linear-gradient(135deg, rgba(255,59,106,.14), rgba(91,87,255,.14));
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color:var(--text);
      background: var(--bg);
      line-height:1.55;
    }
    a{color:inherit; text-decoration:none}
    img{max-width:100%; height:auto; display:block}
    .container{
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--padX);
    }

    .skip{
      position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip:focus{
      left: 16px; top: 12px; width:auto; height:auto; padding:10px 12px; z-index:9999;
      background:#fff; border:1px solid var(--line); border-radius:12px; box-shadow: var(--shadow3);
      outline:none;
    }

    header{
      position: sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(251,247,242,.75);
      border-bottom: 1px solid rgba(31,36,48,.08);
    }
    .navBar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding: 12px 0;
    }
    .brand{
      display:flex; align-items:center; gap:12px;
      min-width: 220px;
    }
    .brand img{
      width: 44px; height:auto;
    }
    .brandText{
      display:flex; flex-direction:column; gap:2px;
      line-height:1.2;
    }
    .brandName{
      font-weight:800;
      letter-spacing:.2px;
      font-size: 14px;
    }
    .brandSub{
      color:var(--muted);
      font-size: 12px;
    }
    .navRight{
      display:flex; align-items:center; gap:10px;
      justify-content:flex-end;
      flex:1;
      min-width: 0;
    }

    .menu{
      display:flex; align-items:center; gap:8px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .menu a{
      font-size: 13px;
      color: rgba(31,36,48,.86);
      padding: 10px 10px;
      border-radius: 12px;
      border:1px solid transparent;
      transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .menu a:hover{
      background: rgba(255,59,106,.08);
      border-color: rgba(255,59,106,.18);
      transform: translateY(-1px);
    }

    .navCtas{
      display:flex; align-items:center; gap:10px;
      margin-left: 6px;
    }

    .btn{
      appearance:none;
      border:1px solid transparent;
      border-radius: 14px;
      padding: 12px 14px;
      font-weight: 700;
      font-size: 13px;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      user-select:none;
      white-space:nowrap;
    }
    .btn:focus{outline:none; box-shadow: var(--focus)}
    .btn:active{transform: translateY(1px)}
    .btnPrimary{
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color:#fff;
      box-shadow: 0 10px 26px rgba(255,59,106,.22);
    }
    .btnPrimary:hover{transform: translateY(-1px); box-shadow: 0 14px 34px rgba(255,59,106,.26)}
    .btnGhost{
      background: rgba(255,255,255,.70);
      border-color: rgba(31,36,48,.10);
      color: rgba(31,36,48,.90);
    }
    .btnGhost:hover{
      background: rgba(255,255,255,.95);
      border-color: rgba(91,87,255,.20);
      transform: translateY(-1px);
    }

    .iconDot{
      width:10px; height:10px; border-radius:50%;
      background: rgba(255,255,255,.75);
      box-shadow: 0 0 0 4px rgba(255,255,255,.18);
    }

    .mobileToggle{
      display:none;
      width: 44px; height:44px;
      border-radius: 14px;
      border:1px solid rgba(31,36,48,.12);
      background: rgba(255,255,255,.70);
      align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
    }
    .mobileToggle:hover{transform: translateY(-1px); background:#fff; border-color: rgba(91,87,255,.20)}
    .burger{
      width: 18px; height: 14px; position: relative;
    }
    .burger span{
      position:absolute; left:0; right:0; height:2px;
      background: rgba(31,36,48,.86);
      border-radius: 2px;
      transition: transform .18s ease, top .18s ease, opacity .18s ease;
    }
    .burger span:nth-child(1){top:0}
    .burger span:nth-child(2){top:6px}
    .burger span:nth-child(3){top:12px}
    .mobileToggle[aria-expanded="true"] .burger span:nth-child(1){top:6px; transform: rotate(45deg)}
    .mobileToggle[aria-expanded="true"] .burger span:nth-child(2){opacity:0}
    .mobileToggle[aria-expanded="true"] .burger span:nth-child(3){top:6px; transform: rotate(-45deg)}

    .mobileMenu{
      display:none;
      padding-bottom: 14px;
    }
    .mobileMenu .menu{
      flex-direction:column;
      align-items:stretch;
      gap:8px;
    }
    .mobileMenu .menu a{
      padding: 12px 12px;
      border: 1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.70);
    }
    .mobileMenu .navCtas{
      flex-direction:column;
      align-items:stretch;
      margin-left:0;
      gap:10px;
    }
    .mobileMenu .btn{width:100%}

    @media (max-width: 980px){
      .menu{display:none}
      .navCtas .btnGhost{display:none}
      .mobileToggle{display:flex}
      .mobileMenu{display:block}
      .mobileMenuInner{display:none}
      .mobileMenu[data-open="true"] .mobileMenuInner{display:block}
    }

    main{
      position:relative;
    }
    .hero{
      background: var(--heroGrad);
      padding: 26px 0 10px;
      overflow:hidden;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 18px;
      align-items:start;
      padding: 20px 0 14px;
    }
    @media (max-width: 980px){
      .heroGrid{grid-template-columns:1fr}
    }

    .heroLeft{
      padding: 10px 0;
    }
    .kickerRow{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      margin-bottom: 12px;
    }
    .kicker{
      font-weight:800;
      font-size: 12px;
      letter-spacing:.2px;
      padding: 8px 12px;
      border-radius: 999px;
      background: var(--chipGrad);
      border: 1px solid rgba(91,87,255,.20);
      color: rgba(31,36,48,.88);
    }
    .kickerAlt{
      font-weight:700;
      font-size: 12px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.75);
      border:1px solid rgba(31,36,48,.12);
      color: rgba(31,36,48,.86);
    }

    .hero h1{
      font-size: clamp(26px, 3.6vw, 44px);
      margin: 10px 0 10px;
      letter-spacing:-.6px;
      line-height:1.15;
    }
    .hero p{
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      max-width: 60ch;
    }

    .heroActions{
      display:flex; gap:12px; flex-wrap:wrap;
      margin-top: 18px;
      align-items:center;
    }
    .heroMeta{
      display:flex; gap:12px; flex-wrap:wrap;
      margin-top: 16px;
      align-items:center;
    }
    .metaPill{
      display:flex; align-items:center; gap:10px;
      border: 1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.72);
      padding: 10px 12px;
      border-radius: 16px;
      box-shadow: 0 10px 22px rgba(16,24,40,.06);
      min-width: 200px;
    }
    .metaIcon{
      width: 34px; height: 34px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(255,59,106,.18), rgba(91,87,255,.18));
      display:flex; align-items:center; justify-content:center;
      border: 1px solid rgba(91,87,255,.22);
    }
    .metaIcon svg{width:18px; height:18px; color: rgba(31,36,48,.85)}
    .metaText{
      display:flex; flex-direction:column; gap:2px; line-height:1.1;
    }
    .metaText b{font-size:13px}
    .metaText span{font-size:12px; color: var(--sub)}

    .heroRight{
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(31,36,48,.10);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 14px;
      position:relative;
      overflow:hidden;
    }
    .heroRight:before{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(600px 240px at 20% 5%, rgba(255,59,106,.22), transparent 55%),
                  radial-gradient(500px 240px at 85% 30%, rgba(91,87,255,.20), transparent 55%),
                  radial-gradient(520px 260px at 55% 90%, rgba(255,138,0,.18), transparent 60%);
      pointer-events:none;
      opacity:.9;
    }
    .heroRightInner{position:relative; z-index:1}
    .dataCards{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
    }
    @media (max-width: 520px){
      .dataCards{grid-template-columns:1fr}
      .metaPill{min-width: unset}
    }
    .dataCard{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(31,36,48,.10);
      border-radius: 16px;
      padding: 12px;
      transition: transform .16s ease, box-shadow .16s ease;
    }
    .dataCard:hover{
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(16,24,40,.10);
    }
    .dataTop{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom: 8px;
    }
    .badge{
      font-size: 12px; font-weight:800;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255,59,106,.10);
      border:1px solid rgba(255,59,106,.22);
      color: rgba(31,36,48,.90);
      white-space:nowrap;
    }
    .badge.blue{
      background: rgba(91,87,255,.10);
      border-color: rgba(91,87,255,.22);
    }
    .badge.orange{
      background: rgba(255,138,0,.12);
      border-color: rgba(255,138,0,.24);
    }
    .dataCard .value{
      font-size: 20px;
      font-weight: 900;
      letter-spacing: -0.2px;
      margin: 0 0 3px;
    }
    .dataCard .desc{
      margin:0;
      font-size: 12px;
      color: var(--muted);
      line-height:1.45;
    }

    .matchBox{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(31,36,48,.10);
      border-radius: 16px;
      padding: 12px;
      display:flex; flex-direction:column; gap:10px;
    }
    .matchTitle{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .matchTitle b{
      font-size: 13px;
      letter-spacing:.2px;
    }
    .miniTag{
      font-size: 12px; font-weight:800;
      padding: 6px 10px;
      border-radius: 999px;
      background: var(--chipGrad);
      border:1px solid rgba(91,87,255,.20);
      color: rgba(31,36,48,.90);
      white-space:nowrap;
    }
    .matchList{
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .chip{
      font-size: 12px;
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.75);
      color: rgba(31,36,48,.88);
      cursor:pointer;
      transition: transform .15s ease, border-color .15s ease, background-color .15s ease;
      user-select:none;
      display:inline-flex; align-items:center; gap:8px;
    }
    .chip:hover{transform: translateY(-1px); border-color: rgba(255,59,106,.25); background: rgba(255,59,106,.05)}
    .chip i{
      width: 8px; height: 8px; border-radius:50%;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      display:inline-block;
      box-shadow: 0 0 0 4px rgba(91,87,255,.10);
    }
    .matchHint{
      color: var(--muted);
      font-size: 12px;
      margin: 0;
    }

    .section{
      padding: 34px 0;
    }
    .sectionHeader{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
      margin-bottom: 16px;
    }
    .sectionHeader h2{
      margin:0;
      font-size: 22px;
      letter-spacing:-.3px;
    }
    .sectionHeader p{
      margin:0;
      color: var(--muted);
      font-size: 13px;
      max-width: 52ch;
    }
    .sectionHeader .rightNote{
      display:flex; align-items:center; gap:10px; justify-content:flex-end;
      flex-wrap:wrap;
    }
    .pulseDot{
      width: 10px; height: 10px; border-radius:50%;
      background: var(--primary);
      box-shadow: 0 0 0 0 rgba(255,59,106,.45);
      animation: pulse 1.7s infinite;
    }
    @keyframes pulse{
      0%{box-shadow: 0 0 0 0 rgba(255,59,106,.45)}
      70%{box-shadow: 0 0 0 10px rgba(255,59,106,0)}
      100%{box-shadow: 0 0 0 0 rgba(255,59,106,0)}
    }

    .grid2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    @media (max-width: 980px){
      .grid2{grid-template-columns:1fr}
    }

    .card{
      background: var(--card);
      border:1px solid rgba(31,36,48,.10);
      border-radius: var(--radius);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      overflow:hidden;
    }
    .cardInner{padding: 16px}
    .cardTitleRow{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .card h3{
      margin: 0 0 6px;
      font-size: 16px;
      letter-spacing:-.2px;
    }
    .card .muted{
      margin:0;
      color: var(--muted);
      font-size: 13px;
    }

    .featureList{
      margin-top: 14px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px 12px;
    }
    @media (max-width: 520px){
      .featureList{grid-template-columns:1fr}
    }
    .featureItem{
      border:1px solid rgba(31,36,48,.10);
      background: rgba(250,250,255,.60);
      border-radius: 16px;
      padding: 10px 12px;
      display:flex; gap:10px; align-items:flex-start;
    }
    .featureItem .ficon{
      width: 34px; height:34px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(255,59,106,.14), rgba(91,87,255,.14));
      border:1px solid rgba(91,87,255,.20);
      display:flex; align-items:center; justify-content:center;
      flex: 0 0 auto;
    }
    .featureItem .ficon svg{width:18px; height:18px}
    .featureItem b{display:block; font-size: 13px; margin-bottom: 2px}
    .featureItem span{display:block; color: var(--muted); font-size: 12px}

    .process{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    @media (max-width: 980px){
      .process{grid-template-columns: 1fr 1fr}
    }
    @media (max-width: 520px){
      .process{grid-template-columns:1fr}
    }
    .step{
      padding: 14px;
      border-radius: var(--radius);
      border:1px solid rgba(31,36,48,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.64));
      box-shadow: 0 10px 22px rgba(16,24,40,.06);
      position:relative;
      overflow:hidden;
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    }
    .step:before{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(420px 160px at 15% 10%, rgba(255,59,106,.16), transparent 55%),
                  radial-gradient(380px 160px at 85% 40%, rgba(91,87,255,.14), transparent 55%);
      opacity:.9;
      pointer-events:none;
    }
    .step:hover{transform: translateY(-2px); box-shadow: 0 18px 36px rgba(16,24,40,.12); border-color: rgba(91,87,255,.20)}
    .stepInner{position:relative}
    .stepNum{
      display:inline-flex; align-items:center; gap:10px;
      font-weight:900;
      letter-spacing:-.2px;
      margin-bottom: 8px;
    }
    .stepNum i{
      width: 30px; height: 30px; border-radius: 12px;
      background: linear-gradient(135deg, rgba(255,59,106,.18), rgba(91,87,255,.18));
      border:1px solid rgba(91,87,255,.22);
      display:inline-flex; align-items:center; justify-content:center;
      font-style:normal;
      font-size: 13px;
    }
    .step h3{margin:0 0 6px; font-size: 15px}
    .step p{margin:0; color: var(--muted); font-size: 13px}

    .compareWrap{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(31,36,48,.10);
      border-radius: var(--radius);
      overflow:hidden;
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
    }
    .compareHead{
      padding: 14px 16px;
      background: linear-gradient(135deg, rgba(255,59,106,.14), rgba(91,87,255,.10) 55%, rgba(255,138,0,.10));
      border-bottom:1px solid rgba(31,36,48,.08);
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .ratingBlock{
      display:flex; align-items:center; gap:12px; flex-wrap:wrap;
    }
    .stars{
      display:flex; align-items:center; gap:6px;
      font-weight:900;
    }
    .stars svg{width:18px; height:18px; color: #ffb300}
    .ratingScore{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .ratingScore b{font-size:18px; letter-spacing:-.2px}
    .ratingScore span{font-size:12px; color: var(--muted)}
    .compareNote{
      color: var(--muted);
      font-size: 13px;
      margin:0;
      max-width: 60ch;
    }

    .compareTable{
      width: 100%;
      border-collapse: collapse;
      table-layout: fixed;
      font-size: 13px;
      background:#fff;
    }
    .compareTable th, .compareTable td{
      padding: 12px 12px;
      border-bottom: 1px solid rgba(31,36,48,.08);
      vertical-align: top;
    }
    .compareTable thead th{
      text-align:left;
      background: rgba(250,250,255,.78);
      color: rgba(31,36,48,.92);
      font-weight: 900;
    }
    .compareTable .colA{
      width: 30%;
    }
    .compareTable .colB, .compareTable .colC{
      width: 35%;
    }
    .pillRow{
      display:flex; gap:8px; flex-wrap:wrap;
    }
    .smallPill{
      font-size: 12px;
      padding: 7px 10px;
      border-radius: 999px;
      border: 1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.80);
      color: rgba(31,36,48,.88);
      white-space:nowrap;
    }
    .smallPill.good{
      background: rgba(255,59,106,.08);
      border-color: rgba(255,59,106,.20);
    }
    .smallPill.mid{
      background: rgba(91,87,255,.08);
      border-color: rgba(91,87,255,.18);
    }
    .smallPill.neutral{
      background: rgba(16,24,40,.04);
      border-color: rgba(31,36,48,.12);
      color: rgba(31,36,48,.76);
    }

    .badgeSide{
      display:inline-flex; align-items:center; gap:10px;
      border-radius: 999px;
      padding: 8px 12px;
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.80);
      font-weight:800;
      font-size: 12px;
      white-space:nowrap;
    }
    .badgeSide i{
      width: 10px; height: 10px; border-radius:50%;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      box-shadow: 0 0 0 4px rgba(91,87,255,.12);
      display:inline-block;
    }

    .faqGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      align-items:start;
    }
    @media (max-width: 980px){
      .faqGrid{grid-template-columns:1fr}
    }
    .faqCard{
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.72);
      border-radius: var(--radius);
      overflow:hidden;
      box-shadow: 0 10px 22px rgba(16,24,40,.05);
    }
    details.faq{
      border-top:1px solid rgba(31,36,48,.08);
    }
    details.faq:first-child{border-top:0}
    details.faq summary{
      list-style:none;
      cursor:pointer;
      padding: 14px 14px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      font-weight: 800;
      color: rgba(31,36,48,.95);
      outline:none;
    }
    details.faq summary::-webkit-details-marker{display:none}
    .faqQ{
      display:flex; gap:10px; align-items:flex-start;
      max-width: 52ch;
    }
    .faqQ b{
      display:inline-block;
      font-weight: 900;
      color: rgba(31,36,48,.92);
      font-size: 13px;
      line-height:1.35;
    }
    .faqMark{
      width: 26px; height: 26px; border-radius: 10px;
      border:1px solid rgba(31,36,48,.10);
      background: linear-gradient(135deg, rgba(255,59,106,.12), rgba(91,87,255,.12));
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top: 1px;
    }
    .faqMark svg{width:14px; height:14px}
    .faqArrow{
      flex:0 0 auto;
      width: 28px; height: 28px;
      border-radius: 10px;
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.80);
      display:flex; align-items:center; justify-content:center;
      transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
    }
    details[open].faq summary .faqArrow{transform: rotate(180deg); border-color: rgba(91,87,255,.22); background: rgba(91,87,255,.08)}
    details[open].faq summary{
      background: rgba(255,59,106,.05);
    }
    .faqAns{
      padding: 0 14px 14px 14px;
      color: var(--muted);
      font-size: 13px;
    }
    .faqAns p{margin:0}

    .comments{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    @media (max-width: 980px){
      .comments{grid-template-columns:1fr}
    }
    .commentCard{
      padding: 16px;
      border-radius: var(--radius);
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 10px 22px rgba(16,24,40,.06);
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    }
    .commentCard:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(16,24,40,.12);
      border-color: rgba(255,59,106,.18);
    }
    .commentTop{
      display:flex; align-items:center; gap:12px; justify-content:space-between;
      margin-bottom: 10px;
    }
    .avatar{
      width: 40px; height:40px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(255,59,106,.20), rgba(91,87,255,.18));
      border: 1px solid rgba(91,87,255,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight: 900;
      color: rgba(31,36,48,.88);
    }
    .commentMeta{
      display:flex; flex-direction:column; gap:2px;
      min-width:0;
      flex:1;
    }
    .commentMeta b{
      font-size: 13px;
      letter-spacing:-.1px;
      white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
    }
    .commentMeta span{
      font-size: 12px; color: var(--muted);
      white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
    }
    .commentBody{
      color: rgba(31,36,48,.86);
      font-size: 13px;
      margin:0;
    }

    .casesGrid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 12px;
      align-items:start;
    }
    @media (max-width: 980px){
      .casesGrid{grid-template-columns:1fr}
    }
    .caseMain{
      padding: 16px;
      border-radius: var(--radius);
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
    }
    .caseGallery{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 12px;
    }
    @media (max-width: 520px){
      .caseGallery{grid-template-columns:1fr}
    }
    .imgCard{
      border-radius: 16px;
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.86);
      overflow:hidden;
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    }
    .imgCard:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(16,24,40,.12);
      border-color: rgba(91,87,255,.22);
    }
    .imgFrame{
      position:relative;
      aspect-ratio: 16 / 10;
      background: linear-gradient(135deg, rgba(255,59,106,.12), rgba(91,87,255,.12));
    }
    .imgFrame.square{
      aspect-ratio: 1 / 1;
    }
    .imgFrame img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .imgCaption{
      padding: 12px 12px 13px 12px;
      display:flex; flex-direction:column; gap:4px;
    }
    .imgCaption b{font-size: 13px}
    .imgCaption span{font-size: 12px; color: var(--muted)}

    .articleList{
      padding: 16px;
      border-radius: var(--radius);
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      overflow:hidden;
    }
    .articleHeader{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom: 10px;
    }
    .articleHeader b{
      font-size: 15px;
    }
    .articleHeader span{
      font-size: 12px;
      color: var(--muted);
    }
    .articleItems{
      display:flex; flex-direction:column; gap:10px;
    }
    .articleItem{
      border-radius: 16px;
      border:1px solid rgba(31,36,48,.10);
      background: rgba(250,250,255,.68);
      padding: 12px 12px;
      display:flex; justify-content:space-between; gap:12px; align-items:flex-start;
      transition: transform .15s ease, border-color .15s ease, background-color .15s ease;
    }
    .articleItem:hover{
      transform: translateY(-2px);
      border-color: rgba(255,59,106,.20);
      background: rgba(255,59,106,.05);
    }
    .articleItem b{
      display:block;
      font-size: 13px;
      margin-bottom: 4px;
      letter-spacing:-.1px;
    }
    .articleItem span{
      display:block;
      font-size: 12px;
      color: var(--muted);
    }
    .articleItem a{
      font-size: 12px;
      font-weight: 900;
      padding: 10px 12px;
      border-radius: 14px;
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.85);
      white-space:nowrap;
      transition: transform .15s ease, border-color .15s ease, background-color .15s ease;
    }
    .articleItem:hover a{
      transform: translateY(-1px);
      border-color: rgba(91,87,255,.20);
      background: rgba(91,87,255,.08);
    }

    .formWrap{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      align-items:start;
    }
    @media (max-width: 980px){
      .formWrap{grid-template-columns:1fr}
    }

    .formCard{
      padding: 16px;
      border-radius: var(--radius);
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
    }
    .formCard h3{margin:0 0 6px; font-size: 16px}
    .formCard p{margin:0 0 14px; color: var(--muted); font-size: 13px}
    form{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    @media (max-width: 520px){
      form{grid-template-columns:1fr}
    }
    label{
      display:flex; flex-direction:column; gap:7px;
      font-size: 12px;
      color: rgba(31,36,48,.88);
      font-weight: 800;
    }
    input, select, textarea{
      width:100%;
      border-radius: 14px;
      border:1px solid rgba(31,36,48,.12);
      background: rgba(255,255,255,.86);
      padding: 12px 12px;
      font-size: 14px;
      color: var(--text);
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease, background-color .15s ease;
    }
    textarea{min-height: 102px; resize: vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(91,87,255,.35);
      box-shadow: var(--focus);
      background:#fff;
    }
    .full{grid-column: 1 / -1}
    .formActions{
      grid-column: 1 / -1;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      flex-wrap:wrap;
      margin-top: 2px;
    }
    .privacyHint{
      font-size: 12px;
      color: var(--muted);
      max-width: 50ch;
      margin:0;
    }

    footer{
      padding: 22px 0 30px;
      background: linear-gradient(180deg, #ffffff, rgba(251,247,242,.72));
      border-top: 1px solid rgba(31,36,48,.08);
    }
    .footerGrid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 14px;
      align-items:start;
    }
    @media (max-width: 980px){
      .footerGrid{grid-template-columns:1fr}
    }
    .footerCard{
      padding: 16px;
      border-radius: var(--radius);
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 10px 22px rgba(16,24,40,.05);
    }
    .footerCard h3{margin:0 0 10px; font-size: 14px}
    .footRow{
      display:flex; gap:12px; flex-wrap:wrap;
      align-items:center;
    }
    .footItem{
      display:flex; flex-direction:column; gap:4px;
      border:1px solid rgba(31,36,48,.10);
      background: rgba(250,250,255,.62);
      padding: 10px 12px;
      border-radius: 16px;
      min-width: 190px;
    }
    .footItem span{font-size:12px; color:var(--muted)}
    .footItem b{font-size:13px}
    .footerLinks{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top: 10px;
    }
    .footerLinks a{
      font-size: 12px;
      padding: 10px 12px;
      border-radius: 14px;
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.85);
      transition: transform .15s ease, border-color .15s ease, background-color .15s ease;
      white-space:nowrap;
    }
    .footerLinks a:hover{
      transform: translateY(-1px);
      border-color: rgba(255,59,106,.20);
      background: rgba(255,59,106,.05);
    }

    .copyright{
      margin-top: 14px;
      color: var(--muted);
      font-size: 12px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }

    .floatHelp{
      position: fixed;
      right: 14px;
      bottom: 14px;
      z-index: 80;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .floatBtn{
      width: 52px; height:52px;
      border-radius: 18px;
      border:1px solid rgba(31,36,48,.12);
      background: rgba(255,255,255,.82);
      box-shadow: 0 14px 30px rgba(16,24,40,.14);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .16s ease, border-color .16s ease, background-color .16s ease;
      user-select:none;
    }
    .floatBtn:hover{transform: translateY(-2px); border-color: rgba(91,87,255,.25); background:#fff}
    .floatBtn svg{width:20px; height:20px}
    .helpPanel{
      width: 290px;
      border-radius: 18px;
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.92);
      box-shadow: 0 18px 44px rgba(16,24,40,.18);
      overflow:hidden;
      transform-origin: 100% 100%;
      animation: pop .18s ease-out;
    }
    @keyframes pop{
      from{transform: scale(.98); opacity:.0}
      to{transform: scale(1); opacity:1}
    }
    .helpPanelTop{
      padding: 12px 12px;
      background: linear-gradient(135deg, rgba(255,59,106,.14), rgba(91,87,255,.12));
      border-bottom:1px solid rgba(31,36,48,.08);
      display:flex; align-items:center; justify-content:space-between; gap:12px;
    }
    .helpPanelTop b{font-size: 13px}
    .helpClose{
      width: 32px; height:32px;
      border-radius: 12px;
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.84);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition: transform .15s ease, background-color .15s ease;
    }
    .helpClose:hover{transform: translateY(-1px); background:#fff}
    .helpClose svg{width:16px; height:16px}
    .helpBody{
      padding: 12px;
      display:flex; flex-direction:column; gap:10px;
    }
    .helpBody p{
      margin:0;
      color: var(--muted);
      font-size: 12px;
    }
    .qrRow{
      display:flex; gap:12px; align-items:flex-start;
    }
    .qrRow img{
      width: 84px;
      border-radius: 16px;
      border:1px solid rgba(31,36,48,.10);
      background:#fff;
    }
    .qrText{
      display:flex; flex-direction:column; gap:6px;
      min-width:0;
    }
    .qrText b{font-size: 13px}
    .qrText a{
      font-size: 12px;
      font-weight: 900;
      padding: 10px 12px;
      border-radius: 14px;
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.85);
      transition: transform .15s ease, border-color .15s ease, background-color .15s ease;
      width: fit-content;
    }
    .qrText a:hover{
      transform: translateY(-1px);
      border-color: rgba(255,59,106,.20);
      background: rgba(255,59,106,.05);
    }
    .toTop{
      display:inline-flex;
      align-items:center;
      gap:8px;
      border-radius: 14px;
      padding: 10px 12px;
      border:1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.86);
      color: rgba(31,36,48,.90);
      font-weight:900;
      font-size: 12px;
      cursor:pointer;
      transition: transform .16s ease, background-color .16s ease, border-color .16s ease;
      user-select:none;
    }
    .toTop:hover{transform: translateY(-2px); border-color: rgba(91,87,255,.22); background:#fff}
    .toTop svg{width:16px; height:16px}

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

    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .reveal{transition:none}
      .pulseDot{animation:none}
    }