:root{
      --bg0:#fff7f9;
      --bg1:#fffdfd;
      --card:#ffffff;
      --text:#18181b;
      --muted:#5a5a66;
      --muted2:#7a7a86;
      --line:rgba(25,18,26,.10);
      --shadow:0 18px 45px rgba(26,8,20,.10);
      --shadow2:0 10px 26px rgba(26,8,20,.10);
      --pink:#e84b7a;
      --pink2:#ff5a8f;
      --rose:#b71e4a;
      --accent:#7c1a57;
      --accent2:#ff3f86;
      --good:#0f8a5f;
      --warn:#b85a00;
      --blue:#1b57ff;
      --radius:18px;
      --radius2:24px;
      --container:1120px;
      --gap:18px;
      --focus:rgba(232,75,122,.25);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans CJK SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1100px 620px at 12% -10%, rgba(255,90,143,.25), transparent 60%),
        radial-gradient(900px 520px at 85% 10%, rgba(232,75,122,.22), transparent 58%),
        linear-gradient(180deg, var(--bg0), var(--bg1) 55%, #fff 100%);
      line-height:1.6;
      overflow-x:hidden;
    }

    a{color:inherit; text-decoration:none}
    a:focus, button:focus, input:focus, select:focus, textarea:focus{
      outline: none;
      box-shadow:0 0 0 4px var(--focus);
      border-color: rgba(232,75,122,.45) !important;
    }

    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }

    .topbar{
      position:sticky;
      top:0;
      z-index:60;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,.68);
      border-bottom:1px solid rgba(25,18,26,.08);
    }
    .topbar-inner{
      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-logo{
      width:44px;
      height:44px;
      border-radius:14px;
      background:
        radial-gradient(12px 12px at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,0) 55%),
        linear-gradient(135deg, rgba(232,75,122,.95), rgba(183,30,74,.95));
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow:0 10px 24px rgba(232,75,122,.25);
      overflow:hidden;
      flex:0 0 auto;
    }
    .brand-logo img{
      width:34px;
      height:34px;
      object-fit:contain;
      filter: drop-shadow(0 8px 12px rgba(183,30,74,.15));
    }
    .brand-meta{
      display:flex;
      flex-direction:column;
      line-height:1.15;
    }
    .brand-name{
      font-weight:820;
      letter-spacing:.2px;
      font-size:14px;
    }
    .brand-sub{
      font-size:12px;
      color:var(--muted2);
      margin-top:5px;
    }

    .nav{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:nowrap;
      justify-content:flex-end;
    }
    .nav a{
      color:var(--muted);
      font-size:13px;
      padding:10px 10px;
      border-radius:12px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .nav a:hover{
      background: rgba(232,75,122,.10);
      color: #2a1b22;
      transform: translateY(-1px);
    }

    .nav-cta{
      display:flex;
      align-items:center;
      gap:10px;
    }

    .btn{
      border:1px solid rgba(232,75,122,.22);
      background: rgba(255,255,255,.78);
      color:#2a1b22;
      border-radius:14px;
      padding:10px 14px;
      font-weight:720;
      font-size:13px;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      display:inline-flex;
      align-items:center;
      gap:10px;
      user-select:none;
      white-space:nowrap;
    }
    .btn:hover{
      transform: translateY(-1px);
      box-shadow:0 10px 24px rgba(232,75,122,.15);
      border-color: rgba(232,75,122,.35);
      background: rgba(255,255,255,.95);
    }
    .btn-primary{
      border-color: rgba(232,75,122,.45);
      background: linear-gradient(135deg, rgba(232,75,122,.98), rgba(183,30,74,.95));
      color:#fff;
      box-shadow:0 18px 40px rgba(232,75,122,.22);
    }
    .btn-primary:hover{
      box-shadow:0 22px 55px rgba(232,75,122,.26);
    }

    .icon-dot{
      width:10px;height:10px;border-radius:99px;
      background:rgba(255,255,255,.9);
      box-shadow:0 0 0 5px rgba(255,255,255,.22);
      flex:0 0 auto;
    }

    .hamburger{
      display:none;
      width:42px;height:42px;border-radius:14px;
      border:1px solid rgba(25,18,26,.10);
      background:rgba(255,255,255,.7);
      cursor:pointer;
      align-items:center;
      justify-content:center;
      transition: transform .15s ease;
    }
    .hamburger:active{transform: scale(.98)}
    .hamburger .bars{
      width:18px;height:14px; position:relative;
    }
    .hamburger .bars span{
      position:absolute; left:0; right:0;
      height:2px; border-radius:2px;
      background: linear-gradient(90deg, rgba(183,30,74,.95), rgba(232,75,122,.95));
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .hamburger .bars span:nth-child(1){top:1px}
    .hamburger .bars span:nth-child(2){top:6px}
    .hamburger .bars span:nth-child(3){top:11px}

    .mobile-panel{
      display:none;
      border-top:1px solid rgba(25,18,26,.08);
      background: rgba(255,255,255,.82);
      padding:12px 0 16px;
    }
    .mobile-panel a{
      display:block;
      padding:12px 14px;
      border-radius:14px;
      margin:8px 0;
      color:var(--muted);
      border:1px solid rgba(25,18,26,.06);
      background: rgba(255,255,255,.6);
    }
    .mobile-panel a:hover{background: rgba(232,75,122,.10); color:#2a1b22}

    .hero{
      position:relative;
      padding:52px 0 26px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:22px;
      align-items:stretch;
    }
    .hero-left{
      background:
        radial-gradient(700px 280px at 10% 0%, rgba(255,90,143,.30), transparent 60%),
        radial-gradient(520px 240px at 90% 20%, rgba(232,75,122,.24), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.58));
      border:1px solid rgba(232,75,122,.18);
      border-radius:var(--radius2);
      box-shadow: var(--shadow);
      padding:26px;
      overflow:hidden;
      position:relative;
    }
    .hero-left::before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(14px 14px at 14% 28%, rgba(255,90,143,.28), transparent 60%),
        radial-gradient(10px 10px at 55% 18%, rgba(232,75,122,.24), transparent 60%),
        radial-gradient(12px 12px at 86% 62%, rgba(183,30,74,.18), transparent 60%);
      pointer-events:none;
      opacity:.9;
    }
    .hero-content{
      position:relative;
      display:flex;
      flex-direction:column;
      gap:14px;
    }

    .kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(232,75,122,.18);
      background: rgba(255,255,255,.7);
      width: fit-content;
      color:#2a1b22;
      font-weight:720;
      font-size:12px;
    }
    .kicker .chip{
      width:12px; height:12px; border-radius:4px;
      background: linear-gradient(135deg, rgba(232,75,122,.98), rgba(183,30,74,.92));
      box-shadow:0 10px 20px rgba(232,75,122,.20);
    }

    h1{
      margin:0;
      font-size:34px;
      line-height:1.18;
      letter-spacing:-.6px;
      font-weight:900;
    }

    .hero-lead{
      margin:0;
      color:var(--muted);
      font-size:15px;
      max-width: 62ch;
    }

    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:6px;
    }

    .hero-badges{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:10px;
    }
    .badge{
      border:1px solid rgba(25,18,26,.08);
      background: rgba(255,255,255,.72);
      border-radius:16px;
      padding:10px 12px;
      display:flex;
      gap:10px;
      align-items:flex-start;
      min-width: 168px;
      flex:1 1 auto;
    }
    .badge .b-ico{
      width:34px;height:34px;border-radius:14px;
      background: linear-gradient(135deg, rgba(232,75,122,.18), rgba(183,30,74,.10));
      border:1px solid rgba(232,75,122,.22);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
    }
    .badge .b-ico svg{width:18px;height:18px; color: var(--rose)}
    .badge .b-title{
      font-weight:820;
      font-size:13px;
      margin-top:1px;
    }
    .badge .b-desc{
      font-size:12px;
      color:var(--muted2);
      margin-top:3px;
    }

    .hero-right{
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .data-panel{
      background: linear-gradient(180deg, rgba(255,255,255,.8), rgba(255,255,255,.62));
      border:1px solid rgba(25,18,26,.08);
      border-radius:var(--radius2);
      box-shadow: var(--shadow2);
      padding:18px;
      position:relative;
      overflow:hidden;
    }
    .data-panel::after{
      content:"";
      position:absolute;
      right:-60px; top:-60px;
      width:170px; height:170px;
      background: radial-gradient(circle at 30% 30%, rgba(255,90,143,.35), transparent 55%);
      pointer-events:none;
      transform: rotate(10deg);
    }
    .data-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      position:relative;
    }
    .data-title h2{
      margin:0;
      font-size:14px;
      color:#2a1b22;
      font-weight:900;
      letter-spacing:.2px;
    }
    .pill{
      border:1px solid rgba(232,75,122,.22);
      background: rgba(255,255,255,.7);
      border-radius:999px;
      padding:7px 10px;
      font-size:12px;
      color:var(--muted);
      white-space:nowrap;
    }

    .metrics{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:12px;
      position:relative;
    }
    .metric{
      border:1px solid rgba(25,18,26,.08);
      border-radius:16px;
      background: rgba(255,255,255,.68);
      padding:12px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .metric:hover{
      transform: translateY(-2px);
      box-shadow:0 16px 34px rgba(232,75,122,.12);
      border-color: rgba(232,75,122,.22);
    }
    .metric .num{
      font-weight:950;
      font-size:20px;
      letter-spacing:-.4px;
    }
    .metric .lab{
      font-size:12px;
      color:var(--muted2);
      margin-top:6px;
      min-height: 32px;
    }

    .match-card{
      border-radius:var(--radius2);
      border:1px solid rgba(232,75,122,.18);
      background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.62));
      box-shadow: var(--shadow2);
      padding:18px;
      overflow:hidden;
      position:relative;
    }
    .match-card::before{
      content:"";
      position:absolute;
      left:-70px; bottom:-70px;
      width:190px; height:190px;
      background: radial-gradient(circle at 30% 30%, rgba(232,75,122,.25), transparent 60%);
      pointer-events:none;
    }
    .match-inner{position:relative; display:flex; flex-direction:column; gap:12px}
    .match-inner h3{
      margin:0;
      font-size:15px;
      font-weight:920;
      letter-spacing:.2px;
    }
    .match-list{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .tag{
      border:1px solid rgba(25,18,26,.08);
      background: rgba(255,255,255,.66);
      border-radius:999px;
      padding:9px 10px;
      font-size:12px;
      color:var(--muted);
      display:flex;
      align-items:center;
      gap:8px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .tag i{
      width:9px;height:9px;border-radius:4px;
      background: linear-gradient(135deg, rgba(232,75,122,.95), rgba(183,30,74,.85));
      flex:0 0 auto;
      box-shadow:0 10px 20px rgba(232,75,122,.18);
    }

    section{padding:26px 0}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      margin-bottom:14px;
    }
    .section-head h2{
      margin:0;
      font-size:22px;
      font-weight:950;
      letter-spacing:-.3px;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      max-width:60ch;
    }

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .grid-2{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap:14px;
    }

    .card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(25,18,26,.08);
      border-radius:var(--radius);
      padding:16px;
      box-shadow: 0 10px 26px rgba(26,8,20,.05);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 45px rgba(26,8,20,.10);
      border-color: rgba(232,75,122,.20);
    }
    .card .card-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:10px;
    }
    .card h3{
      margin:0;
      font-size:15px;
      font-weight:920;
      letter-spacing:.1px;
    }
    .card p{
      margin:0;
      color:var(--muted);
      font-size:13px;
    }
    .card .meta{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      margin-top:12px;
    }
    .chip2{
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(232,75,122,.18);
      background: rgba(255,255,255,.7);
      color:var(--muted);
      white-space:nowrap;
    }

    .step{
      display:flex;
      gap:14px;
      align-items:flex-start;
    }
    .step .s-num{
      width:40px;height:40px;border-radius:16px;
      background: linear-gradient(135deg, rgba(232,75,122,.20), rgba(183,30,74,.10));
      border:1px solid rgba(232,75,122,.22);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:950;
      color:var(--rose);
      flex:0 0 auto;
    }
    .step .s-body h3{
      margin:2px 0 6px;
      font-size:15px; font-weight:920;
    }
    .step .s-body p{margin:0; color:var(--muted); font-size:13px}

    .divider{
      height:1px;
      background: linear-gradient(90deg, rgba(232,75,122,.0), rgba(232,75,122,.28), rgba(232,75,122,.0));
      margin:18px 0;
    }

    .comparison{
      overflow:hidden;
      border-radius:var(--radius2);
      border:1px solid rgba(25,18,26,.08);
      background: rgba(255,255,255,.72);
      box-shadow: var(--shadow2);
    }
    .comparison-top{
      padding:16px 16px 0;
    }
    .rating-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }
    .stars{
      display:flex;
      align-items:center;
      gap:8px;
    }
    .star{
      width:18px;height:18px;
      display:inline-block;
      background: conic-gradient(from 180deg, rgba(232,75,122,.95), rgba(183,30,74,.95));
      clip-path: polygon(50% 0%, 63% 35%, 100% 38%, 72% 60%, 82% 100%, 50% 78%, 18% 100%, 28% 60%, 0% 38%, 37% 35%);
      box-shadow:0 10px 20px rgba(232,75,122,.18);
    }
    .rating-text{
      font-weight:950;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .rating-sub{
      color:var(--muted);
      font-size:13px;
      margin-top:4px;
    }

    .score-badge{
      border:1px solid rgba(232,75,122,.22);
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
      border-radius:18px;
      padding:10px 12px;
      display:flex;
      align-items:center;
      gap:10px;
    }
    .score-badge .s-big{
      font-weight:1000;
      font-size:22px;
      letter-spacing:-.6px;
    }
    .score-badge .s-small{
      color:var(--muted);
      font-size:12px;
      max-width: 18ch;
    }

    .table-wrap{
      padding:14px 12px 16px;
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width: 860px;
    }
    th, td{
      padding:12px 10px;
      border-bottom:1px solid rgba(25,18,26,.08);
      font-size:13px;
      text-align:left;
      vertical-align:middle;
    }
    th{
      font-size:12px;
      color:#2a1b22;
      font-weight:900;
      background: linear-gradient(180deg, rgba(255,255,255,.8), rgba(255,255,255,.6));
      position:sticky;
      top:0;
      z-index:2;
      border-bottom:1px solid rgba(232,75,122,.18);
    }
    tr:last-child td{border-bottom:none}
    .td-bold{font-weight:920}
    .ok{color:var(--good); font-weight:920}
    .note{color:var(--muted2)}
    .compare-actions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      padding:0 16px 16px;
    }

    .h2-compact{
      font-size:16px;
      font-weight:950;
      margin:0;
    }

    .timeline{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .time-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px 14px;
      border-radius:18px;
      border:1px solid rgba(25,18,26,.08);
      background: rgba(255,255,255,.68);
    }
    .time-bullet{
      width:40px;height:40px;border-radius:16px;
      background: linear-gradient(135deg, rgba(232,75,122,.20), rgba(183,30,74,.10));
      border:1px solid rgba(232,75,122,.22);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:1000;
      color:var(--rose);
      flex:0 0 auto;
      margin-top:2px;
    }
    .time-body h3{margin:0; font-size:15px; font-weight:920}
    .time-body p{margin:6px 0 0; color:var(--muted); font-size:13px}

    .faq{
      border-radius:var(--radius2);
      border:1px solid rgba(25,18,26,.08);
      background: rgba(255,255,255,.72);
      box-shadow: var(--shadow2);
      overflow:hidden;
    }
    .faq-item{
      border-bottom:1px solid rgba(25,18,26,.08);
    }
    .faq-item:last-child{border-bottom:none}
    .faq-q{
      width:100%;
      background: transparent;
      border:none;
      padding:14px 16px;
      display:flex;
      gap:12px;
      align-items:center;
      justify-content:space-between;
      cursor:pointer;
      text-align:left;
      font-weight:880;
      font-size:14px;
      color:#2a1b22;
    }
    .faq-q .q-left{
      display:flex; gap:12px; align-items:flex-start;
    }
    .q-ico{
      width:28px;height:28px;border-radius:12px;
      background: linear-gradient(135deg, rgba(232,75,122,.18), rgba(183,30,74,.10));
      border:1px solid rgba(232,75,122,.22);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .q-ico svg{width:14px;height:14px; color:var(--rose)}
    .chev{
      width:34px;height:34px;border-radius:14px;
      border:1px solid rgba(25,18,26,.08);
      background: rgba(255,255,255,.55);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .faq-item[data-open="true"] .chev{
      transform: rotate(180deg);
      border-color: rgba(232,75,122,.22);
      background: rgba(232,75,122,.08);
    }
    .faq-a{
      padding:0 16px 14px;
      display:none;
    }
    .faq-item[data-open="true"] .faq-a{display:block}
    .faq-a p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      max-width: 95ch;
    }

    .comments{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .comment{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(25,18,26,.08);
      border-radius:var(--radius);
      padding:16px;
      box-shadow: 0 10px 26px rgba(26,8,20,.05);
      position:relative;
      overflow:hidden;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .comment:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 45px rgba(26,8,20,.10);
      border-color: rgba(232,75,122,.20);
    }
    .comment-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:10px;
    }
    .avatar{
      width:40px;height:40px;border-radius:16px;
      border:1px solid rgba(232,75,122,.20);
      background: linear-gradient(135deg, rgba(232,75,122,.16), rgba(183,30,74,.10));
      display:flex; align-items:center; justify-content:center;
      font-weight:1000; color:var(--rose);
    }
    .who{
      display:flex; flex-direction:column; line-height:1.15;
      margin-left:10px;
    }
    .who b{font-weight:950; font-size:14px}
    .who span{font-size:12px; color:var(--muted2); margin-top:4px}
    .person{
      display:flex; align-items:center; gap:10px;
    }
    .comment-stars{
      display:flex; gap:2px;
    }
    .comment-stars .star-sm{
      width:12px;height:12px;
      background: conic-gradient(from 180deg, rgba(232,75,122,.98), rgba(183,30,74,.98));
      clip-path: polygon(50% 0%, 63% 35%, 100% 38%, 72% 60%, 82% 100%, 50% 78%, 18% 100%, 28% 60%, 0% 38%, 37% 35%);
      opacity:.95;
    }
    .comment p{
      margin:0;
      color:var(--muted);
      font-size:13px;
    }

    .article-list{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .article{
      padding:16px;
      border-radius:var(--radius);
      border:1px solid rgba(25,18,26,.08);
      background: rgba(255,255,255,.72);
      box-shadow: 0 10px 26px rgba(26,8,20,.05);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .article:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 45px rgba(26,8,20,.10);
      border-color: rgba(232,75,122,.20);
    }
    .article .a-head{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .article h3{
      margin:0;
      font-size:14px;
      font-weight:940;
      letter-spacing:.1px;
    }
    .article .a-meta{
      display:flex; gap:8px; flex-wrap:wrap;
    }
    .article .a-meta span{
      font-size:12px;
      color:var(--muted2);
      border:1px solid rgba(25,18,26,.08);
      padding:6px 9px;
      border-radius:999px;
      background: rgba(255,255,255,.62);
    }
    .article p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      min-height: 40px;
    }
    .article a.read{
      margin-top:auto;
      color:#2a1b22;
      font-weight:900;
      font-size:13px;
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(232,75,122,.20);
      background: rgba(255,255,255,.72);
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
      width: fit-content;
    }
    .article a.read:hover{
      transform: translateY(-1px);
      box-shadow:0 16px 34px rgba(232,75,122,.12);
      background: rgba(255,255,255,.95);
    }

    .form-card{
      border-radius:var(--radius2);
      border:1px solid rgba(25,18,26,.08);
      background:
        radial-gradient(600px 240px at 10% 0%, rgba(255,90,143,.18), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.62));
      box-shadow: var(--shadow2);
      padding:18px;
      overflow:hidden;
      position:relative;
    }
    .form-card::after{
      content:"";
      position:absolute;
      right:-80px; bottom:-90px;
      width:220px;height:220px;
      background: radial-gradient(circle at 30% 30%, rgba(232,75,122,.26), transparent 60%);
      pointer-events:none;
    }
    .form-grid{
      position:relative;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .field{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    label{
      font-weight:850;
      font-size:12px;
      color:#2a1b22;
    }
    input, select, textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(25,18,26,.10);
      background: rgba(255,255,255,.78);
      padding:11px 12px;
      font-size:13px;
      color:#1d1d22;
      transition: border-color .15s ease, background .15s ease, transform .15s ease;
    }
    textarea{min-height:112px; resize:vertical}
    .form-actions{
      grid-column: 1 / -1;
      display:flex;
      gap:12px;
      align-items:center;
      justify-content:space-between;
      flex-wrap:wrap;
      margin-top:4px;
      position:relative;
    }
    .privacy{
      color:var(--muted2);
      font-size:12px;
      max-width: 52ch;
    }
    .toast{
      position:fixed;
      left:50%;
      bottom:24px;
      transform: translateX(-50%);
      background: rgba(26,18,25,.92);
      color:#fff;
      padding:12px 14px;
      border-radius:16px;
      box-shadow: 0 20px 55px rgba(0,0,0,.28);
      display:none;
      z-index:90;
      max-width: calc(100vw - 24px);
      font-size:13px;
    }

    .footer{
      padding:22px 0 26px;
      background: linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.7) 20%, rgba(255,255,255,.85));
      border-top:1px solid rgba(25,18,26,.08);
    }
    .footer-inner{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:16px;
      align-items:start;
    }
    .foot-card{
      border-radius:var(--radius2);
      border:1px solid rgba(25,18,26,.08);
      background: rgba(255,255,255,.72);
      padding:16px;
      box-shadow: 0 10px 26px rgba(26,8,20,.05);
    }
    .foot-row{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    .foot-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:12px;
    }
    .foot-links a{
      font-size:12px;
      color:var(--muted);
      border:1px solid rgba(25,18,26,.08);
      padding:8px 10px;
      border-radius:999px;
      background: rgba(255,255,255,.62);
      transition: border-color .15s ease, transform .15s ease, background .15s ease, color .15s ease;
    }
    .foot-links a:hover{
      border-color: rgba(232,75,122,.22);
      transform: translateY(-1px);
      background: rgba(232,75,122,.08);
      color:#2a1b22;
    }
    .fineprint{
      color:var(--muted2);
      font-size:12px;
      margin-top:12px;
    }
    .right-cta{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .net-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
      margin-top:10px;
    }
    .contact-chip{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(25,18,26,.08);
      background: rgba(255,255,255,.62);
    }
    .contact-chip b{font-weight:930; font-size:13px}
    .contact-chip span{color:var(--muted2); font-size:12px; margin-top:4px; display:block}
    .contact-chip .qrcode{
      width:56px;height:56px;
      border-radius:16px;
      border:1px solid rgba(232,75,122,.20);
      background: rgba(255,255,255,.8);
      overflow:hidden;
      flex:0 0 auto;
      display:flex; align-items:center; justify-content:center;
    }
    .contact-chip .qrcode img{width:100%; height:100%; object-fit:cover}
    .bottom-bar{
      margin-top:14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      color:var(--muted2);
      font-size:12px;
    }

    .float-help{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:80;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .float-btn{
      display:inline-flex;
      gap:10px;
      align-items:center;
      border-radius:18px;
      padding:11px 12px;
      border:1px solid rgba(232,75,122,.25);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 45px rgba(26,8,20,.12);
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
      user-select:none;
    }
    .float-btn:hover{
      transform: translateY(-2px);
      box-shadow: 0 24px 60px rgba(26,8,20,.18);
      background: rgba(255,255,255,.98);
    }
    .float-btn .fb-ico{
      width:36px;height:36px;border-radius:16px;
      background: linear-gradient(135deg, rgba(232,75,122,.22), rgba(183,30,74,.10));
      border:1px solid rgba(232,75,122,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .float-btn .fb-ico svg{width:18px;height:18px; color:var(--rose)}
    .float-btn .fb-text{
      display:flex; flex-direction:column; line-height:1.15;
    }
    .float-btn .fb-text b{font-size:13px; font-weight:950}
    .float-btn .fb-text span{font-size:12px; color:var(--muted2); margin-top:4px}

    .to-top{
      width:44px;height:44px;border-radius:18px;
      border:1px solid rgba(25,18,26,.10);
      background: rgba(255,255,255,.86);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      box-shadow: 0 18px 45px rgba(26,8,20,.12);
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .to-top:hover{
      transform: translateY(-2px);
      box-shadow: 0 24px 60px rgba(26,8,20,.18);
    }
    .to-top svg{width:18px;height:18px; color:var(--rose)}

    .scroll-reveal{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .55s ease, transform .55s ease;
    }
    .scroll-reveal.is-inview{
      opacity:1;
      transform: translateY(0);
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .grid-3{grid-template-columns: 1fr}
      .grid-2{grid-template-columns: 1fr}
      .comments{grid-template-columns: 1fr}
      .article-list{grid-template-columns: 1fr}
      .form-grid{grid-template-columns: 1fr}
      .footer-inner{grid-template-columns: 1fr}
      table{min-width: 760px}
      .nav{display:none}
      .hamburger{display:flex}
      .mobile-panel{display:block}
      .hero-left{padding:20px}
      h1{font-size:30px}
    }