:root{
      --bg0:#fff7f3;
      --bg1:#ffffff;
      --text:#1b1f23;
      --muted:#5a626b;
      --muted2:#7a848f;
      --line:rgba(17,24,39,.10);
      --card:rgba(255,255,255,.84);
      --card2:#ffffff;
      --shadow:0 18px 50px rgba(16,24,40,.10);
      --shadow2:0 10px 26px rgba(16,24,40,.10);
      --shadow3:0 6px 14px rgba(16,24,40,.12);
      --orange:#ff4d2e;
      --orange2:#ff7a18;
      --hot:#ff3d00;
      --rose:#ff4d6d;
      --blue:#1b63ff;
      --green:#12b76a;
      --focus: rgba(255,77,46,.35);
      --radius:18px;
      --radius2:24px;
      --container:1120px;
      --pad:20px;
      --btnText:#1b0f0a;
    }
    *{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 SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 700px at 20% -10%, rgba(255,122,24,.20), transparent 55%),
        radial-gradient(1000px 620px at 90% 0%, rgba(255,77,46,.18), transparent 55%),
        radial-gradient(900px 520px at 15% 20%, rgba(255,77,109,.10), transparent 60%),
        linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 35%, #fff 100%);
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:min(var(--container), calc(100% - 2*var(--pad)));
      margin:0 auto;
    }

    header{
      position:sticky; top:0; z-index:50;
      background: rgba(255,255,255,.72);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(17,24,39,.06);
    }
    .navwrap{
      display:flex; align-items:center; justify-content:space-between;
      gap:14px; padding:14px 0;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width:220px;
    }
    .brand img{
      width:44px; height:44px; border-radius:14px;
      box-shadow:0 10px 22px rgba(255,77,46,.20);
      background:#fff;
    }
    .brand .btxt{display:flex; flex-direction:column; line-height:1.1}
    .brand .name{font-weight:820; letter-spacing:.2px}
    .brand .sub{font-size:12px; color:var(--muted); margin-top:4px}
    nav{display:flex; align-items:center; gap:8px}
    .navlinks{
      display:flex; align-items:center; gap:6px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .navlinks a{
      font-size:13px;
      padding:8px 10px;
      border-radius:999px;
      color:#252b31;
      border:1px solid transparent;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .navlinks a:hover{
      background:rgba(255,77,46,.08);
      border-color:rgba(255,77,46,.18);
      transform: translateY(-1px);
    }

    .navcta{
      display:flex; align-items:center; gap:10px;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      padding:10px 14px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:#fff;
      box-shadow: 0 10px 24px rgba(16,24,40,.06);
      font-weight:700;
      font-size:13px;
      color:#1a1f25;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      cursor:pointer;
      user-select:none;
    }
    .btn:focus{outline:none; box-shadow:0 0 0 4px var(--focus), 0 12px 26px rgba(16,24,40,.10)}
    .btn:hover{transform: translateY(-1px); box-shadow:0 14px 30px rgba(16,24,40,.10)}
    .btn.primary{
      border-color: rgba(255,77,46,.28);
      background: linear-gradient(180deg, rgba(255,77,46,1) 0%, rgba(255,122,24,1) 100%);
      color:#1b0f0a;
      box-shadow: 0 16px 40px rgba(255,77,46,.20);
    }
    .btn.primary:hover{box-shadow: 0 20px 56px rgba(255,77,46,.26)}
    .btn.ghost{
      background:rgba(255,255,255,.72);
    }
    .btn .dot{
      width:10px; height:10px; border-radius:50%;
      background: rgba(27,31,35,.2);
      box-shadow: inset 0 0 0 2px rgba(255,255,255,.55);
    }
    .btn.primary .dot{
      background: rgba(27,31,35,.25);
    }

    .mobileToggle{
      display:none;
      width:42px; height:42px; border-radius:12px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.88);
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease;
      align-items:center; justify-content:center;
      box-shadow: 0 10px 24px rgba(16,24,40,.06);
    }
    .mobileToggle:hover{transform: translateY(-1px)}
    .burger{
      width:18px; height:12px; position:relative;
    }
    .burger span{
      position:absolute; left:0; right:0; height:2px; border-radius:2px;
      background:#1f2630;
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .burger span:nth-child(1){top:0}
    .burger span:nth-child(2){top:5px}
    .burger span:nth-child(3){top:10px}
    .mobileToggle[aria-expanded="true"] .burger span:nth-child(1){top:5px; transform:rotate(45deg)}
    .mobileToggle[aria-expanded="true"] .burger span:nth-child(2){opacity:0}
    .mobileToggle[aria-expanded="true"] .burger span:nth-child(3){top:5px; transform:rotate(-45deg)}

    .mobilePanel{
      display:none;
      padding:12px 0 16px;
      border-top:1px solid rgba(17,24,39,.06);
    }
    .mobilePanel .mgrid{display:grid; gap:10px}
    .mobilePanel a{
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.86);
      font-weight:700; font-size:14px;
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .mobilePanel a:hover{transform: translateY(-1px); border-color: rgba(255,77,46,.22); background:rgba(255,77,46,.06)}
    @media (max-width: 980px){
      nav{display:none}
      .mobileToggle{display:flex}
      .mobilePanel{display:block}
      header .navwrap{padding:12px 0}
    }

    main{padding:22px 0 0}
    .hero{
      position:relative;
      overflow:hidden;
      border-radius: var(--radius2);
      background:
        radial-gradient(900px 420px at 18% 10%, rgba(255,77,46,.28), transparent 60%),
        radial-gradient(700px 380px at 88% 0%, rgba(255,122,24,.22), transparent 60%),
        linear-gradient(135deg, rgba(255,255,255,.86) 0%, rgba(255,255,255,.60) 45%, rgba(255,255,255,.80) 100%);
      border:1px solid rgba(255,77,46,.18);
      box-shadow: var(--shadow);
    }
    .heroInner{
      padding:34px 22px;
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:22px;
      align-items:start;
    }
    @media (max-width: 900px){
      .heroInner{grid-template-columns:1fr; padding:26px 16px}
    }
    .kicker{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(255,77,46,.22);
      background: rgba(255,77,46,.07);
      color:#26130f;
      font-weight:800;
      font-size:13px;
      letter-spacing:.2px;
    }
    .kicker .spark{
      width:18px; height:18px; border-radius:6px;
      background: linear-gradient(180deg, rgba(255,77,46,1), rgba(255,122,24,1));
      display:inline-flex; align-items:center; justify-content:center;
      box-shadow: 0 12px 26px rgba(255,77,46,.22);
    }
    .hero h1{
      margin:14px 0 10px;
      font-size:40px;
      line-height:1.12;
      letter-spacing:-.6px;
    }
    @media (max-width: 520px){ .hero h1{font-size:32px} }
    .hero p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.7;
      max-width: 62ch;
    }
    .heroActions{
      margin-top:18px;
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
    }
    .miniTrust{
      margin-top:16px;
      display:flex; flex-wrap:wrap; gap:10px;
      align-items:center;
    }
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      padding:9px 12px;
      border-radius:999px;
      font-weight:800; font-size:12px;
      color:#262d36;
      transition: transform .15s ease, box-shadow .15s ease;
      box-shadow: 0 10px 22px rgba(16,24,40,.05);
    }
    .pill .ic{
      width:22px; height:22px; border-radius:9px;
      background: rgba(255,77,46,.10);
      display:flex; align-items:center; justify-content:center;
      color: var(--orange2);
      font-size:12px;
      border:1px solid rgba(255,77,46,.20);
    }
    .pill:hover{transform: translateY(-1px); box-shadow: 0 14px 30px rgba(16,24,40,.08)}

    .heroSide{
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .glassCard{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(17,24,39,.08);
      border-radius:18px;
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
      overflow:hidden;
    }
    .glassCard .top{
      padding:16px 16px 10px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      border-bottom:1px solid rgba(17,24,39,.06);
      background: linear-gradient(180deg, rgba(255,77,46,.08) 0%, rgba(255,255,255,.0) 100%);
    }
    .heroSide h3{
      margin:0;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .submeta{
      margin-top:8px;
      color:var(--muted);
      font-size:12px; line-height:1.5;
    }
    .radialBadge{
      width:46px; height:46px; border-radius:16px;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.95), rgba(255,255,255,.25) 45%, rgba(255,255,255,.0) 70%),
        linear-gradient(180deg, rgba(255,77,46,1) 0%, rgba(255,122,24,1) 100%);
      box-shadow: 0 18px 50px rgba(255,77,46,.22);
      display:flex; align-items:center; justify-content:center;
      color:#1b0f0a;
      font-weight:950;
    }
    .metricGrid{
      padding:14px 16px 16px;
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
    }
    .metric{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.70);
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    }
    .metric:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(16,24,40,.10);
      border-color: rgba(255,77,46,.22);
    }
    .metric .val{
      font-weight:950;
      font-size:18px;
      letter-spacing:-.4px;
    }
    .metric .lab{
      margin-top:6px;
      color:var(--muted);
      font-size:12px;
      line-height:1.4;
    }

    .section{
      padding:26px 0;
    }
    .sectionTitle{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
      margin-bottom:14px;
    }
    .sectionTitle h2{
      margin:0;
      font-size:24px;
      letter-spacing:-.4px;
    }
    .sectionTitle p{
      margin:0;
      color:var(--muted);
      font-size:13px; line-height:1.6;
      max-width: 60ch;
    }

    .grid3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    @media (max-width: 980px){ .grid3{grid-template-columns:1fr 1fr} }
    @media (max-width: 560px){ .grid3{grid-template-columns:1fr} }

    .card{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(17,24,39,.08);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 12px 30px rgba(16,24,40,.05);
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 46px rgba(16,24,40,.10);
      border-color: rgba(255,77,46,.22);
    }
    .card .headRow{
      display:flex; align-items:flex-start; gap:12px;
      margin-bottom:10px;
    }
    .iconBox{
      width:42px; height:42px;
      border-radius:16px;
      background: linear-gradient(180deg, rgba(255,77,46,.16) 0%, rgba(255,255,255,.0) 60%);
      border:1px solid rgba(255,77,46,.22);
      display:flex; align-items:center; justify-content:center;
      color: var(--orange2);
      font-weight:900;
      flex:0 0 auto;
    }
    .card h3{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .tagRow{
      margin-top:12px;
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .tag{
      font-size:12px;
      font-weight:800;
      color:#2b343f;
      background: rgba(255,77,46,.08);
      border:1px solid rgba(255,77,46,.18);
      padding:7px 10px;
      border-radius:999px;
    }

    .layout2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    @media (max-width: 900px){ .layout2{grid-template-columns:1fr} }

    .steps{
      display:flex; flex-direction:column; gap:12px;
    }
    .step{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px;
      border-radius: var(--radius);
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 30px rgba(16,24,40,.05);
      position:relative;
      overflow:hidden;
    }
    .step::after{
      content:"";
      position:absolute; right:-70px; top:-70px;
      width:160px; height:160px; border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(255,77,46,.20), transparent 60%);
      pointer-events:none;
    }
    .snum{
      width:44px; height:44px; border-radius:16px;
      background: linear-gradient(180deg, rgba(255,77,46,1) 0%, rgba(255,122,24,1) 100%);
      box-shadow: 0 18px 40px rgba(255,77,46,.24);
      color:#1b0f0a;
      font-weight:1000;
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .step h3{margin:0; font-size:15px}
    .step p{margin:6px 0 0; color:var(--muted); font-size:13px; line-height:1.65}

    .timeline{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:start;
    }
    @media (max-width: 900px){ .timeline{grid-template-columns:1fr} }
    .timeline .rail{
      padding:16px;
      border-radius: var(--radius);
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 30px rgba(16,24,40,.05);
    }
    .rail .row{
      display:flex; gap:12px; align-items:flex-start;
      padding:10px 0;
      border-top:1px dashed rgba(17,24,39,.12);
    }
    .rail .row:first-child{border-top:none; padding-top:0}
    .dot{
      width:12px; height:12px; border-radius:50%;
      background: rgba(255,77,46,.95);
      box-shadow: 0 0 0 5px rgba(255,77,46,.12);
      margin-top:4px;
      flex:0 0 auto;
    }
    .row .rtitle{font-weight:950; font-size:13px}
    .row .rdesc{margin-top:6px; color:var(--muted); font-size:13px; line-height:1.6}

    .compareTableWrap{
      border-radius: var(--radius2);
      border:1px solid rgba(17,24,39,.08);
      overflow:hidden;
      background: rgba(255,255,255,.72);
      box-shadow: 0 14px 40px rgba(16,24,40,.06);
    }
    .compareHeader{
      padding:16px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      background: linear-gradient(180deg, rgba(255,77,46,.10) 0%, rgba(255,255,255,.0) 100%);
      border-bottom:1px solid rgba(17,24,39,.06);
    }
    .scoreBlock{
      display:flex; align-items:center; gap:12px;
    }
    .stars{
      letter-spacing:2px;
      font-size:16px;
      color:#f59e0b;
      text-shadow: 0 10px 24px rgba(245,158,11,.20);
      margin-top:2px;
    }
    .scoreBig{
      font-weight:1000;
      font-size:30px;
      letter-spacing:-.6px;
      line-height:1;
    }
    .scoreMeta{color:var(--muted); font-size:13px; line-height:1.5}
    .compareNote{
      color:var(--muted);
      font-size:13px; line-height:1.7;
      max-width: 62ch;
      margin-top:6px;
    }
    .tableScroll{
      overflow:auto;
      -webkit-overflow-scrolling: touch;
    }
    table{
      width:100%;
      border-collapse:collapse;
      min-width: 820px;
      background:#fff;
    }
    th, td{
      padding:12px 14px;
      border-bottom:1px solid rgba(17,24,39,.08);
      text-align:left;
      vertical-align:top;
      font-size:13px;
      line-height:1.5;
      color:#222831;
    }
    th{
      background: rgba(255,77,46,.06);
      font-weight:950;
      white-space:nowrap;
    }
    tr:last-child td{border-bottom:none}
    .good{
      display:inline-flex; align-items:center; gap:8px;
      font-weight:900;
    }
    .check{
      width:18px; height:18px; border-radius:8px;
      background: rgba(18,183,106,.12);
      border:1px solid rgba(18,183,106,.22);
      color: #0f7a45;
      display:inline-flex; align-items:center; justify-content:center;
      font-size:12px;
      flex:0 0 auto;
    }
    .mid{
      display:inline-flex; align-items:center; gap:8px;
      font-weight:900;
      color:#6b3a00;
    }
    .dash{
      width:18px; height:18px; border-radius:8px;
      background: rgba(245,158,11,.12);
      border:1px solid rgba(245,158,11,.22);
      color:#8a4a00;
      display:inline-flex; align-items:center; justify-content:center;
      font-size:12px;
      flex:0 0 auto;
    }
    .bad{
      display:inline-flex; align-items:center; gap:8px;
      font-weight:900;
      color:#6b1b1b;
    }
    .xbox{
      width:18px; height:18px; border-radius:8px;
      background: rgba(239,68,68,.10);
      border:1px solid rgba(239,68,68,.18);
      color:#b91c1c;
      display:inline-flex; align-items:center; justify-content:center;
      font-size:12px;
      flex:0 0 auto;
    }

    .reviewsGrid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    @media (max-width: 980px){ .reviewsGrid{grid-template-columns:1fr 1fr} }
    @media (max-width: 560px){ .reviewsGrid{grid-template-columns:1fr} }
    .review{
      padding:16px;
      border-radius: var(--radius);
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.76);
      box-shadow: 0 12px 30px rgba(16,24,40,.05);
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
      position:relative;
      overflow:hidden;
    }
    .review:hover{transform: translateY(-2px); box-shadow:0 18px 46px rgba(16,24,40,.10); border-color: rgba(255,77,46,.22)}
    .review .q{
      font-size:13px; color:var(--muted);
      line-height:1.7;
      margin:8px 0 0;
    }
    .review .who{
      display:flex; align-items:center; gap:12px;
      margin-top:14px;
    }
    .avatar{
      width:40px; height:40px; border-radius:16px;
      background: linear-gradient(180deg, rgba(255,77,46,.18) 0%, rgba(255,255,255,.0) 65%);
      border:1px solid rgba(255,77,46,.22);
      display:flex; align-items:center; justify-content:center;
      color: var(--orange2);
      font-weight:1000;
      flex:0 0 auto;
    }
    .who .wname{font-weight:950; font-size:13px}
    .who .wrole{color:var(--muted2); font-size:12px; margin-top:3px}

    .cards4{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
    }
    @media (max-width: 980px){ .cards4{grid-template-columns:1fr 1fr} }
    @media (max-width: 560px){ .cards4{grid-template-columns:1fr} }
    .simpleCard{
      padding:14px;
      border-radius: var(--radius);
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.76);
      box-shadow: 0 12px 30px rgba(16,24,40,.05);
    }
    .simpleCard h3{margin:0; font-size:14px; letter-spacing:-.2px}
    .simpleCard p{margin:8px 0 0; color:var(--muted); font-size:13px; line-height:1.65}

    .casesGrid{
      display:grid;
      grid-template-columns: 1.25fr .75fr;
      gap:14px;
      align-items:start;
    }
    @media (max-width: 900px){ .casesGrid{grid-template-columns:1fr} }
    .caseMain{
      padding:16px;
      border-radius: var(--radius2);
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.72);
      box-shadow: 0 14px 40px rgba(16,24,40,.06);
      overflow:hidden;
      position:relative;
    }
    .caseMain::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(800px 260px at 20% 0%, rgba(255,77,46,.16), transparent 55%),
        radial-gradient(620px 240px at 90% 10%, rgba(255,122,24,.14), transparent 55%);
      pointer-events:none;
    }
    .caseMain > *{position:relative}
    .caseHeader{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .caseHeader h3{margin:0; font-size:18px; letter-spacing:-.3px}
    .caseHeader p{margin:8px 0 0; color:var(--muted); font-size:13px; line-height:1.7}
    .caseList{
      margin-top:14px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    @media (max-width: 600px){ .caseList{grid-template-columns:1fr} }
    .caseItem{
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.78);
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    }
    .caseItem:hover{transform: translateY(-2px); box-shadow:0 18px 46px rgba(16,24,40,.10); border-color: rgba(255,77,46,.22)}
    .caseItem .t{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .badgeHot{
      font-size:12px; font-weight:950;
      background: rgba(255,77,46,.10);
      border:1px solid rgba(255,77,46,.18);
      color:#2b120f;
      padding:6px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .caseItem h4{margin:10px 0 0; font-size:14px; letter-spacing:-.2px}
    .caseItem p{margin:8px 0 0; color:var(--muted); font-size:13px; line-height:1.65}

    .articleCard{
      padding:16px;
      border-radius: var(--radius2);
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.72);
      box-shadow: 0 14px 40px rgba(16,24,40,.06);
    }
    .articleHead{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:12px;
    }
    .articleHead h3{margin:0; font-size:18px; letter-spacing:-.3px}
    .articleHead .small{color:var(--muted); font-size:13px; line-height:1.7; margin-top:8px}
    .articleList{
      display:flex; flex-direction:column; gap:10px;
    }
    .articleLink{
      border-radius:16px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.78);
      padding:12px 12px;
      transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .articleLink:hover{
      transform: translateY(-2px);
      border-color: rgba(255,77,46,.22);
      box-shadow: 0 18px 46px rgba(16,24,40,.10);
      background: rgba(255,77,46,.05);
    }
    .articleLink .atitle{font-weight:950; font-size:13px; letter-spacing:-.1px}
    .articleLink .adate{color:var(--muted2); font-size:12px; margin-top:4px}
    .articleLink .arrow{
      width:34px; height:34px; border-radius:14px;
      border:1px solid rgba(17,24,39,.08);
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,255,255,.9);
      flex:0 0 auto;
      color: var(--orange2);
      font-weight:950;
    }

    .formCard{
      border-radius: var(--radius2);
      border:1px solid rgba(255,77,46,.18);
      background: rgba(255,255,255,.72);
      box-shadow: 0 14px 40px rgba(16,24,40,.06);
      overflow:hidden;
    }
    .formTop{
      padding:16px;
      background: linear-gradient(180deg, rgba(255,77,46,.10) 0%, rgba(255,255,255,.0) 100%);
      border-bottom:1px solid rgba(17,24,39,.06);
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .formTop h3{margin:0; font-size:18px; letter-spacing:-.3px}
    .formTop p{margin:8px 0 0; color:var(--muted); font-size:13px; line-height:1.7}
    form{
      padding:16px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    @media (max-width: 700px){ form{grid-template-columns:1fr} }
    .field{display:flex; flex-direction:column; gap:8px}
    .field label{font-weight:900; font-size:12px; color:#2a333d}
    input, select, textarea{
      width:100%;
      padding:11px 12px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.88);
      color:#1b1f23;
      font-size:14px;
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease;
    }
    textarea{min-height:104px; resize: vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(255,77,46,.35);
      box-shadow: 0 0 0 4px rgba(255,77,46,.20);
    }
    .span2{grid-column: span 2}
    @media (max-width: 700px){ .span2{grid-column: auto} }
    .formActions{
      grid-column: span 2;
      display:flex; flex-wrap:wrap;
      gap:12px; align-items:center; justify-content:space-between;
      padding-top:4px;
    }
    @media (max-width: 700px){ .formActions{grid-column:auto} }
    .hint{
      color:var(--muted2);
      font-size:12px;
      line-height:1.5;
      max-width: 56ch;
    }
    .submitRow{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
    .btnSubmit{
      border:none;
      cursor:pointer;
      padding:12px 16px;
      border-radius:999px;
      font-weight:950;
      font-size:14px;
      background: linear-gradient(180deg, rgba(255,77,46,1) 0%, rgba(255,122,24,1) 100%);
      color:#1b0f0a;
      box-shadow: 0 18px 50px rgba(255,77,46,.24);
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .btnSubmit:hover{transform: translateY(-2px); box-shadow: 0 22px 60px rgba(255,77,46,.28)}
    .btnSubmit:focus{outline:none; box-shadow:0 0 0 4px rgba(255,77,46,.22), 0 22px 60px rgba(255,77,46,.26)}
    .btnSecondary{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.85);
      cursor:pointer;
      padding:12px 14px;
      border-radius:999px;
      font-weight:900;
      font-size:14px;
      color:#1a1f25;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      box-shadow: 0 10px 24px rgba(16,24,40,.06);
    }
    .btnSecondary:hover{transform: translateY(-2px); border-color: rgba(255,77,46,.22); box-shadow: 0 14px 30px rgba(16,24,40,.10)}

    .faqGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    @media (max-width: 900px){ .faqGrid{grid-template-columns:1fr} }
    .faqGroup{
      padding:14px;
      border-radius: var(--radius2);
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.72);
      box-shadow: 0 14px 40px rgba(16,24,40,.06);
    }
    details{
      border-radius:16px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.78);
      margin-bottom:10px;
      overflow:hidden;
      transition: border-color .15s ease, transform .15s ease;
    }
    details[open]{border-color: rgba(255,77,46,.22)}
    details:last-child{margin-bottom:0}
    summary{
      list-style:none;
      cursor:pointer;
      padding:12px 12px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      user-select:none;
    }
    summary::-webkit-details-marker{display:none}
    .qtxt{
      font-weight:950;
      font-size:13px;
      letter-spacing:-.1px;
      line-height:1.6;
    }
    .chev{
      width:34px; height:34px; border-radius:14px;
      border:1px solid rgba(17,24,39,.08);
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,255,255,.9);
      flex:0 0 auto;
      color: var(--orange2);
      font-weight:1000;
      transition: transform .2s ease;
    }
    details[open] .chev{transform: rotate(180deg)}
    .ans{
      padding:0 12px 12px;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }

    .tokenRow{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:12px;
      margin-top:12px;
    }
    @media (max-width: 900px){ .tokenRow{grid-template-columns:1fr} }
    .tokenBox{
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.78);
    }
    .tokenBox h3{margin:0; font-size:14px}
    .tokenBox p{margin:8px 0 0; color:var(--muted); font-size:13px; line-height:1.65}
    .tokenBox .mini{
      margin-top:10px;
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
    }
    .chip{
      font-size:12px; font-weight:950;
      padding:7px 10px;
      border-radius:999px;
      background: rgba(255,77,46,.08);
      border:1px solid rgba(255,77,46,.18);
      color:#2b120f;
    }

    .helpGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    @media (max-width: 900px){ .helpGrid{grid-template-columns:1fr} }
    .linkList{
      display:flex; flex-direction:column; gap:10px;
    }
    .linkItem{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.78);
      transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .linkItem:hover{transform: translateY(-2px); border-color: rgba(255,77,46,.22); box-shadow: 0 18px 46px rgba(16,24,40,.10)}
    .linkItem .ltitle{font-weight:950; font-size:13px; letter-spacing:-.1px}
    .linkItem .ldesc{margin-top:6px; color:var(--muted); font-size:13px; line-height:1.6}
    .linkItem .r{
      width:34px; height:34px; border-radius:14px;
      border:1px solid rgba(17,24,39,.08);
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,255,255,.9);
      color: var(--orange2); font-weight:1000;
      flex:0 0 auto;
    }

    .tagCloud{
      display:flex; flex-wrap:wrap; gap:10px;
      padding:14px;
      border-radius: var(--radius2);
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.72);
      box-shadow: 0 14px 40px rgba(16,24,40,.06);
    }
    .cloudTag{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.82);
      font-weight:950;
      font-size:12px;
      color:#28313b;
      transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease, background .15s ease;
      cursor:pointer;
      user-select:none;
    }
    .cloudTag:hover{transform: translateY(-2px); border-color: rgba(255,77,46,.22); box-shadow: 0 18px 46px rgba(16,24,40,.10); background: rgba(255,77,46,.05)}

    .footer{
      margin-top:10px;
      padding:20px 0 26px;
      border-top:1px solid rgba(17,24,39,.06);
      background:
        radial-gradient(900px 260px at 20% 0%, rgba(255,77,46,.14), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.0) 0%, rgba(255,255,255,.85) 30%, rgba(255,255,255,.95) 100%);
    }
    .footerGrid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    @media (max-width: 900px){ .footerGrid{grid-template-columns:1fr} }
    .footCard{
      border-radius: var(--radius2);
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 40px rgba(16,24,40,.06);
      padding:16px;
    }
    .footTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .footTitle{
      font-weight:1000; font-size:15px; letter-spacing:-.2px;
      margin:0;
    }
    .footDesc{color:var(--muted); font-size:13px; line-height:1.7; margin:8px 0 0}
    .footerLinks{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:12px;
    }
    .footerLinks a{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.82);
      font-weight:900;
      font-size:12px;
      color:#2b333d;
      transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease, background .15s ease;
    }
    .footerLinks a:hover{
      transform: translateY(-2px);
      border-color: rgba(255,77,46,.22);
      box-shadow: 0 18px 46px rgba(16,24,40,.10);
      background: rgba(255,77,46,.05);
    }
    .copyright{
      margin-top:12px;
      color:var(--muted2);
      font-size:12px;
      line-height:1.6;
      display:flex; flex-wrap:wrap; gap:10px; align-items:center; justify-content:space-between;
    }
    .hrSmall{height:1px; background: rgba(17,24,39,.08); margin:14px 0}
    .contactLine{
      display:flex; flex-direction:column; gap:8px;
      color: var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .contactLine strong{color:#202733}
    .socialGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:12px;
    }
    @media (max-width: 560px){ .socialGrid{grid-template-columns:1fr} }
    .socialCard{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.82);
      padding:12px;
      display:flex; align-items:flex-start; gap:12px;
    }
    .socialCard .sicon{
      width:40px; height:40px; border-radius:16px;
      background: rgba(255,77,46,.08);
      border:1px solid rgba(255,77,46,.18);
      display:flex; align-items:center; justify-content:center;
      color: var(--orange2);
      font-weight:1000;
      flex:0 0 auto;
    }
    .socialCard .stxt .st{font-weight:1000; font-size:13px}
    .socialCard .stxt .sd{margin-top:5px; color:var(--muted); font-size:13px; line-height:1.6}

    .floatChat{
      position:fixed; right:16px; bottom:16px;
      z-index:60;
      display:flex; flex-direction:column; align-items:flex-end; gap:10px;
    }
    .floatBtn{
      width:48px; height:48px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.88);
      box-shadow: 0 18px 50px rgba(16,24,40,.14);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .floatBtn:hover{transform: translateY(-2px); border-color: rgba(255,77,46,.22); box-shadow: 0 22px 60px rgba(16,24,40,.18)}
    .floatPanel{
      width:260px;
      border-radius: var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.92);
      box-shadow: 0 22px 60px rgba(16,24,40,.18);
      overflow:hidden;
      transform-origin: 100% 100%;
      animation: pop .18s ease-out;
    }
    @keyframes pop{from{transform: scale(.98); opacity:.65} to{transform: scale(1); opacity:1}}
    .floatPanel .fpTop{
      padding:12px 12px;
      background: linear-gradient(180deg, rgba(255,77,46,.10) 0%, rgba(255,255,255,.0) 100%);
      border-bottom:1px solid rgba(17,24,39,.06);
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .fpTop .t{font-weight:1000; font-size:13px}
    .closeX{
      width:32px; height:32px; border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.9);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      color:#2b333d;
    }
    .fpBody{padding:12px; display:flex; gap:12px; align-items:flex-start}
    .qrWrap{
      width:82px; height:82px;
      border-radius:22px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.9);
      overflow:hidden;
      flex:0 0 auto;
      display:flex; align-items:center; justify-content:center;
    }
    .qrWrap img{width:100%; height:100%; object-fit:cover}
    .fpText{color:var(--muted); font-size:13px; line-height:1.6}
    .fpText strong{color:#1f2630}
    .floatLinks{
      display:flex; gap:10px; flex-wrap:wrap;
      padding:0 12px 12px;
    }
    .smallBtn{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.9);
      font-weight:950;
      font-size:12px;
      cursor:pointer;
      transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
    }
    .smallBtn:hover{transform: translateY(-2px); border-color: rgba(255,77,46,.22); box-shadow: 0 18px 46px rgba(16,24,40,.12)}

    .backTop{
      position:fixed; left:16px; bottom:16px;
      z-index:60;
      width:46px; height:46px; border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.88);
      box-shadow: 0 18px 50px rgba(16,24,40,.12);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition: transform .15s ease, opacity .2s ease, border-color .15s ease;
      opacity:0; pointer-events:none;
    }
    .backTop.show{opacity:1; pointer-events:auto}
    .backTop:hover{transform: translateY(-2px); border-color: rgba(255,77,46,.22)}
    .fadeInUp{
      opacity:0; transform: translateY(10px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .fadeInUp.visible{
      opacity:1; transform: translateY(0);
    }

    .anchorRow{
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .anchorBtn{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 14px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.86);
      font-weight:950;
      font-size:13px;
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
      cursor:pointer;
    }
    .anchorBtn:hover{transform: translateY(-2px); border-color: rgba(255,77,46,.22); box-shadow: 0 18px 46px rgba(16,24,40,.10); background: rgba(255,77,46,.05)}
    .anchorBtn .miniArrow{
      width:28px; height:28px; border-radius:12px;
      border:1px solid rgba(17,24,39,.10);
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,255,255,.9);
      color: var(--orange2);
      font-weight:1000;
    }