:root{
      --bg0:#ffffff;
      --bg1:#f6f9ff;
      --bg2:#f2f7fb;
      --card:#ffffff;
      --text:#0f172a;
      --muted:#5b667a;
      --muted2:#6b7a92;
      --line:rgba(15,23,42,.10);
      --line2:rgba(15,23,42,.14);
      --shadow:0 18px 55px rgba(10,37,90,.10);
      --shadow2:0 10px 26px rgba(12,33,82,.12);
      --shadow3:0 6px 18px rgba(12,33,82,.10);
      --accent1:#11b7c7;
      --accent2:#2f6bff;
      --accent3:#22c55e;
      --accent4:#8b5cf6;
      --btn:#0b2a63;
      --btn2:#0e3a8f;
      --white:#ffffff;
      --radius:18px;
      --radius2:14px;
      --radius3:12px;
      --container: 1120px;
      --padX: 20px;
      --focus: 0 0 0 4px rgba(47,107,255,.18);
    }

    *{ 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", "Noto Sans SC", sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 700px at 20% -10%, rgba(47,107,255,.14), transparent 60%),
        radial-gradient(900px 600px at 90% 10%, rgba(17,183,199,.12), transparent 55%),
        linear-gradient(180deg, var(--bg0), var(--bg1) 48%, var(--bg2));
      overflow-x:hidden;
    }

    a{ color:inherit; text-decoration:none; }
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 var(--padX);
    }

    .topbarWrap{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,.68);
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .topbar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 180px;
    }
    .brand img{
      width:44px;
      height:44px;
      object-fit:contain;
      filter:saturate(1.05);
    }
    .brandName{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brandName strong{
      font-size:14px;
      letter-spacing:.2px;
    }
    .brandName span{
      font-size:12px;
      color:var(--muted);
    }

    .nav{
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav a{
      padding:9px 10px;
      border-radius:999px;
      font-size:13px;
      color:var(--muted);
      border:1px solid transparent;
      transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
      white-space:nowrap;
    }
    .nav a:hover{
      transform: translateY(-1px);
      background: rgba(47,107,255,.06);
      border-color: rgba(47,107,255,.16);
      color: #0a2a66;
    }
    .nav .active{
      background: rgba(17,183,199,.10);
      border-color: rgba(17,183,199,.22);
      color:#0b3b44;
    }

    .navActions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:11px 14px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.7);
      color: #0b234f;
      font-weight:650;
      font-size:13px;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      cursor:pointer;
      user-select:none;
    }
    .btn:focus{ outline:none; box-shadow: var(--focus); }
    .btn:hover{
      transform: translateY(-1px);
      box-shadow: 0 10px 20px rgba(10,30,80,.12);
      border-color: rgba(47,107,255,.28);
      background: rgba(255,255,255,.95);
    }
    .btnPrimary{
      border-color: rgba(47,107,255,.22);
      background: linear-gradient(135deg, rgba(17,183,199,.16), rgba(47,107,255,.18));
      color:#06224d;
    }
    .btnPrimary strong{
      font-weight:800;
      letter-spacing:.2px;
    }
    .btnDark{
      border-color: rgba(11,42,99,.20);
      background: linear-gradient(135deg, #0b2a63, #0e3a8f);
      color:#fff;
      box-shadow: 0 16px 40px rgba(14,58,143,.25);
    }
    .btnDark:hover{
      background: linear-gradient(135deg, #0a275c, #0b347e);
      border-color: rgba(255,255,255,.16);
      box-shadow: 0 20px 55px rgba(14,58,143,.32);
    }
    .btnIcon{
      width:18px; height:18px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:6px;
      background: rgba(255,255,255,.18);
      border:1px solid rgba(255,255,255,.24);
    }
    .hamburger{
      display:none;
      width:42px;
      height:42px;
      border-radius:12px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.75);
      cursor:pointer;
      align-items:center;
      justify-content:center;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .hamburger:hover{ transform: translateY(-1px); box-shadow: var(--shadow3); }
    .hamburger svg{ width:18px; height:18px; }
    .mobilePanel{
      display:none;
      padding:10px 0 16px;
    }
    .mobilePanel .mobileNav{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .mobilePanel a{
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.65);
      color: var(--muted);
      font-size:13px;
      transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
    }
    .mobilePanel a:hover{
      transform: translateY(-1px);
      background: rgba(47,107,255,.07);
      border-color: rgba(47,107,255,.18);
      color:#0a2a66;
    }

    .hero{
      padding:36px 0 10px;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:18px;
      align-items:stretch;
    }
    .heroLeft{
      padding:28px 0;
      position:relative;
    }
    .heroLeft:before{
      content:"";
      position:absolute;
      inset:-40px -30px -30px -30px;
      background:
        radial-gradient(520px 260px at 22% 10%, rgba(17,183,199,.20), transparent 60%),
        radial-gradient(520px 260px at 68% 30%, rgba(47,107,255,.20), transparent 62%),
        linear-gradient(180deg, rgba(255,255,255,.50), rgba(255,255,255,.0));
      filter:saturate(1.05);
      z-index:-1;
    }
    .kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      color: #0a2a66;
      font-weight:700;
      font-size:13px;
      margin-bottom:14px;
    }
    .kickerDot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--accent1), var(--accent2));
      box-shadow: 0 0 0 6px rgba(47,107,255,.10);
    }
    h1{
      margin:0;
      font-size:34px;
      letter-spacing:-.4px;
      line-height:1.15;
    }
    .heroLead{
      margin:14px 0 18px;
      color: var(--muted);
      font-size:15px;
      line-height:1.8;
      max-width: 58ch;
    }
    .heroActions{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      margin-bottom:16px;
    }
    .heroMeta{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      margin-top:10px;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:14px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      color: #0a2a66;
      box-shadow: 0 12px 24px rgba(10,30,80,.06);
    }
    .pill svg{ width:18px; height:18px; }
    .pill strong{
      font-size:13px;
      letter-spacing:.2px;
    }
    .pill span{
      font-size:12px;
      color: var(--muted);
    }

    .heroRight{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.55)),
        radial-gradient(600px 280px at 50% -10%, rgba(17,183,199,.18), transparent 65%),
        radial-gradient(480px 240px at 90% 35%, rgba(47,107,255,.18), transparent 60%);
      box-shadow: var(--shadow2);
      padding:16px;
      display:flex;
      flex-direction:column;
      gap:14px;
      overflow:hidden;
      position:relative;
    }
    .heroRight:after{
      content:"";
      position:absolute;
      width:320px; height:320px;
      border-radius:50%;
      right:-140px; top:-160px;
      background: radial-gradient(circle at 30% 30%, rgba(47,107,255,.30), transparent 60%);
      filter: blur(2px);
      pointer-events:none;
    }

    .dataGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .metric{
      border-radius: 16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.68);
      padding:12px;
      position:relative;
      overflow:hidden;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .metric:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(10,30,80,.12);
      border-color: rgba(47,107,255,.22);
    }
    .metric:before{
      content:"";
      position:absolute;
      inset:-1px -1px auto -1px;
      height:42px;
      background: linear-gradient(90deg, rgba(17,183,199,.20), rgba(47,107,255,.20));
      opacity:.55;
      transform: skewY(-8deg);
      transform-origin: top left;
      pointer-events:none;
    }
    .metricTop{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:8px;
      position:relative;
      z-index:1;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 10px;
      border-radius:999px;
      background: rgba(47,107,255,.08);
      border:1px solid rgba(47,107,255,.18);
      font-size:12px;
      color:#0a2a66;
      font-weight:750;
    }
    .spark{
      width:36px; height:36px;
      border-radius:12px;
      display:flex;
      align-items:center;
      justify-content:center;
      background: rgba(17,183,199,.10);
      border:1px solid rgba(17,183,199,.20);
      position:relative;
      z-index:1;
    }
    .metricValue{
      font-size:20px;
      font-weight:900;
      letter-spacing:-.4px;
      position:relative;
      z-index:1;
    }
    .metricDesc{
      margin-top:6px;
      color: var(--muted);
      font-size:12px;
      line-height:1.6;
      position:relative;
      z-index:1;
    }

    .heroCardRow{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .miniCard{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      padding:12px;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      position:relative;
      overflow:hidden;
    }
    .miniCard:after{
      content:"";
      position:absolute;
      inset:auto -40px -40px auto;
      width:120px; height:120px;
      border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(34,197,94,.22), transparent 60%);
      pointer-events:none;
    }
    .miniLeft{
      position:relative;
      z-index:1;
      display:flex;
      flex-direction:column;
      gap:6px;
    }
    .miniTitle{
      font-weight:850;
      letter-spacing:.2px;
    }
    .miniText{
      color:var(--muted);
      font-size:12.5px;
      line-height:1.6;
      max-width: 38ch;
    }
    .miniLink{
      position:relative;
      z-index:1;
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.72);
      color:#0a2a66;
      font-weight:750;
      font-size:13px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
      cursor:pointer;
      white-space:nowrap;
    }
    .miniLink:hover{
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(10,30,80,.12);
      border-color: rgba(47,107,255,.22);
      background: rgba(255,255,255,.95);
    }
    .miniLink svg{ width:18px; height:18px; }

    .section{
      padding:40px 0;
    }
    .sectionTitle{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin-bottom:18px;
    }
    .sectionTitle h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.2px;
    }
    .sectionTitle p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
      max-width: 60ch;
    }
    .divider{
      height:1px;
      background: rgba(15,23,42,.10);
      margin:18px 0 0;
    }

    .cards3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .card{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      box-shadow: 0 10px 26px rgba(10,30,80,.06);
      padding:16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-3px);
      border-color: rgba(47,107,255,.22);
      box-shadow: 0 18px 55px rgba(10,30,80,.12);
      background: rgba(255,255,255,.82);
    }
    .card:before{
      content:"";
      position:absolute;
      inset:-1px -1px auto -1px;
      height:52px;
      background: linear-gradient(90deg, rgba(17,183,199,.14), rgba(47,107,255,.14), rgba(139,92,246,.10));
      opacity:.6;
      pointer-events:none;
      transform: skewY(-8deg);
      transform-origin: top left;
    }
    .cardHeader{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      position:relative;
      z-index:1;
      margin-bottom:10px;
    }
    .cardIcon{
      width:44px;
      height:44px;
      border-radius:16px;
      background: rgba(47,107,255,.08);
      border:1px solid rgba(47,107,255,.18);
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .cardIcon svg{ width:20px; height:20px; }
    .cardTag{
      font-size:12px;
      color:#0a2a66;
      font-weight:800;
      padding:6px 10px;
      border-radius:999px;
      background: rgba(17,183,199,.10);
      border:1px solid rgba(17,183,199,.20);
      white-space:nowrap;
    }
    .card h3{
      position:relative;
      z-index:1;
      margin:0 0 8px;
      font-size:16px;
      letter-spacing:-.1px;
    }
    .card p{
      position:relative;
      z-index:1;
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.75;
    }

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

    .panel{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      box-shadow: 0 10px 26px rgba(10,30,80,.06);
      padding:16px;
    }
    .panelHeader{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:12px;
    }
    .panelHeader h3{
      margin:0;
      font-size:16px;
      letter-spacing:-.1px;
    }
    .panelHeader .sub{
      margin-top:6px;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
      max-width: 52ch;
    }

    .steps{
      display:grid;
      gap:12px;
    }
    .step{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.65);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .step:hover{
      transform: translateY(-2px);
      border-color: rgba(17,183,199,.22);
      box-shadow: 0 18px 40px rgba(10,30,80,.10);
    }
    .stepNum{
      width:36px; height:36px;
      border-radius:14px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:900;
      background: rgba(47,107,255,.10);
      border:1px solid rgba(47,107,255,.18);
      color:#0a2a66;
      flex:0 0 auto;
    }
    .stepBody strong{
      display:block;
      font-size:14px;
      margin-bottom:4px;
    }
    .stepBody span{
      display:block;
      color:var(--muted);
      font-size:13.2px;
      line-height:1.65;
    }

    .matchGrid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:stretch;
    }
    .matchLeft{
      padding:16px;
    }
    .searchRow{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:10px;
    }
    .chipGroup{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      margin-top:10px;
    }
    .chip{
      padding:9px 11px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      color: var(--muted);
      font-weight:700;
      font-size:12.8px;
      cursor:pointer;
      transition: transform .16s ease, border-color .16s ease, background .16s ease, color .16s ease;
      user-select:none;
    }
    .chip:hover{
      transform: translateY(-1px);
      border-color: rgba(47,107,255,.22);
      background: rgba(47,107,255,.06);
      color:#0a2a66;
    }
    .chipActive{
      border-color: rgba(17,183,199,.28);
      background: rgba(17,183,199,.10);
      color:#06333b;
    }
    .resultBox{
      margin-top:12px;
      border-radius: 16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      padding:12px;
    }
    .resultTop{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:6px;
    }
    .resultTop strong{
      font-size:14px;
    }
    .resultTop span{
      font-size:12px;
      color:var(--muted);
    }
    .resultList{
      display:flex;
      flex-direction:column;
      gap:10px;
      margin-top:10px;
    }
    .resItem{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:10px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.60);
    }
    .resDot{
      width:10px; height:10px;
      margin-top:6px;
      border-radius:50%;
      background: linear-gradient(135deg, var(--accent1), var(--accent2));
      box-shadow: 0 0 0 6px rgba(47,107,255,.10);
      flex:0 0 auto;
    }
    .resItem strong{
      display:block;
      font-size:13.5px;
      margin-bottom:3px;
    }
    .resItem span{
      display:block;
      color:var(--muted);
      font-size:12.8px;
      line-height:1.6;
    }
    .matchRight{
      padding:16px;
      background:
        radial-gradient(520px 260px at 70% 0%, rgba(17,183,199,.14), transparent 60%),
        radial-gradient(520px 260px at 20% 30%, rgba(47,107,255,.14), transparent 62%),
        rgba(255,255,255,.50);
      border-left: 1px solid rgba(15,23,42,.08);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:12px;
    }
    .quote{
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      padding:12px;
    }
    .quote p{
      margin:0;
      color:var(--muted);
      font-size:13.2px;
      line-height:1.75;
    }
    .quote strong{
      display:block;
      color:#0a2a66;
      margin-bottom:8px;
      font-size:14px;
    }
    .quoteFooter{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-top:10px;
      color:var(--muted);
      font-size:12.5px;
    }

    .compareWrap{
      overflow:hidden;
    }
    .compareTopRow{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      margin-bottom:14px;
    }
    .ratingCard{
      min-width: 240px;
      flex:0 0 auto;
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 12px 28px rgba(10,30,80,.08);
      padding:14px;
      position:relative;
      overflow:hidden;
    }
    .ratingCard:before{
      content:"";
      position:absolute;
      inset:-1px -1px auto -1px;
      height:54px;
      background: linear-gradient(90deg, rgba(17,183,199,.20), rgba(47,107,255,.20));
      opacity:.7;
      pointer-events:none;
      transform: skewY(-8deg);
      transform-origin: top left;
    }
    .ratingInner{
      position:relative;
      z-index:1;
      display:flex;
      gap:12px;
      align-items:flex-start;
      justify-content:space-between;
    }
    .stars{
      display:flex;
      gap:6px;
      align-items:center;
      margin-top:6px;
    }
    .star{
      width:18px; height:18px;
      fill: #f59e0b;
      filter: drop-shadow(0 6px 14px rgba(245,158,11,.20));
    }
    .ratingNum{
      text-align:right;
    }
    .ratingNum strong{
      font-size:28px;
      letter-spacing:-.6px;
      display:block;
      line-height:1;
    }
    .ratingNum span{
      font-size:12.5px;
      color:var(--muted);
    }
    .tableWrap{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.65);
      overflow:auto;
      -webkit-overflow-scrolling: touch;
      box-shadow: 0 10px 26px rgba(10,30,80,.06);
    }
    table{
      width:100%;
      min-width: 760px;
      border-collapse:collapse;
      font-size:13.5px;
    }
    th,td{
      padding:12px 12px;
      border-bottom:1px solid rgba(15,23,42,.08);
      vertical-align:top;
    }
    th{
      position:sticky;
      top:0;
      background: rgba(246,249,255,.92);
      z-index:2;
      text-align:left;
      font-weight:900;
      color:#0a2a66;
      border-bottom:1px solid rgba(15,23,42,.10);
    }
    td{
      color:var(--muted);
      line-height:1.6;
    }
    .tdStrong{
      color:#0f172a;
      font-weight:850;
    }
    .check{
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-weight:800;
      color:#0a2a66;
    }
    .check svg{
      width:18px; height:18px;
      flex:0 0 auto;
      fill:#10b981;
      filter: drop-shadow(0 8px 18px rgba(16,185,129,.18));
    }

    .caseGrid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .caseCard{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      padding:14px;
      box-shadow: 0 10px 26px rgba(10,30,80,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .caseCard:hover{
      transform: translateY(-3px);
      border-color: rgba(47,107,255,.22);
      box-shadow: 0 18px 55px rgba(10,30,80,.12);
    }
    .caseTop{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
    }
    .caseTitle{
      font-weight:900;
      letter-spacing:-.2px;
    }
    .caseMeta{
      color:var(--muted);
      font-size:12.5px;
      line-height:1.6;
      margin-top:4px;
    }
    .caseList{
      margin:0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .caseList li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
    }
    .caseList li i{
      width:10px; height:10px;
      border-radius:50%;
      margin-top:6px;
      background: linear-gradient(135deg, var(--accent1), var(--accent2));
      box-shadow: 0 0 0 6px rgba(47,107,255,.10);
      flex:0 0 auto;
    }

    .tokenBox{
      display:grid;
      grid-template-columns: .85fr 1.15fr;
      gap:14px;
      align-items:stretch;
    }
    .tokenLeft{
      padding:16px;
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      box-shadow: 0 10px 26px rgba(10,30,80,.06);
      position:relative;
      overflow:hidden;
    }
    .tokenLeft:before{
      content:"";
      position:absolute;
      inset:-1px -1px auto -1px;
      height:60px;
      background: linear-gradient(90deg, rgba(34,197,94,.16), rgba(47,107,255,.16));
      opacity:.7;
      transform: skewY(-8deg);
      pointer-events:none;
    }
    .tokenLeft .inner{ position:relative; z-index:1; }
    .tokenLeft h3{
      margin:0 0 10px;
      font-size:16px;
    }
    .tokenLeft p{
      margin:0;
      color:var(--muted);
      line-height:1.75;
      font-size:13.5px;
    }
    .tokenLegend{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:12px;
    }
    .legendItem{
      display:flex;
      gap:10px;
      align-items:center;
      padding:9px 11px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      color:var(--muted);
      font-size:12.5px;
      font-weight:750;
    }
    .legendSwatch{
      width:10px; height:10px;
      border-radius:3px;
      background: linear-gradient(135deg, var(--accent1), var(--accent2));
    }

    .tokenRight{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      box-shadow: 0 10px 26px rgba(10,30,80,.06);
      padding:16px;
      overflow:hidden;
    }
    .segRow{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      margin-bottom:12px;
    }
    .seg{
      padding:9px 11px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.68);
      color:var(--muted);
      cursor:pointer;
      font-weight:800;
      font-size:12.8px;
      transition: transform .16s ease, border-color .16s ease, background .16s ease, color .16s ease;
      user-select:none;
    }
    .seg:hover{ transform: translateY(-1px); border-color: rgba(47,107,255,.22); background: rgba(47,107,255,.06); color:#0a2a66; }
    .segActive{
      border-color: rgba(17,183,199,.30);
      background: rgba(17,183,199,.10);
      color:#06333b;
    }
    .priceTable{
      border-radius: 16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      overflow:auto;
      -webkit-overflow-scrolling: touch;
    }
    .priceInner{
      min-width: 860px;
      width:100%;
      border-collapse:collapse;
      display:grid;
      grid-template-columns: 1.25fr 1fr 1fr;
    }
    .priceHead{
      display:contents;
    }
    .priceCellHead{
      padding:12px;
      font-weight:950;
      color:#0a2a66;
      background: rgba(246,249,255,.92);
      border-bottom:1px solid rgba(15,23,42,.10);
    }
    .priceBody{
      display:contents;
    }
    .priceCell{
      padding:12px;
      border-bottom:1px solid rgba(15,23,42,.08);
      color:var(--muted);
      font-size:13.3px;
      line-height:1.6;
    }
    .priceCellStrong{
      color:#0f172a;
      font-weight:900;
    }
    .note{
      margin-top:12px;
      color:var(--muted2);
      font-size:12.5px;
      line-height:1.7;
    }

    .formGrid{
      display:grid;
      grid-template-columns: .92fr 1.08fr;
      gap:14px;
      align-items:start;
    }
    .formSide{
      padding:16px;
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      box-shadow: 0 10px 26px rgba(10,30,80,.06);
      position:relative;
      overflow:hidden;
    }
    .formSide:before{
      content:"";
      position:absolute;
      inset:-1px -1px auto -1px;
      height:58px;
      background: linear-gradient(90deg, rgba(139,92,246,.14), rgba(47,107,255,.16));
      opacity:.75;
      transform: skewY(-8deg);
      pointer-events:none;
    }
    .formSide .inner{ position:relative; z-index:1; }
    .formSide h3{ margin:0 0 8px; font-size:16px; }
    .formSide p{ margin:0; color:var(--muted); line-height:1.75; font-size:13.5px; }
    .formBullets{
      margin:12px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .formBullets li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:var(--muted);
      font-size:13.3px;
      line-height:1.6;
      padding:10px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
    }
    .formBullets li .tick{
      width:18px; height:18px; border-radius:6px;
      background: rgba(17,183,199,.12);
      border:1px solid rgba(17,183,199,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .formBullets li .tick svg{ width:12px; height:12px; fill:#0ea5e9; }

    form{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      box-shadow: 0 10px 26px rgba(10,30,80,.06);
      padding:16px;
    }
    .fields{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .field{
      display:flex;
      flex-direction:column;
      gap:7px;
    }
    label{
      font-size:13px;
      font-weight:850;
      color:#0a2a66;
    }
    input, select, textarea{
      width:100%;
      border-radius: 14px;
      border:1px solid rgba(15,23,42,.14);
      background: rgba(255,255,255,.76);
      padding:11px 12px;
      font-size:14px;
      color:var(--text);
      outline:none;
      transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
    }
    textarea{ min-height: 120px; resize: vertical; }
    input:focus, select:focus, textarea:focus{
      border-color: rgba(47,107,255,.35);
      box-shadow: var(--focus);
    }
    .span2{ grid-column: 1 / -1; }
    .formActions{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      margin-top:12px;
    }
    .smallHelp{
      color:var(--muted2);
      font-size:12.5px;
      line-height:1.6;
      max-width: 58ch;
    }
    .submitRow{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }
    .toast{
      position:fixed;
      left:50%;
      transform: translateX(-50%);
      bottom:18px;
      background: rgba(11,42,99,.96);
      color:#fff;
      padding:12px 14px;
      border-radius:16px;
      box-shadow: 0 22px 60px rgba(0,0,0,.22);
      border:1px solid rgba(255,255,255,.18);
      display:none;
      z-index:100;
      width:min(560px, calc(100vw - 28px));
    }
    .toast strong{
      display:block;
      margin-bottom:4px;
      font-size:13.5px;
    }
    .toast span{
      color: rgba(255,255,255,.85);
      font-size:12.8px;
      line-height:1.6;
    }

    .faqGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    details{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      box-shadow: 0 10px 26px rgba(10,30,80,.06);
      padding:14px;
      transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }
    details[open]{
      border-color: rgba(47,107,255,.25);
      box-shadow: 0 18px 55px rgba(10,30,80,.12);
      transform: translateY(-2px);
    }
    summary{
      cursor:pointer;
      list-style:none;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      font-weight:900;
      color:#0a2a66;
      font-size:14px;
      padding-right:4px;
    }
    summary::-webkit-details-marker{ display:none; }
    .sumRight{
      display:flex;
      align-items:center;
      gap:10px;
      flex:0 0 auto;
      color:var(--muted);
      font-weight:800;
      font-size:12.5px;
    }
    .caret{
      width:28px; height:28px;
      border-radius:12px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.70);
      display:flex; align-items:center; justify-content:center;
      transition: transform .2s ease, border-color .2s ease;
    }
    details[open] .caret{ transform: rotate(180deg); border-color: rgba(47,107,255,.28); }
    .caret svg{ width:16px; height:16px; }
    .faqBody{
      margin-top:10px;
      color:var(--muted);
      font-size:13.4px;
      line-height:1.8;
      padding-top:10px;
      border-top:1px dashed rgba(15,23,42,.14);
    }

    .commentsGrid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .commentCard{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      box-shadow: 0 10px 26px rgba(10,30,80,.06);
      padding:16px;
      position:relative;
      overflow:hidden;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .commentCard:hover{
      transform: translateY(-3px);
      border-color: rgba(17,183,199,.25);
      box-shadow: 0 18px 55px rgba(10,30,80,.12);
    }
    .commentTop{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }
    .avatar{
      width:42px; height:42px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(135deg, rgba(17,183,199,.12), rgba(47,107,255,.14));
      display:flex;
      align-items:center;
      justify-content:center;
      color:#0a2a66;
      font-weight:950;
      letter-spacing:-.2px;
    }
    .commentRole{
      margin:0;
      color:#0a2a66;
      font-weight:900;
      font-size:13.5px;
      line-height:1.3;
    }
    .commentText{
      margin:0;
      color:var(--muted);
      font-size:13.6px;
      line-height:1.75;
    }
    .commentFoot{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-top:auto;
      color:var(--muted2);
      font-size:12.5px;
      padding-top:10px;
      border-top:1px dashed rgba(15,23,42,.14);
    }

    .articlesGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .listCard{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      box-shadow: 0 10px 26px rgba(10,30,80,.06);
      padding:16px;
      overflow:hidden;
    }
    .listCardHeader{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:10px;
    }
    .listCardHeader h3{
      margin:0;
      font-size:16px;
    }
    .listCardHeader span{
      color:var(--muted);
      font-size:12.8px;
      line-height:1.6;
      max-width: 50ch;
    }
    .articleList{
      margin:0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .articleItem{
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .articleItem:hover{
      transform: translateY(-2px);
      border-color: rgba(47,107,255,.22);
      background: rgba(255,255,255,.82);
    }
    .articleItem a{
      display:block;
      font-weight:950;
      color:#0a2a66;
      font-size:13.8px;
      margin-bottom:6px;
    }
    .articleItem p{
      margin:0;
      color:var(--muted);
      font-size:12.9px;
      line-height:1.7;
    }

    .tagCloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:12px;
    }
    .tag{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      color:var(--muted);
      font-weight:850;
      font-size:12.6px;
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
      cursor:pointer;
      user-select:none;
    }
    .tag:hover{
      transform: translateY(-2px);
      border-color: rgba(17,183,199,.26);
      background: rgba(17,183,199,.08);
      color:#06333b;
    }

    .networkGrid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .timeline{
      display:flex;
      flex-direction:column;
      gap:12px;
      padding:6px 0;
    }
    .tItem{
      display:grid;
      grid-template-columns: 44px 1fr;
      gap:12px;
      align-items:start;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .tItem:hover{
      transform: translateY(-2px);
      border-color: rgba(47,107,255,.22);
      box-shadow: 0 18px 40px rgba(10,30,80,.10);
    }
    .tIcon{
      width:44px; height:44px;
      border-radius:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(135deg, rgba(17,183,199,.12), rgba(47,107,255,.14));
      color:#0a2a66;
      font-weight:950;
    }
    .tBody strong{
      display:block;
      margin-bottom:4px;
      font-size:14px;
      letter-spacing:-.1px;
    }
    .tBody span{
      display:block;
      color:var(--muted);
      font-size:13.2px;
      line-height:1.7;
    }
    .regionGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .region{
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      transition: transform .18s ease, border-color .18s ease;
    }
    .region:hover{ transform: translateY(-2px); border-color: rgba(17,183,199,.24); }
    .region strong{
      display:flex;
      align-items:center;
      gap:10px;
      font-size:14px;
      letter-spacing:-.1px;
      color:#0a2a66;
      margin-bottom:6px;
    }
    .region strong i{
      width:10px; height:10px;
      border-radius:4px;
      background: linear-gradient(135deg, var(--accent1), var(--accent2));
      box-shadow: 0 0 0 6px rgba(47,107,255,.10);
      display:inline-block;
    }
    .region span{
      color:var(--muted);
      font-size:13px;
      line-height:1.65;
      display:block;
    }

    .footer{
      margin-top: 10px;
      padding:28px 0 26px;
      background:
        radial-gradient(800px 360px at 20% 0%, rgba(17,183,199,.14), transparent 60%),
        radial-gradient(680px 320px at 90% 10%, rgba(47,107,255,.16), transparent 62%),
        linear-gradient(180deg, rgba(255,255,255,.45), rgba(255,255,255,.82));
      border-top:1px solid rgba(15,23,42,.08);
    }
    .footerInner{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .footerCard{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      padding:16px;
      box-shadow: 0 10px 26px rgba(10,30,80,.06);
    }
    .footerBrand{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:12px;
    }
    .footerBrand img{
      width:46px; height:46px;
      object-fit:contain;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.75);
    }
    .footerBrand strong{
      font-size:16px;
      letter-spacing:-.2px;
    }
    .footerBrand span{
      display:block;
      margin-top:4px;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
    }
    .footerLinks{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:10px;
    }
    .footerLinks a{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      color: #0a2a66;
      font-weight:850;
      font-size:12.8px;
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
      white-space:nowrap;
    }
    .footerLinks a:hover{
      transform: translateY(-2px);
      border-color: rgba(47,107,255,.22);
      background: rgba(47,107,255,.06);
    }
    .footerRightGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .kv{
      padding:14px;
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
    }
    .kv strong{
      display:flex;
      align-items:center;
      gap:10px;
      color:#0a2a66;
      font-size:13.8px;
      letter-spacing:-.1px;
      margin-bottom:8px;
    }
    .kv strong svg{ width:18px; height:18px; }
    .kv span{
      display:block;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .wechatRow{
      display:flex;
      gap:12px;
      align-items:flex-start;
      margin-top:10px;
    }
    .wechatRow img{
      width:86px;
      height:86px;
      object-fit:cover;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
    }
    .wechatRow .wechatText{
      display:flex;
      flex-direction:column;
      gap:8px;
      padding-top:2px;
    }
    .wechatText a{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.70);
      color:#0a2a66;
      font-weight:900;
      font-size:13px;
      transition: transform .18s ease, border-color .18s ease;
      white-space:nowrap;
    }
    .wechatText a:hover{ transform: translateY(-2px); border-color: rgba(17,183,199,.24); }
    .copyright{
      margin-top:14px;
      color:var(--muted2);
      font-size:12.5px;
      line-height:1.6;
      text-align:center;
    }

    .floatHelp{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:60;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .helpBtn{
      display:flex;
      align-items:center;
      gap:12px;
      padding:12px 14px;
      border-radius: 18px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 55px rgba(10,30,80,.16);
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
      user-select:none;
      max-width: 210px;
    }
    .helpBtn:hover{
      transform: translateY(-3px);
      border-color: rgba(47,107,255,.24);
      background: rgba(255,255,255,.96);
      box-shadow: 0 22px 70px rgba(10,30,80,.20);
    }
    .helpIcon{
      width:42px; height:42px;
      border-radius:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      background: linear-gradient(135deg, rgba(17,183,199,.14), rgba(47,107,255,.18));
      border:1px solid rgba(47,107,255,.20);
      color:#0a2a66;
    }
    .helpText{
      display:flex;
      flex-direction:column;
      gap:4px;
      min-width:0;
    }
    .helpText strong{ font-size:13.5px; letter-spacing:-.1px; }
    .helpText span{ color:var(--muted); font-size:12.5px; line-height:1.3; }
    .helpPanel{
      display:none;
      border-radius: 22px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.90);
      box-shadow: 0 22px 70px rgba(10,30,80,.22);
      padding:14px;
      width: 280px;
      overflow:hidden;
    }
    .helpPanelTop{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:10px;
    }
    .helpPanelTop strong{ font-size:14px; color:#0a2a66; }
    .closeX{
      width:36px; height:36px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.75);
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      transition: transform .18s ease;
    }
    .closeX:hover{ transform: translateY(-2px); }
    .closeX svg{ width:16px; height:16px; }
    .helpPanelBody{
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .helpPanelBody img{
      width:90px; height:90px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      object-fit:cover;
      background:#fff;
    }
    .helpPanelBody .hpText{
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .hpActions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:12px;
    }
    .hpActions a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.72);
      color:#0a2a66;
      font-weight:900;
      font-size:13px;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      white-space:nowrap;
    }
    .hpActions a:hover{ transform: translateY(-2px); border-color: rgba(47,107,255,.22); background: rgba(47,107,255,.06); }
    .hpActions a svg{ width:16px; height:16px; }

    .toTop{
      width:46px; height:46px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.78);
      display:flex;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      box-shadow: 0 18px 55px rgba(10,30,80,.16);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      user-select:none;
    }
    .toTop:hover{ transform: translateY(-3px); border-color: rgba(47,107,255,.24); background: rgba(255,255,255,.96); }
    .toTop svg{ width:18px; height:18px; }

    .reveal{
      opacity:0;
      transform: translateY(14px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.in{
      opacity:1;
      transform: translateY(0);
    }

    @media (max-width: 980px){
      .heroGrid{ grid-template-columns: 1fr; }
      .heroRight{ padding:14px; }
      .cards3{ grid-template-columns: 1fr; }
      .twoCol{ grid-template-columns: 1fr; }
      .matchGrid{ grid-template-columns: 1fr; }
      .matchRight{ border-left:none; border-top: 1px solid rgba(15,23,42,.08); }
      .tokenBox{ grid-template-columns: 1fr; }
      .formGrid{ grid-template-columns: 1fr; }
      .faqGrid{ grid-template-columns: 1fr; }
      .commentsGrid{ grid-template-columns: 1fr; }
      .caseGrid{ grid-template-columns: 1fr; }
      .articlesGrid{ grid-template-columns: 1fr; }
      .networkGrid{ grid-template-columns: 1fr; }
      .footerInner{ grid-template-columns: 1fr; }
      .footerRightGrid{ grid-template-columns: 1fr; }
    }

    @media (max-width: 860px){
      .nav{ display:none; }
      .hamburger{ display:flex; }
      .mobilePanel{ display:block; }
      .heroLeft{ padding:18px 0; }
      h1{ font-size:28px; }
      .dataGrid{ grid-template-columns: 1fr 1fr; }
      .fields{ grid-template-columns: 1fr; }
      .floatHelp{ right:12px; bottom:12px; }
      .helpPanel{ width: 260px; }
    }