:root{
      --bg0:#fff7f9;
      --bg1:#fff;
      --ink:#14141a;
      --muted:#4b4b57;
      --subtle:#6a6a79;
      --line:rgba(20,20,26,.12);
      --line2:rgba(20,20,26,.08);
      --card:#ffffff;
      --shadow: 0 14px 36px rgba(20,20,26,.10);
      --shadow2: 0 10px 24px rgba(20,20,26,.08);
      --pink:#d93b6c;
      --pink2:#ff5b8a;
      --pink3:#ff2f6f;
      --coral:#ff8aa8;
      --gold:#ffb74a;
      --blue:#2d6cdf;
      --radius:18px;
      --radius2:14px;
      --radius3:12px;
      --focus: 0 0 0 4px rgba(217,59,108,.18);
      --container: 1120px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", sans-serif;
      color:var(--ink);
      background:
        radial-gradient(900px 420px at 12% 0%, rgba(217,59,108,.20), transparent 55%),
        radial-gradient(760px 420px at 85% 8%, rgba(255,91,138,.16), transparent 55%),
        linear-gradient(180deg, #fff7f9 0%, #ffffff 35%, #ffffff 100%);
      overflow-x:hidden;
    }

    a{color:inherit}
    .container{
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    .skip{
      position:absolute; left:-9999px; top:8px;
      padding:10px 12px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:10px;
      z-index:9999;
    }
    .skip:focus{left:14px; outline:none; box-shadow:var(--focus)}

    header{
      position:sticky;
      top:0;
      z-index:50;
      background: rgba(255,255,255,.72);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(20,20,26,.06);
    }
    .navwrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding: 12px 0;
      gap:16px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 220px;
    }
    .logo{
      width: 42px;
      height: 42px;
      border-radius: 14px;
      overflow:hidden;
      box-shadow: 0 10px 20px rgba(217,59,108,.18);
      background:#fff;
      border:1px solid rgba(20,20,26,.06);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
    }
    .logo img{
      width:100%;
      height:auto;
      display:block;
    }
    .brand h1{
      font-size: 14px;
      margin:0;
      letter-spacing:.2px;
      line-height:1.1;
    }
    .brand .tag{
      font-size: 12px;
      color:var(--subtle);
      margin-top:4px;
    }

    .navlinks{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:14px;
      flex-wrap:wrap;
      max-width: 720px;
    }

    .navlinks a{
      text-decoration:none;
      font-size:13px;
      color: rgba(20,20,26,.86);
      padding:8px 10px;
      border-radius: 12px;
      border:1px solid transparent;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .navlinks a:hover{
      background: rgba(217,59,108,.08);
      border-color: rgba(217,59,108,.22);
      transform: translateY(-1px);
    }
    .navcta{
      display:flex;
      align-items:center;
      gap:10px;
    }

    .btn{
      appearance:none;
      border:1px solid rgba(20,20,26,.12);
      background:#fff;
      color: var(--ink);
      padding: 10px 14px;
      border-radius: 14px;
      cursor:pointer;
      font-weight: 650;
      font-size: 13px;
      line-height: 1;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
      text-decoration:none;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      white-space:nowrap;
    }
    .btn:focus{outline:none; box-shadow: var(--focus)}
    .btn:hover{transform: translateY(-1px); box-shadow: 0 14px 30px rgba(20,20,26,.10)}
    .btn.primary{
      border-color: rgba(217,59,108,.28);
      background: linear-gradient(135deg, rgba(217,59,108,1) 0%, rgba(255,91,138,1) 100%);
      color:#fff;
      box-shadow: 0 14px 30px rgba(217,59,108,.22);
    }
    .btn.primary:hover{
      box-shadow: 0 18px 38px rgba(217,59,108,.28);
    }
    .btn.ghost{
      background: rgba(217,59,108,.06);
      border-color: rgba(217,59,108,.22);
    }

    .hamb{
      display:none;
      border:1px solid rgba(20,20,26,.12);
      background: rgba(255,255,255,.9);
      border-radius: 14px;
      padding:10px 12px;
      cursor:pointer;
    }
    .hamb:focus{outline:none; box-shadow:var(--focus)}
    .hamb .bar{
      width:18px; height:2px; background:rgba(20,20,26,.8); display:block;
      margin:4px 0; border-radius:2px;
    }

    .mobilePanel{
      display:none;
      padding-bottom: 14px;
    }
    .mobilePanel .row{
      display:flex; flex-direction:column; gap:8px;
      padding-top:10px;
    }
    .mobilePanel a, .mobilePanel button{
      width:100%;
      text-align:left;
      justify-content:flex-start;
    }
    .mobilePanel .btn{
      padding: 12px 14px;
      border-radius: 16px;
    }

    main{padding-bottom: 10px}
    section{padding: 64px 0}
    .hero{
      padding: 56px 0 26px;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 18px;
      align-items: start;
    }

    .heroCard{
      background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.74));
      border: 1px solid rgba(20,20,26,.08);
      border-radius: 26px;
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .heroCard::before{
      content:"";
      position:absolute;
      inset:-1px;
      background:
        radial-gradient(420px 280px at 22% 6%, rgba(217,59,108,.28), transparent 55%),
        radial-gradient(520px 320px at 85% 0%, rgba(255,91,138,.22), transparent 58%),
        linear-gradient(135deg, rgba(255,183,74,.14), rgba(45,108,223,.08));
      opacity:.95;
      pointer-events:none;
    }
    .heroInner{
      position:relative;
      padding: 26px 22px 22px;
    }

    .kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      background: rgba(255,255,255,.8);
      border:1px solid rgba(20,20,26,.08);
      padding: 8px 12px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 12px;
      color: rgba(20,20,26,.84);
    }
    .dot{
      width:9px; height:9px; border-radius:50%;
      background: linear-gradient(135deg, var(--pink) 0%, var(--pink2) 100%);
      box-shadow: 0 0 0 5px rgba(217,59,108,.14);
    }

    .heroTitle{
      margin: 14px 0 10px;
      font-size: clamp(26px, 3.2vw, 40px);
      line-height: 1.14;
      letter-spacing: -0.6px;
    }
    .heroTitle .em{
      background: linear-gradient(135deg, rgba(217,59,108,1), rgba(255,91,138,1));
      -webkit-background-clip:text;
      background-clip:text;
      color: transparent;
    }

    .heroLead{
      margin: 0;
      color: rgba(20,20,26,.78);
      font-size: 14.5px;
      line-height: 1.7;
      max-width: 60ch;
    }

    .heroActions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top: 16px;
      align-items:center;
    }
    .heroMini{
      display:flex;
      gap:10px;
      align-items:flex-start;
      margin-top: 16px;
      flex-wrap:wrap;
    }
    .miniPill{
      display:flex;
      align-items:flex-start;
      gap:10px;
      padding: 12px 12px;
      border-radius: 16px;
      border:1px solid rgba(20,20,26,.08);
      background: rgba(255,255,255,.74);
      min-width: 220px;
      flex: 1 1 220px;
    }
    .miniIcon{
      width:34px; height:34px;
      border-radius: 14px;
      background: rgba(217,59,108,.10);
      border:1px solid rgba(217,59,108,.18);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
    }
    .miniPill h3{
      margin:0;
      font-size: 13px;
      letter-spacing:-.2px;
    }
    .miniPill p{
      margin:4px 0 0;
      color: rgba(20,20,26,.72);
      font-size: 12.5px;
      line-height: 1.45;
    }

    .sidePanel{
      display:flex;
      flex-direction:column;
      gap: 14px;
    }
    .sideCard{
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(20,20,26,.08);
      border-radius: 22px;
      box-shadow: var(--shadow2);
      padding: 16px 16px;
      position:relative;
      overflow:hidden;
    }
    .sideCard::after{
      content:"";
      position:absolute;
      width: 180px; height: 180px;
      border-radius: 50%;
      right:-90px; top:-90px;
      background: radial-gradient(circle at 30% 30%, rgba(255,91,138,.26), transparent 60%);
      pointer-events:none;
    }

    .sideTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
      position:relative;
    }
    .sideTop h2{
      margin:0;
      font-size: 14px;
      letter-spacing:-.2px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(20,20,26,.10);
      background: rgba(255,255,255,.8);
      font-weight:700;
      font-size:12px;
      color: rgba(20,20,26,.82);
      white-space:nowrap;
    }
    .chip .s{
      width:8px; height:8px; border-radius:50%;
      background: var(--pink2);
      box-shadow:0 0 0 4px rgba(255,91,138,.14);
    }

    .metricGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 14px;
      position:relative;
    }
    .metric{
      border-radius: 18px;
      border: 1px solid rgba(20,20,26,.08);
      background: rgba(255,255,255,.74);
      padding: 12px 12px;
    }
    .metric .num{
      font-size: 20px;
      font-weight: 860;
      letter-spacing: -0.4px;
    }
    .metric .lbl{
      margin-top:6px;
      color: rgba(20,20,26,.70);
      font-size: 12.5px;
      line-height: 1.35;
    }

    .sideList{
      margin-top: 12px;
      display:flex;
      flex-direction:column;
      gap:10px;
      position:relative;
    }
    .sideItem{
      display:flex;
      gap:10px;
      align-items:flex-start;
    }
    .tick{
      width:22px; height:22px;
      border-radius: 10px;
      background: rgba(45,108,223,.10);
      border:1px solid rgba(45,108,223,.18);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .sideItem p{
      margin:0;
      color: rgba(20,20,26,.74);
      font-size: 12.8px;
      line-height: 1.45;
    }

    .sectionTitle{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin-bottom: 20px;
    }
    .sectionTitle h2{
      margin:0;
      font-size: 22px;
      letter-spacing: -0.3px;
    }
    .sectionTitle p{
      margin:0;
      color: rgba(20,20,26,.68);
      font-size: 13.5px;
      line-height: 1.6;
      max-width: 52ch;
    }

    .cards3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .card{
      background: rgba(255,255,255,.82);
      border: 1px solid rgba(20,20,26,.08);
      border-radius: var(--radius);
      padding: 16px 16px;
      box-shadow: 0 12px 26px rgba(20,20,26,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 42px rgba(20,20,26,.10);
      border-color: rgba(217,59,108,.22);
    }
    .card .icon{
      width:40px; height:40px;
      border-radius: 16px;
      background: rgba(217,59,108,.10);
      border:1px solid rgba(217,59,108,.18);
      display:flex;
      align-items:center;
      justify-content:center;
      margin-bottom: 12px;
    }
    .card h3{
      margin:0;
      font-size: 14.5px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:8px 0 0;
      color: rgba(20,20,26,.70);
      font-size: 13px;
      line-height: 1.7;
    }
    .card .sub{
      margin-top: 10px;
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .badge{
      font-size: 12px;
      border-radius: 999px;
      padding: 6px 10px;
      border:1px solid rgba(20,20,26,.10);
      background: rgba(255,255,255,.70);
      color: rgba(20,20,26,.78);
      white-space:nowrap;
    }

    .steps{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 14px;
      align-items:start;
    }
    .stepList{
      display:grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .step{
      display:flex;
      gap:12px;
      padding: 14px 14px;
      border-radius: 18px;
      border:1px solid rgba(20,20,26,.08);
      background: rgba(255,255,255,.80);
      transition: transform .18s ease, border-color .18s ease;
    }
    .step:hover{transform: translateY(-2px); border-color: rgba(217,59,108,.22)}
    .step .no{
      width:38px; height:38px;
      border-radius: 16px;
      background: rgba(217,59,108,.10);
      border:1px solid rgba(217,59,108,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      color: rgba(217,59,108,1);
      flex:0 0 auto;
    }
    .step h3{
      margin:0;
      font-size: 14.5px;
    }
    .step p{
      margin:6px 0 0;
      color: rgba(20,20,26,.70);
      font-size: 13px;
      line-height: 1.6;
    }

    .callout{
      background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.76));
      border:1px solid rgba(20,20,26,.08);
      border-radius: 22px;
      box-shadow: var(--shadow2);
      padding: 16px 16px;
      position:relative;
      overflow:hidden;
    }
    .callout::before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(520px 260px at 20% 0%, rgba(217,59,108,.20), transparent 55%),
        radial-gradient(520px 260px at 100% 30%, rgba(255,183,74,.12), transparent 62%);
      pointer-events:none;
      opacity:.9;
    }
    .callout .inner{position:relative}
    .callout h3{
      margin:0;
      font-size: 14.8px;
      letter-spacing:-.2px;
    }
    .callout p{
      margin:10px 0 0;
      color: rgba(20,20,26,.72);
      font-size: 13px;
      line-height: 1.7;
    }
    .callout .list{
      margin-top: 12px;
      display:grid;
      gap:10px;
    }
    .callout .rowItem{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding: 10px 10px;
      border-radius: 16px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(20,20,26,.08);
    }
    .spark{
      width:28px; height:28px;
      border-radius: 12px;
      background: rgba(255,183,74,.14);
      border:1px solid rgba(255,183,74,.28);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .rowItem strong{
      font-size: 12.8px;
      display:block;
    }
    .rowItem span{
      display:block;
      margin-top:3px;
      color: rgba(20,20,26,.68);
      font-size: 12.5px;
      line-height: 1.45;
    }

    .twoCol{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items:start;
    }

    .networkGrid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 14px;
      align-items:start;
    }

    .tableWrap{
      border-radius: 22px;
      background: rgba(255,255,255,.82);
      border:1px solid rgba(20,20,26,.08);
      box-shadow: 0 12px 26px rgba(20,20,26,.06);
      overflow:hidden;
    }
    .tableTop{
      padding: 14px 16px;
      border-bottom:1px solid rgba(20,20,26,.08);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .tableTop .left{
      display:flex;
      flex-direction:column;
      gap:4px;
    }
    .tableTop h3{
      margin:0;
      font-size: 15px;
      letter-spacing:-.2px;
    }
    .tableTop .score{
      display:flex; align-items:baseline; gap:10px;
    }
    .starBox{
      display:inline-flex;
      align-items:center;
      gap:6px;
      font-weight:900;
      color: rgba(217,59,108,1);
    }
    .tableTop .score .s9{
      font-size: 26px;
      font-weight: 950;
      letter-spacing: -0.7px;
    }
    .tableTop .score .full{
      color: rgba(20,20,26,.65);
      font-weight:700;
      font-size: 13px;
    }

    .tableScroll{
      overflow:auto;
      -webkit-overflow-scrolling: touch;
    }
    table{
      width:100%;
      border-collapse: collapse;
      min-width: 720px;
      background:#fff;
    }
    th, td{
      padding: 12px 12px;
      border-bottom:1px solid rgba(20,20,26,.08);
      font-size: 13px;
      vertical-align: middle;
      text-align:left;
      white-space:nowrap;
    }
    th{
      background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.78));
      font-weight: 900;
      color: rgba(20,20,26,.88);
    }
    td .good{
      display:inline-flex; align-items:center; gap:8px;
      padding: 6px 10px;
      border-radius: 999px;
      border:1px solid rgba(217,59,108,.22);
      background: rgba(217,59,108,.08);
      font-weight: 850;
      color: rgba(217,59,108,1);
    }
    td .neutral{
      display:inline-flex; align-items:center; gap:8px;
      padding: 6px 10px;
      border-radius: 999px;
      border:1px solid rgba(20,20,26,.10);
      background: rgba(20,20,26,.03);
      font-weight: 780;
      color: rgba(20,20,26,.78);
    }

    .matchGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .matchCard{
      background: rgba(255,255,255,.82);
      border:1px solid rgba(20,20,26,.08);
      border-radius: 22px;
      box-shadow: 0 12px 26px rgba(20,20,26,.06);
      padding: 16px 16px;
    }
    .segRow{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top: 10px;
    }
    .seg{
      border:1px solid rgba(20,20,26,.10);
      background: rgba(255,255,255,.72);
      border-radius: 999px;
      padding: 8px 12px;
      font-size: 12.5px;
      color: rgba(20,20,26,.78);
      cursor:pointer;
      user-select:none;
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .seg:hover{transform: translateY(-1px); border-color: rgba(217,59,108,.22); background: rgba(217,59,108,.06)}
    .seg[data-active="true"]{
      border-color: rgba(217,59,108,.30);
      background: rgba(217,59,108,.10);
      color: rgba(217,59,108,1);
      font-weight: 900;
    }
    .seg .mini{
      width:8px; height:8px; border-radius:50%;
      background: rgba(20,20,26,.2);
    }
    .seg[data-active="true"] .mini{background: linear-gradient(135deg,var(--pink),var(--pink2))}

    .matchResult{
      margin-top: 12px;
      padding: 14px 14px;
      border-radius: 18px;
      border:1px solid rgba(20,20,26,.08);
      background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.75));
    }
    .matchResult h3{
      margin:0;
      font-size: 14.8px;
      letter-spacing:-.2px;
    }
    .matchResult p{
      margin:8px 0 0;
      color: rgba(20,20,26,.70);
      font-size: 13px;
      line-height: 1.7;
    }

    .reviews{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .review{
      border-radius: 22px;
      background: rgba(255,255,255,.82);
      border:1px solid rgba(20,20,26,.08);
      box-shadow: 0 12px 26px rgba(20,20,26,.06);
      padding: 16px 16px;
      position:relative;
      overflow:hidden;
    }
    .review::after{
      content:"";
      position:absolute;
      left:-60px; top:-70px;
      width: 160px; height: 160px;
      background: radial-gradient(circle at 30% 30%, rgba(217,59,108,.20), transparent 60%);
      pointer-events:none;
    }
    .review .top{
      position:relative;
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .avatar{
      width:38px; height:38px;
      border-radius: 16px;
      border:1px solid rgba(20,20,26,.10);
      background: rgba(217,59,108,.08);
      display:flex; align-items:center; justify-content:center;
      font-weight: 950;
      color: rgba(217,59,108,1);
      flex:0 0 auto;
    }
    .review h3{
      margin:0;
      font-size: 14px;
      letter-spacing:-.2px;
    }
    .review .role{
      margin-top:5px;
      color: rgba(20,20,26,.66);
      font-size: 12.6px;
    }
    .review .stars{
      color: rgba(255,171,55,1);
      font-size: 12px;
      font-weight: 950;
      white-space:nowrap;
      margin-top:2px;
    }
    .review p{
      position:relative;
      margin: 12px 0 0;
      color: rgba(20,20,26,.74);
      font-size: 13px;
      line-height: 1.75;
    }

    .articles{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .articleList{
      background: rgba(255,255,255,.82);
      border:1px solid rgba(20,20,26,.08);
      border-radius: 22px;
      box-shadow: 0 12px 26px rgba(20,20,26,.06);
      overflow:hidden;
    }
    .articleList .head{
      padding: 14px 16px;
      border-bottom:1px solid rgba(20,20,26,.08);
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .articleList .head h3{margin:0; font-size: 15px; letter-spacing:-.2px}
    .articleList .head a{
      text-decoration:none;
      color: rgba(217,59,108,1);
      font-weight: 900;
      font-size: 13px;
    }
    .articleItems{
      padding: 10px 10px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .articleItem{
      padding: 12px 12px;
      border-radius: 18px;
      border:1px solid rgba(20,20,26,.08);
      background: rgba(255,255,255,.72);
      transition: transform .18s ease, border-color .18s ease;
    }
    .articleItem:hover{transform: translateY(-2px); border-color: rgba(217,59,108,.22)}
    .articleItem a{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      text-decoration:none;
      color: inherit;
    }
    .articleItem h4{
      margin:0;
      font-size: 13.6px;
      letter-spacing:-.2px;
      line-height:1.35;
    }
    .articleItem .meta{
      margin-top:6px;
      color: rgba(20,20,26,.64);
      font-size: 12.2px;
    }
    .articleItem .arrow{
      color: rgba(217,59,108,1);
      font-weight: 950;
      flex:0 0 auto;
      margin-top:2px;
    }

    .accordion{
      background: rgba(255,255,255,.82);
      border:1px solid rgba(20,20,26,.08);
      border-radius: 22px;
      box-shadow: 0 12px 26px rgba(20,20,26,.06);
      overflow:hidden;
    }
    .accItem{
      border-bottom:1px solid rgba(20,20,26,.08);
    }
    .accItem:last-child{border-bottom:none}
    .accBtn{
      width:100%;
      text-align:left;
      padding: 14px 16px;
      background: rgba(255,255,255,.82);
      border:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .accBtn:focus{outline:none; box-shadow: var(--focus)}
    .accBtn .q{
      font-weight: 900;
      letter-spacing:-.2px;
      font-size: 13.8px;
      color: rgba(20,20,26,.90);
    }
    .accBtn .ico{
      width:34px; height:34px;
      border-radius: 14px;
      border:1px solid rgba(20,20,26,.10);
      background: rgba(217,59,108,.06);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .accBtn .ico span{
      display:block;
      width:12px; height:12px;
      border-right:2px solid rgba(217,59,108,1);
      border-bottom:2px solid rgba(217,59,108,1);
      transform: rotate(45deg);
      transition: transform .22s ease;
      margin-top:-2px;
    }
    .accBtn[aria-expanded="true"] .ico span{transform: rotate(-135deg); margin-top: 6px}
    .accPanel{
      max-height: 0;
      overflow:hidden;
      transition: max-height .28s ease;
    }
    .accPanel .inner{
      padding: 0 16px 14px;
      color: rgba(20,20,26,.72);
      font-size: 13.2px;
      line-height: 1.8;
    }

    .formGrid{
      display:grid;
      grid-template-columns: 1fr .95fr;
      gap: 14px;
      align-items:start;
    }
    .formCard{
      background: rgba(255,255,255,.82);
      border:1px solid rgba(20,20,26,.08);
      border-radius: 22px;
      box-shadow: 0 12px 26px rgba(20,20,26,.06);
      padding: 16px 16px;
      overflow:hidden;
    }
    .formCard h3{
      margin:0;
      font-size: 15px;
      letter-spacing:-.2px;
    }
    .formCard p{
      margin: 8px 0 0;
      color: rgba(20,20,26,.68);
      font-size: 13px;
      line-height: 1.7;
    }
    form{
      margin-top: 14px;
      display:grid;
      gap: 10px;
    }
    .fieldRow{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    label{
      display:flex; flex-direction:column; gap:8px;
      font-size: 12.6px;
      color: rgba(20,20,26,.70);
      font-weight: 800;
    }
    input, select, textarea{
      width:100%;
      border-radius: 14px;
      border: 1px solid rgba(20,20,26,.12);
      background: rgba(255,255,255,.88);
      padding: 11px 12px;
      font-size: 14px;
      color: var(--ink);
      transition: box-shadow .15s ease, border-color .15s ease, transform .12s ease;
    }
    input:focus, select:focus, textarea:focus{
      outline:none;
      box-shadow: var(--focus);
      border-color: rgba(217,59,108,.32);
    }
    textarea{min-height: 106px; resize: vertical}
    .formActions{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      margin-top: 2px;
    }
    .fineprint{
      color: rgba(20,20,26,.62);
      font-size: 12.2px;
      line-height: 1.6;
      max-width: 46ch;
    }

    .sideContact{
      display:flex;
      flex-direction:column;
      gap: 14px;
    }
    .contactCard{
      background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.76));
      border:1px solid rgba(20,20,26,.08);
      border-radius: 22px;
      box-shadow: 0 12px 26px rgba(20,20,26,.06);
      padding: 16px 16px;
      overflow:hidden;
      position:relative;
    }
    .contactCard::before{
      content:"";
      position:absolute;
      width: 260px; height: 260px;
      border-radius:50%;
      right:-120px; bottom:-120px;
      background: radial-gradient(circle at 30% 30%, rgba(217,59,108,.22), transparent 65%);
      pointer-events:none;
    }
    .contactCard .inner{position:relative}
    .contactCard h3{margin:0; font-size: 15px; letter-spacing:-.2px}
    .contactGrid{
      display:grid;
      grid-template-columns: 1fr 120px;
      gap: 12px;
      align-items:center;
      margin-top: 12px;
    }
    .kv{
      display:flex;
      flex-direction:column;
      gap: 8px;
    }
    .kv a{
      text-decoration:none;
      font-weight: 950;
      color: rgba(217,59,108,1);
    }
    .kv .mut{color: rgba(20,20,26,.66); font-weight: 800; font-size: 12.5px}
    .qr{
      width: 120px;
      height: 120px;
      border-radius: 22px;
      border: 1px solid rgba(20,20,26,.10);
      background: rgba(255,255,255,.8);
      display:flex;
      align-items:center;
      justify-content:center;
      overflow:hidden;
      box-shadow: 0 18px 38px rgba(20,20,26,.10);
    }
    .qr img{
      width: 100%;
      height: auto;
      display:block;
    }

    .quickTags{
      display:flex; flex-wrap:wrap; gap:8px; margin-top: 12px;
      position:relative;
    }

    .footer{
      padding: 26px 0 36px;
      background: linear-gradient(180deg, rgba(255,255,255,.5), rgba(255,255,255,1));
      border-top: 1px solid rgba(20,20,26,.06);
    }
    .footerTop{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 14px;
      align-items:start;
      margin-bottom: 18px;
    }
    .footerBrand{
      display:flex; gap:12px; align-items:flex-start;
    }
    .footerBrand .mark{
      width:46px; height:46px;
      border-radius: 18px;
      background: rgba(217,59,108,.10);
      border:1px solid rgba(217,59,108,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight: 950;
      color: rgba(217,59,108,1);
      flex:0 0 auto;
    }
    .footerBrand h3{margin:0; font-size: 15px; letter-spacing:-.2px}
    .footerBrand p{margin:8px 0 0; color: rgba(20,20,26,.68); font-size: 13px; line-height: 1.7}

    .friendLinks{
      border-radius: 22px;
      border:1px solid rgba(20,20,26,.08);
      background: rgba(255,255,255,.82);
      padding: 14px 14px;
      box-shadow: 0 12px 26px rgba(20,20,26,.06);
    }
    .friendLinks h4{
      margin:0 0 10px;
      font-size: 13.6px;
      letter-spacing:-.2px;
    }
    .friendLinks .links{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .friendLinks a{
      text-decoration:none;
      font-size: 12.5px;
      font-weight: 900;
      color: rgba(20,20,26,.84);
      border:1px solid rgba(20,20,26,.10);
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.72);
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
      white-space:nowrap;
    }
    .friendLinks a:hover{
      transform: translateY(-1px);
      border-color: rgba(217,59,108,.25);
      background: rgba(217,59,108,.07);
    }

    .footerBottom{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 12px;
      flex-wrap:wrap;
      border-top: 1px solid rgba(20,20,26,.06);
      padding-top: 14px;
    }
    .copy{
      color: rgba(20,20,26,.64);
      font-size: 12.8px;
      font-weight: 800;
    }
    .footRight{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
    }
    .tinyLink{
      text-decoration:none;
      font-size: 12.8px;
      font-weight: 900;
      color: rgba(20,20,26,.78);
      border:1px solid rgba(20,20,26,.10);
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.72);
    }
    .tinyLink:hover{border-color: rgba(217,59,108,.25); background: rgba(217,59,108,.06)}
    .toTop{
      position:fixed;
      right: 16px;
      bottom: 16px;
      z-index: 60;
      width: 44px;
      height: 44px;
      border-radius: 18px;
      border:1px solid rgba(20,20,26,.10);
      background: rgba(255,255,255,.88);
      display:flex;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      box-shadow: 0 18px 42px rgba(20,20,26,.10);
      transform: translateY(18px);
      opacity:0;
      pointer-events:none;
      transition: opacity .18s ease, transform .18s ease;
    }
    .toTop.show{
      opacity:1;
      transform: translateY(0);
      pointer-events:auto;
    }
    .toTop:focus{outline:none; box-shadow: var(--focus)}
    .toTop svg{width:18px; height:18px; fill: rgba(217,59,108,1)}

    .fadeIn{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .55s ease, transform .55s ease;
      will-change: opacity, transform;
    }
    .fadeIn.show{
      opacity:1;
      transform: translateY(0);
    }

    @media (max-width: 980px){
      .heroGrid{grid-template-columns: 1fr; }
      .steps{grid-template-columns: 1fr}
      .cards3{grid-template-columns: 1fr}
      .reviews{grid-template-columns: 1fr}
      .twoCol{grid-template-columns: 1fr}
      .networkGrid{grid-template-columns: 1fr}
      .matchGrid{grid-template-columns: 1fr}
      .formGrid{grid-template-columns: 1fr}
      .fieldRow{grid-template-columns: 1fr}
      .articles{grid-template-columns: 1fr}
      .footerTop{grid-template-columns: 1fr}
      .navlinks{display:none}
      .hamb{display:inline-flex; align-items:center; justify-content:center; flex-direction:column;}
      .mobilePanel{display:block}
    }