:root{
      --bg0:#ffffff;
      --bg1:#f7f8ff;
      --bg2:#f5f6f8;
      --text:#14161a;
      --muted:#5b616c;
      --muted2:#7a828f;
      --border:rgba(20,22,26,.12);
      --shadow:0 14px 40px rgba(15,23,42,.10);
      --shadow2:0 10px 28px rgba(15,23,42,.10);
      --accent:#1b6cff;
      --accent2:#00c2ff;
      --accent3:#7c3aed;
      --good:#00b37e;
      --warn:#ffb020;
      --ring: rgba(27,108,255,.25);
      --card:#ffffff;
      --chip:#eef2ff;
      --chipText:#2046c8;
      --radius:16px;
      --radius2:22px;
      --max:1160px;
    }
    *{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", Arial, "Noto Sans", "Noto Sans SC", sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 700px at 20% -10%, rgba(27,108,255,.14), transparent 55%),
        radial-gradient(900px 600px at 90% 10%, rgba(0,194,255,.12), transparent 50%),
        radial-gradient(1000px 700px at 30% 80%, rgba(124,58,237,.10), transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #fbfcff 40%, #f6f7fb 100%);
      overflow-x:hidden;
    }
    a{color:inherit}
    .container{
      max-width:var(--max);
      padding:0 18px;
      margin:0 auto;
    }

    /* Header */
    .site-header{
      position:sticky;
      top:0;
      z-index:30;
      backdrop-filter:saturate(140%) blur(10px);
      background:rgba(255,255,255,.72);
      border-bottom:1px solid rgba(20,22,26,.08);
    }
    .header-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:12px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:200px;
    }
    .brand img{
      width:40px;
      height:40px;
      object-fit:contain;
      display:block;
    }
    .brand-title{
      display:flex;
      flex-direction:column;
      line-height:1.05;
    }
    .brand-title strong{
      font-size:14px;
      letter-spacing:.2px;
    }
    .brand-title span{
      font-size:12px;
      color:var(--muted);
      margin-top:4px;
    }
    .nav{
      display:flex;
      align-items:center;
      gap:18px;
    }
    .nav a{
      text-decoration:none;
      font-size:13px;
      color:rgba(20,22,26,.76);
      padding:10px 10px;
      border-radius:12px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .nav a:hover{
      background:rgba(27,108,255,.10);
      color:var(--text);
      transform: translateY(-1px);
    }
    .header-actions{
      display:flex;
      align-items:center;
      gap:10px;
      justify-content:flex-end;
      min-width:240px;
    }
    .btn{
      appearance:none;
      border:1px solid rgba(20,22,26,.12);
      background:rgba(255,255,255,.8);
      color:var(--text);
      padding:10px 14px;
      border-radius:14px;
      font-weight:600;
      font-size:13px;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
      display:inline-flex;
      align-items:center;
      gap:10px;
      text-decoration:none;
      user-select:none;
    }
    .btn:focus{outline: none; box-shadow:0 0 0 4px var(--ring)}
    .btn:hover{transform: translateY(-1px); box-shadow:0 10px 24px rgba(20,22,26,.10)}
    .btn-primary{
      border-color:rgba(27,108,255,.35);
      background: linear-gradient(135deg, rgba(27,108,255,.95) 0%, rgba(0,194,255,.9) 100%);
      color:white;
      box-shadow:0 16px 36px rgba(27,108,255,.20);
    }
    .btn-primary:hover{box-shadow:0 18px 48px rgba(27,108,255,.28)}
    .btn-ghost{
      border-color:rgba(20,22,26,.10);
      background:rgba(255,255,255,.65);
    }

    .mobile-toggle{
      display:none;
      width:42px;
      height:42px;
      border-radius:14px;
      border:1px solid rgba(20,22,26,.12);
      background:rgba(255,255,255,.8);
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .mobile-toggle:hover{transform: translateY(-1px); box-shadow:0 12px 24px rgba(20,22,26,.10)}
    .mobile-toggle .bars{
      width:18px; height:12px; margin:0 auto; position:relative;
    }
    .mobile-toggle .bars span{
      position:absolute; left:0; right:0; height:2px; border-radius:2px; background:rgba(20,22,26,.85);
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .mobile-toggle .bars span:nth-child(1){top:0}
    .mobile-toggle .bars span:nth-child(2){top:5px}
    .mobile-toggle .bars span:nth-child(3){top:10px}
    .mobile-toggle[aria-expanded="true"] .bars span:nth-child(1){top:5px; transform: rotate(45deg)}
    .mobile-toggle[aria-expanded="true"] .bars span:nth-child(2){opacity:0}
    .mobile-toggle[aria-expanded="true"] .bars span:nth-child(3){top:5px; transform: rotate(-45deg)}
    .mobile-drawer{
      display:none;
      padding:10px 0 18px;
    }
    .mobile-drawer .drawer-panel{
      border:1px solid rgba(20,22,26,.10);
      background:rgba(255,255,255,.86);
      border-radius:18px;
      padding:12px;
      box-shadow: var(--shadow2);
    }
    .drawer-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:8px;
    }
    .drawer-grid a{
      text-decoration:none;
      font-size:13px;
      padding:10px 10px;
      border-radius:14px;
      color:rgba(20,22,26,.8);
      background: rgba(255,255,255,.6);
      border:1px solid rgba(20,22,26,.08);
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
      text-align:center;
    }
    .drawer-grid a:hover{transform: translateY(-1px); border-color: rgba(27,108,255,.35); background: rgba(27,108,255,.08)}

    /* Hero */
    .hero{
      position:relative;
      padding:46px 0 26px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:22px;
      align-items:start;
    }
    .hero-card{
      border:1px solid rgba(20,22,26,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.58) 100%);
      border-radius:var(--radius2);
      box-shadow: 0 18px 60px rgba(16,24,40,.10);
      padding:24px;
      overflow:hidden;
      position:relative;
    }
    .hero-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(900px 480px at 15% 0%, rgba(27,108,255,.20), transparent 55%),
        radial-gradient(640px 420px at 95% 20%, rgba(0,194,255,.18), transparent 55%),
        radial-gradient(560px 420px at 40% 110%, rgba(124,58,237,.16), transparent 55%);
      opacity:.95;
      pointer-events:none;
      filter:saturate(1.1);
    }
    .hero-card > *{position:relative; z-index:1}
    .kicker{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      margin-bottom:14px;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(27,108,255,.10);
      border:1px solid rgba(27,108,255,.22);
      color:#0b2a78;
      font-weight:700;
      font-size:12px;
      letter-spacing:.2px;
    }
    .pill i{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      box-shadow:0 0 0 6px rgba(27,108,255,.12);
      display:inline-block;
    }
    .kicker .subtag{
      font-size:12px;
      color:var(--muted);
      font-weight:600;
      padding:8px 0;
    }
    h1{
      margin:0;
      font-size:34px;
      letter-spacing:-.6px;
      line-height:1.15;
    }
    .hero-lead{
      margin-top:12px;
      color:var(--muted);
      font-size:15px;
      line-height:1.75;
      max-width:62ch;
    }
    .hero-actions{
      display:flex;
      align-items:center;
      gap:12px;
      margin-top:18px;
      flex-wrap:wrap;
    }
    .hero-mini{
      display:flex;
      align-items:center;
      gap:14px;
      margin-top:18px;
      flex-wrap:wrap;
    }
    .mini-stat{
      display:flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(20,22,26,.10);
      background: rgba(255,255,255,.55);
    }
    .mini-stat .dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--accent2), var(--accent3));
      box-shadow:0 0 0 6px rgba(0,194,255,.10);
    }
    .mini-stat strong{
      font-size:13px;
      letter-spacing:.2px;
    }
    .mini-stat span{
      font-size:12px;
      color:var(--muted);
      margin-left:8px;
      font-weight:600;
    }

    .hero-side{
      border-radius:var(--radius2);
      border:1px solid rgba(20,22,26,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.62) 100%);
      box-shadow: 0 18px 60px rgba(16,24,40,.08);
      padding:18px;
    }
    .side-title{
      display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:12px;
    }
    .side-title h2{
      margin:0;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .status{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 10px;
      border-radius:999px;
      background:rgba(0,179,126,.10);
      border:1px solid rgba(0,179,126,.22);
      color:#086a48;
      font-size:12px;
      font-weight:800;
      white-space:nowrap;
    }
    .status b{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, #00c2ff, #00b37e);
      box-shadow:0 0 0 6px rgba(0,179,126,.12);
      display:inline-block;
    }
    .metric-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
    }
    .metric{
      border-radius:16px;
      border:1px solid rgba(20,22,26,.10);
      background:rgba(255,255,255,.55);
      padding:12px 12px;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .metric:hover{
      transform: translateY(-2px);
      box-shadow:0 16px 34px rgba(20,22,26,.10);
    }
    .metric .label{
      color:var(--muted);
      font-weight:700;
      font-size:12px;
    }
    .metric .value{
      margin-top:8px;
      font-size:18px;
      font-weight:900;
      letter-spacing:-.4px;
    }
    .metric .hint{
      margin-top:6px;
      font-size:12px;
      color:var(--muted2);
      line-height:1.4;
    }
    .side-divider{
      height:1px; background:rgba(20,22,26,.08); margin:14px 0;
    }
    .quick-form{
      display:grid;
      gap:10px;
    }
    .quick-form label{
      font-size:12px;
      color:var(--muted);
      font-weight:700;
      margin-bottom:6px;
      display:block;
    }
    .field{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(20,22,26,.12);
      background:rgba(255,255,255,.75);
      padding:11px 12px;
      font-size:14px;
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease;
    }
    .field:focus{
      border-color:rgba(27,108,255,.45);
      box-shadow:0 0 0 4px rgba(27,108,255,.18);
    }
    .quick-cta{
      display:flex;
      gap:10px;
      align-items:center;
      margin-top:4px;
      flex-wrap:wrap;
    }
    .small-note{
      font-size:12px;
      color:var(--muted2);
      line-height:1.45;
    }

    /* General sections */
    section{padding:42px 0}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:18px;
      margin-bottom:18px;
    }
    .section-head h2{
      margin:0;
      font-size:24px;
      letter-spacing:-.4px;
      line-height:1.2;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
      max-width:58ch;
    }
    .chip-row{
      display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;
    }
    .chip{
      background:rgba(238,242,255,.9);
      border:1px solid rgba(27,108,255,.18);
      color:var(--chipText);
      border-radius:999px;
      padding:8px 12px;
      font-weight:800;
      font-size:12px;
      white-space:nowrap;
    }

    .grid3{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:14px;
    }
    .grid2{
      display:grid;
      grid-template-columns:repeat(2, 1fr);
      gap:14px;
    }
    .card{
      border:1px solid rgba(20,22,26,.10);
      background:rgba(255,255,255,.72);
      border-radius:var(--radius);
      box-shadow: 0 10px 32px rgba(16,24,40,.06);
      padding:16px;
    }
    .card-soft{
      background: linear-gradient(180deg, rgba(255,255,255,.74) 0%, rgba(255,255,255,.60) 100%);
    }
    .card h3{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:10px 0 0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
    }
    .card .icon{
      width:40px; height:40px;
      border-radius:14px;
      background: linear-gradient(135deg, rgba(27,108,255,.14), rgba(0,194,255,.12));
      border:1px solid rgba(27,108,255,.18);
      display:flex; align-items:center; justify-content:center;
      margin-bottom:12px;
    }
    .card .icon svg{width:20px; height:20px; fill:none; stroke:rgba(27,108,255,.95); stroke-width:2}

    /* Timeline */
    .timeline{
      position:relative;
      padding-left:4px;
    }
    .timeline:before{
      content:"";
      position:absolute;
      top:14px; bottom:14px;
      left:18px;
      width:2px;
      background: linear-gradient(180deg, rgba(27,108,255,.55), rgba(0,194,255,.18));
    }
    .step{
      display:flex;
      gap:12px;
      padding:12px 0 12px 0;
      position:relative;
    }
    .step .badge{
      width:36px; height:36px;
      border-radius:14px;
      background: linear-gradient(135deg, rgba(27,108,255,.95), rgba(0,194,255,.9));
      color:white;
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      box-shadow:0 16px 34px rgba(27,108,255,.22);
      flex: 0 0 auto;
      margin-left:-4px;
    }
    .step .content h3{
      margin:2px 0 0;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .step .content p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
    }

    /* Comparison */
    .comparison-wrap{
      border:1px solid rgba(20,22,26,.10);
      background:rgba(255,255,255,.70);
      border-radius:var(--radius2);
      overflow:hidden;
      box-shadow: 0 14px 44px rgba(16,24,40,.08);
    }
    .comparison-head{
      padding:16px 16px 14px;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      background:
        radial-gradient(900px 420px at 10% 0%, rgba(27,108,255,.18), transparent 55%),
        radial-gradient(700px 340px at 90% 40%, rgba(0,194,255,.14), transparent 50%),
        linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.60));
      border-bottom:1px solid rgba(20,22,26,.08);
    }
    .score{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      justify-content:flex-end;
      text-align:right;
    }
    .stars{
      display:flex; gap:4px; align-items:center;
    }
    .star{
      width:18px; height:18px;
      display:inline-block;
      background: conic-gradient(from 180deg, #ffd166, #ff9f1c);
      clip-path: polygon(50% 0%, 61% 36%, 98% 36%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 36%, 39% 36%);
      filter: drop-shadow(0 6px 14px rgba(255,159,28,.25));
    }
    .score .num{
      font-size:22px;
      font-weight:1000;
      letter-spacing:-.6px;
    }
    .score .sub{
      font-size:12px;
      color:var(--muted);
      font-weight:700;
      margin-top:2px;
    }
    .comparison-meta{
      display:flex; gap:12px; flex-wrap:wrap; align-items:center;
    }
    .tag-big{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(27,108,255,.18);
      background: rgba(27,108,255,.08);
      font-weight:900;
      color:#0b2a78;
      font-size:13px;
      white-space:nowrap;
    }
    .tag-big b{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      box-shadow:0 0 0 6px rgba(27,108,255,.12);
      display:inline-block;
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      font-size:13.5px;
    }
    thead th{
      text-align:left;
      padding:14px 14px;
      background: rgba(245,246,248,.75);
      border-bottom:1px solid rgba(20,22,26,.08);
      color:rgba(20,22,26,.82);
      font-weight:900;
    }
    thead th:first-child{width:34%}
    tbody td{
      padding:14px 14px;
      border-bottom:1px solid rgba(20,22,26,.06);
      color:rgba(20,22,26,.78);
      vertical-align:top;
    }
    tbody tr:last-child td{border-bottom:none}
    .yes{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 10px;
      border-radius:14px;
      background: rgba(0,179,126,.10);
      border:1px solid rgba(0,179,126,.22);
      color:#085f43;
      font-weight:900;
      white-space:nowrap;
    }
    .yes:before{
      content:"";
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, #00c2ff, #00b37e);
      box-shadow:0 0 0 6px rgba(0,179,126,.12);
      display:inline-block;
    }
    .mid{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 10px;
      border-radius:14px;
      background: rgba(255,176,32,.10);
      border:1px solid rgba(255,176,32,.22);
      color:#7a4a00;
      font-weight:900;
      white-space:nowrap;
    }
    .mid:before{
      content:"";
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, #ffd166, #ff9f1c);
      box-shadow:0 0 0 6px rgba(255,176,32,.12);
      display:inline-block;
    }
    .no{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 10px;
      border-radius:14px;
      background: rgba(20,22,26,.06);
      border:1px solid rgba(20,22,26,.12);
      color:rgba(20,22,26,.65);
      font-weight:900;
      white-space:nowrap;
    }
    .no:before{
      content:"";
      width:10px; height:10px; border-radius:3px;
      background: rgba(20,22,26,.30);
      display:inline-block;
    }
    .table-actions{
      padding:14px 16px 16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      background: linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.70));
    }
    .table-actions .left{
      display:flex; align-items:flex-start; gap:10px;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
      max-width:64ch;
    }
    .spark{
      width:34px; height:34px; border-radius:14px;
      background: linear-gradient(135deg, rgba(27,108,255,.14), rgba(0,194,255,.12));
      border:1px solid rgba(27,108,255,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }
    .spark svg{width:18px; height:18px; stroke:rgba(27,108,255,.95); fill:none; stroke-width:2}

    /* Cards and media sections */
    .media-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:14px;
      align-items:start;
    }
    .media-wrap{
      border-radius:var(--radius2);
      border:1px solid rgba(20,22,26,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.60));
      box-shadow: 0 14px 44px rgba(16,24,40,.07);
      overflow:hidden;
    }
    .media-wrap .topbar{
      padding:16px 16px 12px;
      border-bottom:1px solid rgba(20,22,26,.08);
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      background: rgba(245,246,248,.65);
    }
    .topbar .left h3{
      margin:0; font-size:15px; letter-spacing:-.2px;
    }
    .topbar .left p{
      margin:6px 0 0; color:var(--muted); font-size:13px; line-height:1.6;
    }
    .badge-hot{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(124,58,237,.20);
      background: rgba(124,58,237,.08);
      color:#4a2aa6;
      font-weight:950;
      white-space:nowrap;
      font-size:13px;
    }
    .badge-hot i{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(27,108,255,.8));
      box-shadow:0 0 0 6px rgba(124,58,237,.12);
      display:inline-block;
    }
    .media-images{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:0;
    }
    .img-cell{
      border-right:1px solid rgba(20,22,26,.08);
      padding:14px;
    }
    .img-cell:last-child{border-right:none}
    .img-box{
      border-radius:18px;
      border:1px solid rgba(20,22,26,.10);
      background:rgba(255,255,255,.70);
      overflow:hidden;
      padding:10px;
    }
    .img-box img{
      width:100%;
      height:auto;
      display:block;
      border-radius:12px;
      object-fit:cover;
      transform: scale(1);
      transition: transform .35s ease, filter .35s ease;
    }
    .img-box:hover img{
      transform: scale(1.02);
      filter: saturate(1.06);
    }

    .side-list{
      display:grid; gap:12px;
    }
    .list-card{
      padding:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,22,26,.10);
      background:rgba(255,255,255,.70);
      box-shadow: 0 12px 40px rgba(16,24,40,.06);
    }
    .list-card h3{
      margin:0; font-size:15px; letter-spacing:-.2px;
    }
    .list-card ul{
      margin:10px 0 0; padding:0; list-style:none;
      display:grid; gap:9px;
    }
    .list-card li{
      display:flex; align-items:flex-start; gap:10px;
      color:rgba(20,22,26,.78);
      font-size:13.5px;
      line-height:1.5;
    }
    .check{
      width:18px; height:18px; border-radius:7px;
      background: rgba(27,108,255,.10);
      border:1px solid rgba(27,108,255,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }
    .check svg{width:12px; height:12px; stroke:rgba(27,108,255,.95); fill:none; stroke-width:2.4}

    /* Case center */
    .case-grid{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:14px;
    }
    .case{
      padding:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,22,26,.10);
      background:rgba(255,255,255,.70);
      box-shadow: 0 12px 44px rgba(16,24,40,.06);
      transition: transform .18s ease, box-shadow .18s ease;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .case:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 60px rgba(16,24,40,.10);
    }
    .case .head{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .case .type{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 10px;
      border-radius:999px;
      background: rgba(27,108,255,.10);
      border:1px solid rgba(27,108,255,.18);
      font-weight:900;
      font-size:12px;
      color:#0b2a78;
      white-space:nowrap;
    }
    .case .score{
      display:flex;
      align-items:center;
      gap:8px;
      font-weight:1000;
      color:rgba(20,22,26,.85);
    }
    .case .score span{
      color:var(--muted);
      font-weight:900;
      font-size:12px;
    }
    .case h3{margin:0; font-size:16px; letter-spacing:-.2px}
    .case .desc{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
    }
    .case .meta{
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .chip2{
      font-size:12px;
      font-weight:900;
      color:rgba(20,22,26,.72);
      background: rgba(20,22,26,.05);
      border:1px solid rgba(20,22,26,.08);
      padding:8px 10px;
      border-radius:999px;
    }

    /* Articles */
    .article-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .article-list{
      display:grid; gap:12px;
    }
    .article-item{
      padding:14px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,22,26,.10);
      background:rgba(255,255,255,.70);
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .article-item:hover{
      transform: translateY(-2px);
      box-shadow:0 18px 48px rgba(16,24,40,.08);
    }
    .article-item .left{
      display:flex; flex-direction:column; gap:8px;
      min-width:0;
    }
    .article-item .k{
      display:flex; align-items:center; gap:8px; flex-wrap:wrap;
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(27,108,255,.18);
      background: rgba(27,108,255,.08);
      color:#0b2a78;
      font-weight:950;
      font-size:12px;
      white-space:nowrap;
    }
    .k .date{
      color:var(--muted2);
      font-size:12px;
      font-weight:800;
      white-space:nowrap;
    }
    .article-item h3{
      margin:0;
      font-size:15px;
      letter-spacing:-.2px;
      line-height:1.35;
    }
    .article-item p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.6;
      max-width:52ch;
    }
    .article-item .go{
      flex:0 0 auto;
      text-decoration:none;
      color:rgba(27,108,255,.95);
      font-weight:950;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(27,108,255,.20);
      background: rgba(27,108,255,.08);
      transition: transform .15s ease, background .15s ease;
      align-self:flex-start;
      white-space:nowrap;
    }
    .article-item .go:hover{transform: translateY(-1px); background: rgba(27,108,255,.12)}
    .article-side{
      border-radius:var(--radius2);
      border:1px solid rgba(20,22,26,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.60));
      box-shadow: 0 14px 44px rgba(16,24,40,.07);
      padding:16px;
    }
    .article-side h3{margin:0; font-size:15px; letter-spacing:-.2px}
    .side-tabs{
      display:flex; gap:10px; flex-wrap:wrap; margin-top:12px;
    }
    .tab{
      border-radius:999px;
      padding:10px 12px;
      border:1px solid rgba(20,22,26,.10);
      background:rgba(255,255,255,.65);
      font-weight:950;
      font-size:12px;
      cursor:pointer;
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
      user-select:none;
    }
    .tab:hover{transform: translateY(-1px)}
    .tab[aria-selected="true"]{
      border-color: rgba(27,108,255,.35);
      background: rgba(27,108,255,.10);
      color:#0b2a78;
    }
    .side-panel{
      margin-top:12px;
      border-top:1px solid rgba(20,22,26,.08);
      padding-top:12px;
    }
    .side-panel .p{
      margin:0;
      color:var(--muted);
      line-height:1.8;
      font-size:13.5px;
    }
    .side-panel ul{
      margin:10px 0 0; padding:0; list-style:none;
      display:grid; gap:10px;
    }
    .side-panel li{
      display:flex; gap:10px; align-items:flex-start;
      color:rgba(20,22,26,.78);
      font-size:13.5px;
      line-height:1.55;
    }

    /* Pricing / Token */
    .token-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .price-card{
      border-radius:var(--radius2);
      border:1px solid rgba(20,22,26,.10);
      background:rgba(255,255,255,.72);
      box-shadow: 0 14px 44px rgba(16,24,40,.07);
      padding:16px;
    }
    .price-card h3{margin:0; font-size:15px; letter-spacing:-.2px}
    .token-list{
      margin:12px 0 0; padding:0;
      list-style:none;
      display:grid; gap:10px;
    }
    .token-item{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(20,22,26,.10);
      background:rgba(255,255,255,.60);
    }
    .token-item .left{
      display:flex; flex-direction:column; gap:6px; min-width:0;
    }
    .token-item .title{
      font-weight:1000; letter-spacing:-.2px; font-size:13.5px;
      white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
      max-width: 34ch;
    }
    .token-item .desc{
      color:var(--muted); font-size:12.5px; line-height:1.4;
      white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
      max-width: 40ch;
    }
    .token-item .price{
      font-weight:1000;
      font-size:16px;
      letter-spacing:-.4px;
      color:rgba(20,22,26,.88);
      white-space:nowrap;
    }
    .token-item .price small{
      font-size:12px;
      color:var(--muted2);
      font-weight:900;
      margin-left:6px;
    }
    .price-note{
      margin-top:12px;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
    }

    /* Form */
    .form-card{
      border-radius:var(--radius2);
      border:1px solid rgba(20,22,26,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.60));
      box-shadow: 0 14px 44px rgba(16,24,40,.07);
      padding:16px;
    }
    form .row{
      display:grid;
      grid-template-columns:repeat(2, 1fr);
      gap:12px;
    }
    .form-card label{
      display:block;
      color:var(--muted);
      font-size:12px;
      font-weight:800;
      margin:10px 0 6px;
    }
    textarea.field{min-height:108px; resize:vertical}
    .form-actions{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-top:12px;
    }
    .privacy{
      color:var(--muted2);
      font-size:12px;
      line-height:1.5;
      max-width:52ch;
    }
    .toast{
      position: fixed;
      left: 50%;
      transform: translateX(-50%);
      bottom: 22px;
      z-index: 60;
      background: rgba(20,22,26,.90);
      color: white;
      padding: 12px 14px;
      border-radius: 16px;
      box-shadow: 0 18px 60px rgba(0,0,0,.22);
      display:none;
      max-width: 92vw;
      font-weight:800;
      font-size:13px;
    }
    .toast.show{display:block; animation: toastIn .25s ease}
    @keyframes toastIn{
      from{opacity:0; transform:translateX(-50%) translateY(10px)}
      to{opacity:1; transform:translateX(-50%) translateY(0)}
    }

    /* FAQ */
    .faq-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .faq-panel{
      border-radius:var(--radius2);
      border:1px solid rgba(20,22,26,.10);
      background:rgba(255,255,255,.72);
      box-shadow: 0 12px 44px rgba(16,24,40,.06);
      overflow:hidden;
    }
    details{
      border-bottom:1px solid rgba(20,22,26,.08);
    }
    details:last-child{border-bottom:none}
    summary{
      list-style:none;
      cursor:pointer;
      padding:14px 16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      font-weight:950;
      font-size:13.8px;
    }
    summary::-webkit-details-marker{display:none}
    .sum-right{
      display:flex; align-items:center; gap:10px; flex:0 0 auto;
    }
    .chev{
      width:34px; height:34px; border-radius:14px;
      border:1px solid rgba(20,22,26,.10);
      background:rgba(245,246,248,.7);
      display:flex; align-items:center; justify-content:center;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }
    details[open] .chev{transform: rotate(180deg); background: rgba(27,108,255,.08); border-color: rgba(27,108,255,.20)}
    .chev svg{width:16px; height:16px; stroke:rgba(20,22,26,.72); fill:none; stroke-width:2}
    .faq-body{
      padding:0 16px 14px;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.75;
    }

    /* Reviews */
    .review-grid{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:14px;
    }
    .review{
      border-radius:var(--radius2);
      border:1px solid rgba(20,22,26,.10);
      background:rgba(255,255,255,.72);
      box-shadow: 0 12px 44px rgba(16,24,40,.06);
      padding:16px;
      display:flex;
      flex-direction:column;
      gap:12px;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .review:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 60px rgba(16,24,40,.10);
    }
    .review .top{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
    }
    .who{
      display:flex; align-items:center; gap:12px; min-width:0;
    }
    .avatar{
      width:40px; height:40px; border-radius:16px;
      background: linear-gradient(135deg, rgba(27,108,255,.18), rgba(0,194,255,.12));
      border:1px solid rgba(27,108,255,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      color:#0b2a78;
      flex:0 0 auto;
    }
    .who .name{
      display:flex; flex-direction:column; min-width:0;
      gap:6px;
    }
    .who .name strong{
      font-size:14px; letter-spacing:-.2px;
      white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
      max-width: 16ch;
    }
    .who .name span{
      font-size:12px; color:var(--muted2); font-weight:800;
      white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
      max-width: 18ch;
    }
    .review .starsRow{
      display:flex; align-items:center; gap:6px;
      color:#0b2a78;
      font-weight:950;
      font-size:12px;
      white-space:nowrap;
    }
    .review .starsRow .s{
      width:14px; height:14px; border-radius:5px;
      background: linear-gradient(135deg, #ffd166, #ff9f1c);
      clip-path: polygon(50% 0%, 61% 36%, 98% 36%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 36%, 39% 36%);
      filter: drop-shadow(0 10px 16px rgba(255,159,28,.25));
    }
    .review p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.75;
    }

    /* Case images */
    .case-medias{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
      margin-top:12px;
    }
    .case-medias .m{
      border-radius:18px;
      border:1px solid rgba(20,22,26,.10);
      overflow:hidden;
      background:rgba(255,255,255,.65);
      padding:10px;
    }
    .case-medias img{
      width:100%; height:auto; display:block; border-radius:12px; object-fit:cover;
      transition: transform .35s ease, filter .35s ease;
    }
    .case-medias .m:hover img{transform: scale(1.02); filter:saturate(1.06)}
    .case-medias .cap{
      margin-top:10px;
      color:var(--muted);
      font-size:12.5px;
      line-height:1.5;
      font-weight:800;
    }

    /* Labels cloud */
    .cloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:12px;
    }
    .cloud .t{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,22,26,.10);
      background: rgba(255,255,255,.65);
      font-weight:950;
      font-size:12px;
      color:rgba(20,22,26,.78);
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .cloud .t:hover{
      transform: translateY(-2px);
      border-color: rgba(27,108,255,.25);
      background: rgba(27,108,255,.08);
    }

    /* Footer */
    footer{
      padding:22px 0 34px;
      background: linear-gradient(180deg, rgba(246,247,251,.0), rgba(246,247,251,.75) 35%, rgba(246,247,251,1) 100%);
      border-top:1px solid rgba(20,22,26,.08);
    }
    .footer-card{
      border-radius:var(--radius2);
      border:1px solid rgba(20,22,26,.10);
      background: rgba(255,255,255,.75);
      box-shadow: 0 14px 44px rgba(16,24,40,.06);
      padding:16px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .footer-left{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .footer-left .row1{
      display:flex; align-items:center; gap:12px; flex-wrap:wrap;
    }
    .footer-left .row1 img{
      width:38px; height:38px; object-fit:contain; border-radius:14px;
      background: rgba(255,255,255,.65);
      border:1px solid rgba(20,22,26,.10);
      padding:6px;
    }
    .footer-left .row1 strong{font-size:14px; letter-spacing:-.2px}
    .footer-left .row1 span{color:var(--muted); font-size:13px; font-weight:800}
    .footer-left p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.75;
      max-width:70ch;
    }
    .footer-right{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .links{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }
    .links a{
      text-decoration:none;
      font-size:12.5px;
      font-weight:950;
      padding:10px 12px;
      border-radius:999px;
      background: rgba(20,22,26,.05);
      border:1px solid rgba(20,22,26,.08);
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
      color:rgba(20,22,26,.78);
    }
    .links a:hover{
      transform: translateY(-2px);
      border-color: rgba(27,108,255,.25);
      background: rgba(27,108,255,.08);
    }
    .fineprint{
      margin-top:14px;
      display:flex;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      color:var(--muted2);
      font-size:12px;
      font-weight:800;
    }
    .fineprint a{
      text-decoration:none;
      color:rgba(27,108,255,.95);
      font-weight:950;
    }

    /* Floating */
    .floatbar{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:70;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .float-btn{
      width:46px;
      height:46px;
      border-radius:18px;
      border:1px solid rgba(20,22,26,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 14px 40px rgba(16,24,40,.12);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .float-btn:hover{
      transform: translateY(-3px);
      box-shadow: 0 20px 60px rgba(16,24,40,.14);
      border-color: rgba(27,108,255,.25);
    }
    .float-btn svg{
      width:20px; height:20px; stroke:rgba(20,22,26,.8); fill:none; stroke-width:2;
    }
    .float-tip{
      background: rgba(20,22,26,.92);
      color:#fff;
      padding:10px 12px;
      border-radius:16px;
      font-size:12px;
      font-weight:900;
      box-shadow: 0 18px 60px rgba(0,0,0,.22);
      border:1px solid rgba(255,255,255,.10);
      max-width: 220px;
      display:none;
    }
    .float-wrap{
      display:flex; flex-direction:row; align-items:center; gap:10px;
    }
    .float-wrap:hover .float-tip{display:block; animation:tipIn .18s ease}
    @keyframes tipIn{
      from{opacity:0; transform: translateY(6px)}
      to{opacity:1; transform: translateY(0)}
    }

    /* Scroll reveal */
    .reveal{
      opacity:0;
      transform: translateY(12px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.show{
      opacity:1;
      transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 980px){
      .nav{display:none}
      .mobile-toggle{display:block}
      .mobile-drawer{display:block}
      .hero-grid{grid-template-columns:1fr; }
      h1{font-size:28px}
      .grid3{grid-template-columns:1fr; }
      .grid2{grid-template-columns:1fr}
      .faq-grid{grid-template-columns:1fr}
      .review-grid{grid-template-columns:1fr}
      .case-grid{grid-template-columns:1fr}
      .media-grid{grid-template-columns:1fr}
      .article-grid{grid-template-columns:1fr}
      .token-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .header-actions{min-width:auto}
      .mobile-drawer{display:none}
      .mobile-drawer.show{display:block}
      .metric-grid{grid-template-columns:1fr 1fr}
      form .row{grid-template-columns:1fr}
      .case-medias{grid-template-columns:1fr}
    }
    @media (max-width: 520px){
      .brand{min-width:auto}
      .brand-title span{display:none}
      .metric-grid{grid-template-columns:1fr}
      .hero-card{padding:18px}
      section{padding:34px 0}
      h1{font-size:26px}
      .section-head{flex-direction:column; align-items:flex-start}
      .chip-row{justify-content:flex-start}
      .comparison-head{flex-direction:column; align-items:flex-start}
      .score{text-align:left}
      .comparison-head .comparison-meta{width:100%}
      thead th:first-child{width:40%}
    }