:root{
      --bg0:#ffffff;
      --bg1:#fff3c9;
      --bg2:#fff7e3;
      --bg3:#f6f7fb;
      --ink:#1b1f2a;
      --muted:#5a616f;
      --muted2:#7a8294;
      --line:rgba(27,31,42,.10);
      --line2:rgba(27,31,42,.14);
      --shadow: 0 18px 40px rgba(18, 20, 30, .10);
      --shadow2: 0 10px 26px rgba(18, 20, 30, .12);
      --r16:16px;
      --r20:20px;
      --r24:24px;
      --pad:20px;

      --brand:#ffb300;
      --brand2:#ff8a00;
      --brand3:#ffcc4d;

      --primary:#ffb300;
      --primaryInk:#231a00;
      --secondary:#0f2a4a;
      --secondaryInk:#ffffff;
      --ghostInk:#1b1f2a;

      --focus: rgba(255, 179, 0, .35);
      --good:#16a34a;
      --mid:#f59e0b;
      --bad:#ef4444;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    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;
      background:
        radial-gradient(900px 480px at 18% -10%, rgba(255,179,0,.22), transparent 55%),
        radial-gradient(780px 420px at 85% 10%, rgba(255,138,0,.14), transparent 54%),
        linear-gradient(180deg, #ffffff 0%, #fffdf6 35%, #f6f7fb 100%);
      color:var(--ink);
    }

    .skip-link{
      position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip-link:focus{
      left:16px; top:14px; width:auto; height:auto; padding:10px 12px;
      background:#fff; border:1px solid var(--line2); border-radius:12px; z-index:9999;
      box-shadow:var(--shadow2);
    }

    .container{
      width:100%;
      max-width:1120px;
      margin:0 auto;
      padding:0 16px;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background: rgba(255,255,255,.72);
      border-bottom: 1px solid rgba(27,31,42,.08);
      backdrop-filter: blur(10px);
    }
    .nav-container{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:220px;
    }
    .brand-link{display:flex; align-items:center; gap:12px; text-decoration:none}
    .ai-page-logo{
      width:44px;
      height:auto;
      border-radius:12px;
      background: linear-gradient(135deg, rgba(255,179,0,.18), rgba(255,138,0,.10));
      padding:6px;
      border:1px solid rgba(27,31,42,.08);
      box-shadow: 0 10px 22px rgba(255,179,0,.10);
    }
    .brand-text{display:flex; flex-direction:column; line-height:1.1}
    .brand-name{font-weight:850; letter-spacing:.2px}
    .brand-sub{font-size:12px; color:var(--muted2); margin-top:4px}

    .desktop-nav{
      display:flex;
      gap:14px;
      align-items:center;
      flex-wrap:wrap;
      justify-content:center;
    }
    .nav-link{
      text-decoration:none;
      color:rgba(27,31,42,.86);
      font-size:14px;
      padding:10px 10px;
      border-radius:12px;
      transition: background .2s ease, transform .2s ease, color .2s ease;
      position:relative;
    }
    .nav-link:hover{
      background: rgba(255,179,0,.14);
      color: var(--ink);
      transform: translateY(-1px);
    }

    .nav-actions{display:flex; align-items:center; gap:10px}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      border-radius:14px;
      padding:11px 14px;
      border:1px solid transparent;
      text-decoration:none;
      cursor:pointer;
      font-weight:760;
      letter-spacing:.1px;
      transition: transform .15s ease, box-shadow .15s ease, background .2s ease, border-color .2s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:focus{
      outline:none;
      box-shadow: 0 0 0 4px var(--focus);
    }
    .btn-lg{padding:14px 18px; border-radius:16px; font-size:15px}
    .btn-primary{
      background: linear-gradient(135deg, var(--primary), var(--brand2));
      color: var(--primaryInk);
      box-shadow: 0 14px 30px rgba(255,179,0,.22);
      border-color: rgba(27,31,42,.06);
    }
    .btn-primary:hover{transform: translateY(-1px); box-shadow: 0 18px 36px rgba(255,179,0,.30)}
    .btn-secondary{
      background: linear-gradient(135deg, #103a68, #0f2a4a);
      color: var(--secondaryInk);
      border-color: rgba(255,255,255,.10);
      box-shadow: 0 14px 26px rgba(15,42,74,.18);
    }
    .btn-secondary:hover{transform: translateY(-1px); box-shadow: 0 18px 34px rgba(15,42,74,.22)}
    .btn-ghost{
      background: rgba(255,255,255,.78);
      color: var(--ghostInk);
      border-color: rgba(27,31,42,.12);
      box-shadow: 0 10px 24px rgba(18,20,30,.06);
    }
    .btn-ghost:hover{transform: translateY(-1px); box-shadow: 0 14px 30px rgba(18,20,30,.10)}
    .btn-block{width:100%}

    .nav-toggle{
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(27,31,42,.12);
      background: rgba(255,255,255,.8);
      display:none;
      align-items:center;
      justify-content:center;
      gap:4px;
      cursor:pointer;
      box-shadow: 0 10px 22px rgba(18,20,30,.06);
    }
    .burger{
      width:18px; height:2px;
      background: rgba(27,31,42,.86);
      border-radius:2px;
      display:block;
    }

    .mobile-menu{
      position:fixed;
      inset:0;
      background: rgba(8,10,14,.38);
      z-index:1200;
      padding-top:74px;
    }
    .mobile-menu-inner{
      background: linear-gradient(180deg, #ffffff 0%, #fffdf6 60%, #f6f7fb 100%);
      border:1px solid rgba(255,179,0,.18);
      border-radius:22px;
      box-shadow: var(--shadow2);
      padding:14px;
      max-width:520px;
      margin:0 auto;
    }
    .mobile-menu-top{
      display:flex; align-items:center; justify-content:space-between;
      padding:6px 4px 10px 4px;
    }
    .mobile-menu-title{font-weight:860}
    .mobile-close{
      width:42px; height:42px;
      border-radius:14px;
      border:1px solid rgba(27,31,42,.12);
      background: rgba(255,255,255,.8);
      cursor:pointer;
      font-size:22px;
      line-height:1;
      color: rgba(27,31,42,.86);
    }
    .mobile-links{
      display:flex;
      flex-direction:column;
      gap:8px;
      padding:6px 0;
    }
    .mobile-link{
      text-decoration:none;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(27,31,42,.10);
      background: rgba(255,255,255,.72);
      color: rgba(27,31,42,.92);
      font-weight:720;
    }
    .mobile-link:hover{border-color: rgba(255,179,0,.40); background: rgba(255,179,0,.10)}
    .mobile-actions{
      display:flex;
      flex-direction:column;
      gap:10px;
      padding-top:10px;
    }

    main{padding-bottom:18px}

    .hero{
      position:relative;
      overflow:hidden;
      padding:44px 0 16px 0;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:22px;
      align-items:stretch;
    }
    .hero-copy{
      padding:18px 0 22px 0;
    }
    .hero-chip{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 14px;
      border-radius:999px;
      border:1px solid rgba(255,179,0,.22);
      background: rgba(255,179,0,.12);
      color: rgba(27,31,42,.92);
      font-weight:760;
      font-size:13px;
      box-shadow: 0 10px 24px rgba(255,179,0,.12);
      animation: floaty 6s ease-in-out infinite;
    }
    @keyframes floaty{
      0%,100%{transform: translateY(0)}
      50%{transform: translateY(-4px)}
    }
    .hero-title{
      margin:16px 0 0 0;
      font-size:40px;
      line-height:1.15;
      letter-spacing:-.6px;
      font-weight:920;
    }
    .hero-desc{
      margin:14px 0 18px 0;
      color: rgba(27,31,42,.74);
      font-size:16px;
      line-height:1.7;
      max-width:620px;
    }
    .hero-cta{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
      margin-bottom:20px;
    }
    .hero-metrics{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:stretch;
    }
    .metric{
      flex:1 1 180px;
      min-width:180px;
      background: rgba(255,255,255,.76);
      border:1px solid rgba(27,31,42,.10);
      border-radius:18px;
      padding:12px 14px;
      box-shadow: 0 12px 28px rgba(18,20,30,.06);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .metric:hover{transform: translateY(-2px); box-shadow: 0 18px 36px rgba(18,20,30,.10)}
    .metric-val{font-weight:900}
    .metric-sub{color:var(--muted2); font-size:13px; margin-top:6px}

    .hero-visual{
      position:relative;
      padding:10px 0;
      display:flex;
      align-items:stretch;
      justify-content:flex-end;
    }
    .visual-card{
      width:100%;
      background:
        linear-gradient(180deg, rgba(255,179,0,.18) 0%, rgba(255,179,0,.06) 46%, rgba(255,255,255,.70) 100%);
      border:1px solid rgba(255,179,0,.22);
      border-radius:24px;
      padding:18px 18px 16px 18px;
      box-shadow: var(--shadow2);
      overflow:hidden;
      position:relative;
      align-self:stretch;
      transform: translateZ(0);
    }
    .visual-card:before{
      content:"";
      position:absolute;
      top:-120px; right:-120px;
      width:240px; height:240px;
      background: radial-gradient(circle at center, rgba(255,179,0,.35), transparent 60%);
      filter: blur(2px);
      pointer-events:none;
    }
    .visual-title{font-weight:920; font-size:16px}
    .visual-sub{color: rgba(27,31,42,.72); margin-top:8px; line-height:1.6}
    .visual-list{margin-top:14px; display:flex; flex-direction:column; gap:10px}
    .visual-item{
      display:flex; gap:10px; align-items:flex-start;
      color: rgba(27,31,42,.86);
      font-weight:680;
      font-size:13px;
      line-height:1.4;
    }
    .dot{width:10px; height:10px; border-radius:50%; margin-top:4px; flex:0 0 auto}
    .dot-1{background: rgba(255,179,0,.95)}
    .dot-2{background: rgba(15,42,74,.85)}
    .dot-3{background: rgba(255,138,0,.92)}
    .dot-4{background: rgba(34,197,94,.85)}
    .visual-footer{
      margin-top:16px;
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
      color: rgba(27,31,42,.74);
      font-weight:740;
      font-size:13px;
      padding-top:12px;
      border-top:1px dashed rgba(27,31,42,.16);
      position:relative;
      z-index:1;
    }

    .floating-badges{
      position:absolute;
      right:14px;
      bottom:-10px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      justify-content:flex-end;
      width:min(330px, 45%);
      pointer-events:none;
    }
    .badge{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(255,179,0,.22);
      background: rgba(255,255,255,.70);
      box-shadow: 0 14px 28px rgba(18,20,30,.06);
      color: rgba(27,31,42,.86);
      font-weight:820;
      font-size:12px;
      transform: translateY(0);
      animation: badgeFloat 7s ease-in-out infinite;
    }
    .badge-a{animation-delay:0s}
    .badge-b{animation-delay:.8s}
    .badge-c{animation-delay:1.6s}
    .badge-d{animation-delay:2.2s}
    @keyframes badgeFloat{
      0%,100%{transform: translateY(0)}
      50%{transform: translateY(-6px)}
    }

    .hero-wave{
      height:36px;
      background: linear-gradient(180deg, rgba(255,179,0,.20), rgba(255,179,0,0));
      margin-top:18px;
      clip-path: polygon(0 0,100% 0,100% 100%,0 60%);
      opacity:.9;
    }

    .section{padding:56px 0}
    .section-soft{
      background: linear-gradient(180deg, rgba(255,179,0,.08), rgba(255,179,0,0) 55%);
      border-top:1px solid rgba(27,31,42,.06);
      border-bottom:1px solid rgba(27,31,42,.06);
    }

    .section-head{
      margin-bottom:22px;
    }
    .kicker{
      display:inline-flex;
      align-items:center;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(255,179,0,.22);
      background: rgba(255,179,0,.10);
      font-weight:860;
      font-size:12px;
      color: rgba(27,31,42,.84);
      letter-spacing:.2px;
    }
    .h2{
      margin:12px 0 0 0;
      font-size:30px;
      line-height:1.25;
      letter-spacing:-.4px;
      font-weight:930;
    }
    .h3{
      margin:0;
      font-size:18px;
      line-height:1.4;
      letter-spacing:-.2px;
      font-weight:900;
    }
    .muted{color: var(--muted)}
    .small{font-size:14px}

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

    .panel{
      background: rgba(255,255,255,.74);
      border:1px solid rgba(27,31,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow: 0 16px 34px rgba(18,20,30,.06);
      position:relative;
      overflow:hidden;
    }
    .panel-highlight{
      border-color: rgba(255,179,0,.22);
      background: linear-gradient(180deg, rgba(255,179,0,.12), rgba(255,255,255,.74) 60%);
    }
    .panel-token{
      background: linear-gradient(180deg, rgba(255,179,0,.12), rgba(255,255,255,.74) 70%);
      border-color: rgba(255,179,0,.20);
    }
    .panel-form{padding:18px}
    .panel-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:16px;
    }
    .divider{height:1px; background: rgba(27,31,42,.10); margin:14px 0}

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

    .checklist{list-style:none; padding:0; margin:12px 0 0 0; display:flex; flex-direction:column; gap:10px}
    .checklist li{display:flex; gap:10px; align-items:flex-start; color: rgba(27,31,42,.86); font-weight:720; font-size:14px; line-height:1.5}
    .check-icon{
      width:22px; height:22px;
      border-radius:8px;
      display:inline-flex; align-items:center; justify-content:center;
      background: rgba(255,179,0,.18);
      border:1px solid rgba(255,179,0,.22);
      color: rgba(27,31,42,.86);
      flex:0 0 auto;
      margin-top:1px;
      font-weight:950;
    }

    .timeline{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .t-item{display:flex; gap:12px; align-items:flex-start}
    .t-dot{
      width:14px; height:14px; border-radius:50%;
      background: linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow: 0 10px 20px rgba(255,179,0,.24);
      margin-top:6px;
      flex:0 0 auto;
    }
    .t-title{font-weight:910}
    .t-desc{color: rgba(27,31,42,.74); font-size:14px; line-height:1.55; margin-top:6px}

    .grid-3 .card-hover{}
    .card{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(27,31,42,.10);
      border-radius:22px;
      padding:16px;
      box-shadow: 0 16px 34px rgba(18,20,30,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease;
      min-height:178px;
    }
    .card-hover:hover{
      transform: translateY(-4px);
      border-color: rgba(255,179,0,.26);
      box-shadow: 0 24px 54px rgba(18,20,30,.10);
    }
    .card-icon{
      width:44px; height:44px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,179,0,.14);
      border:1px solid rgba(255,179,0,.20);
      font-size:18px;
      margin-bottom:10px;
    }
    .small.muted{margin-top:6px}

    .tags{display:flex; flex-wrap:wrap; gap:8px; margin-top:12px}
    .tag{
      display:inline-flex;
      align-items:center;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(27,31,42,.12);
      background: rgba(255,255,255,.66);
      color: rgba(27,31,42,.86);
      font-weight:760;
      font-size:12px;
    }
    .tag-cloud{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:14px;
      padding:10px;
      border-radius:18px;
      border:1px dashed rgba(27,31,42,.14);
      background: rgba(255,255,255,.52);
    }
    .tag-cloud-item{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(27,31,42,.10);
      background: rgba(255,255,255,.72);
      font-weight:820;
      font-size:12px;
      color: rgba(27,31,42,.86);
    }

    .step{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(27,31,42,.10);
      border-radius:22px;
      padding:16px;
      box-shadow: 0 16px 34px rgba(18,20,30,.06);
      transition: transform .18s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .step:hover{transform: translateY(-3px); border-color: rgba(255,179,0,.26); box-shadow: 0 24px 54px rgba(18,20,30,.10)}
    .step-num{
      width:46px; height:46px; border-radius:18px;
      background: linear-gradient(135deg, rgba(255,179,0,.18), rgba(255,138,0,.10));
      border:1px solid rgba(255,179,0,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      margin-bottom:12px;
      box-shadow: 0 14px 26px rgba(255,179,0,.10);
    }
    .step-title{font-weight:930; margin-bottom:8px}
    .step-desc{color: rgba(27,31,42,.72); font-size:14px; line-height:1.6}

    .split-callout{
      margin-top:18px;
      padding:16px;
      border-radius:24px;
      border:1px solid rgba(255,179,0,.22);
      background:
        linear-gradient(135deg, rgba(255,179,0,.14), rgba(255,179,0,.04) 55%, rgba(255,255,255,.70));
      box-shadow: 0 18px 40px rgba(255,179,0,.10);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    .split-right{display:flex; gap:12px; flex-wrap:wrap}

    .mini-list{margin-top:12px; display:flex; flex-direction:column; gap:10px}
    .mini-row{display:flex; gap:12px; align-items:flex-start; font-weight:730; color: rgba(27,31,42,.86); line-height:1.6}
    .mini-bullet{
      width:10px; height:10px; border-radius:50%;
      background: rgba(255,179,0,.95);
      margin-top:7px;
      box-shadow: 0 10px 20px rgba(255,179,0,.25);
      flex:0 0 auto;
    }

    .pill-grid{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
    .pill{
      padding:10px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(27,31,42,.12);
      color: rgba(27,31,42,.88);
      font-weight:820;
      font-size:12px;
    }

    .grid-3 .card-lite, .grid-3 .review-card, .grid-3 .wiki-card{min-height:0}
    .card-lite{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(27,31,42,.10);
      border-radius:22px;
      padding:16px;
      box-shadow: 0 16px 34px rgba(18,20,30,.06);
      transition: transform .18s ease, box-shadow .18s ease;
      min-height:148px;
    }
    .card-lite:hover{transform: translateY(-3px); box-shadow: 0 24px 54px rgba(18,20,30,.10)}
    .card-lite-top{display:flex; align-items:center; gap:12px; margin-bottom:10px}
    .card-lite-icon{
      width:44px; height:44px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,179,0,.14);
      border:1px solid rgba(255,179,0,.20);
      font-size:18px;
    }
    .card-lite-title{font-weight:930}
    .card-lite-desc{color: rgba(27,31,42,.72); font-size:14px; line-height:1.65}

    .logos-row{
      margin-top:16px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      justify-content:flex-start;
    }
    .logo-pill{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(27,31,42,.12);
      background: rgba(255,255,255,.68);
      color: rgba(27,31,42,.86);
      font-weight:830;
      font-size:12px;
      box-shadow: 0 10px 22px rgba(18,20,30,.05);
    }

    .compare-top{
      display:flex; gap:16px; align-items:stretch; justify-content:space-between;
      flex-wrap:wrap;
      margin-bottom:14px;
    }
    .score-card{
      flex:1 1 340px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(255,179,0,.22);
      border-radius:24px;
      padding:18px;
      box-shadow: 0 20px 48px rgba(255,179,0,.10);
    }
    .score-row{display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap}
    .score-star{font-size:18px; letter-spacing:2px; color: rgba(255,179,0,.95)}
    .score-num{font-weight:950; font-size:18px}
    .score-highlight{color: rgba(255,138,0,.98)}
    .score-sub{margin-top:10px; color: rgba(27,31,42,.72); line-height:1.6}

    .compare-actions{flex:0 0 auto; display:flex; gap:12px; align-items:center; justify-content:flex-end; flex-wrap:wrap}

    .compare-table-wrap{
      background: rgba(255,255,255,.74);
      border:1px solid rgba(27,31,42,.10);
      border-radius:24px;
      padding:14px;
      box-shadow: 0 18px 40px rgba(18,20,30,.06);
    }
    .table-scroll{
      overflow:auto;
      -webkit-overflow-scrolling: touch;
      border-radius:18px;
    }
    .compare-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:720px;
      font-size:14px;
    }
    .compare-table th, .compare-table td{
      padding:14px 12px;
      border-bottom:1px solid rgba(27,31,42,.08);
      vertical-align:top;
    }
    .compare-table th{
      text-align:left;
      color: rgba(27,31,42,.88);
      font-weight:920;
      background: rgba(255,179,0,.10);
      position:sticky;
      top:0;
      z-index:1;
    }
    .compare-table td{color: rgba(27,31,42,.80); line-height:1.65}
    .status{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:56px;
      padding:8px 10px;
      border-radius:14px;
      font-weight:950;
      font-size:12px;
      margin-right:8px;
      border:1px solid rgba(27,31,42,.10);
      background: rgba(255,255,255,.65);
    }
    .status.good{color: var(--good); border-color: rgba(22,163,74,.20); background: rgba(22,163,74,.08)}
    .status.mid{color: var(--mid); border-color: rgba(245,158,11,.20); background: rgba(245,158,11,.10)}

    .panel-token .token-cards{
      display:flex;
      flex-direction:column;
      gap:10px;
      margin-top:12px;
    }
    .token-card{
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(27,31,42,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 26px rgba(18,20,30,.05);
      transition: transform .15s ease, box-shadow .15s ease, border-color .2s ease;
    }
    .token-card:hover{transform: translateY(-2px); border-color: rgba(255,179,0,.22); box-shadow: 0 18px 36px rgba(18,20,30,.09)}
    .token-title{font-weight:940}
    .token-desc{margin-top:6px; color: rgba(27,31,42,.72); line-height:1.6; font-size:14px}

    .token-cards .token-card:nth-child(1){border-color: rgba(255,179,0,.18)}
    .token-cards .token-card:nth-child(2){border-color: rgba(15,42,74,.14)}
    .token-cards .token-card:nth-child(3){border-color: rgba(34,197,94,.14)}

    .form{
      margin-top:10px;
    }
    .form-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
      margin-bottom:12px;
    }
    label{
      display:block;
      font-weight:820;
      margin-bottom:8px;
      color: rgba(27,31,42,.88);
      font-size:13px;
    }
    input, select, textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(27,31,42,.14);
      background: rgba(255,255,255,.86);
      padding:12px 12px;
      color: var(--ink);
      font-size:14px;
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease;
    }
    input:focus, select:focus, textarea:focus{
      border-color: rgba(255,179,0,.55);
      box-shadow: 0 0 0 4px rgba(255,179,0,.24);
    }
    textarea{resize:vertical; min-height:120px}
    .form-foot{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; margin-top:12px}
    .form-hint{flex:1 1 auto}
    .contact-strip{
      margin-top:14px;
      padding-top:14px;
      border-top:1px solid rgba(27,31,42,.10);
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .contact-item{padding:10px 10px; border-radius:18px; border:1px solid rgba(27,31,42,.08); background: rgba(255,255,255,.62)}
    .contact-label{color: rgba(27,31,42,.64); font-weight:820; font-size:12px}
    .contact-value{margin-top:6px; font-weight:900}
    .inline-link{
      color: rgba(15,42,74,.96);
      text-decoration:none;
      border-bottom:1px solid rgba(15,42,74,.22);
    }
    .inline-link:hover{color: rgba(255,138,0,.98); border-bottom-color: rgba(255,138,0,.45)}

    .qr-row{
      margin-top:14px;
      display:grid;
      grid-template-columns: 180px 1fr;
      gap:12px;
      align-items:stretch;
    }
    .qr-card{
      border:1px solid rgba(27,31,42,.10);
      background: rgba(255,255,255,.70);
      border-radius:22px;
      padding:14px;
      box-shadow: 0 16px 34px rgba(18,20,30,.06);
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:flex-start;
      gap:10px;
    }
    .qr-title{font-weight:930}
    .qr-img{width:140px; height:auto; border-radius:16px; border:1px solid rgba(27,31,42,.10); background:#fff}
    .qr-sub{ text-align:center }
    .qr-card-alt{background: linear-gradient(180deg, rgba(255,179,0,.12), rgba(255,255,255,.74)); border-color: rgba(255,179,0,.20)}

    .case-card{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(27,31,42,.10);
      border-radius:24px;
      padding:16px;
      box-shadow: 0 16px 34px rgba(18,20,30,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease;
      min-height:190px;
      display:flex;
      flex-direction:column;
    }
    .case-card:hover{
      transform: translateY(-4px);
      border-color: rgba(255,179,0,.26);
      box-shadow: 0 24px 54px rgba(18,20,30,.10);
    }
    .case-top{
      display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap;
      margin-bottom:10px;
    }
    .case-type{font-weight:920}
    .case-badge{
      padding:8px 10px; border-radius:999px;
      border:1px solid rgba(255,179,0,.22);
      background: rgba(255,179,0,.12);
      font-weight:900;
      font-size:12px;
    }
    .case-badge.badge-2{border-color: rgba(15,42,74,.20); background: rgba(15,42,74,.08); color: rgba(15,42,74,.96)}
    .case-badge.badge-3{border-color: rgba(34,197,94,.18); background: rgba(34,197,94,.10); color: rgba(21,128,61,.96)}
    .case-title{font-weight:950; font-size:18px; letter-spacing:-.2px; margin-top:4px}
    .case-desc{margin-top:10px; color: rgba(27,31,42,.72); line-height:1.65}
    .case-meta{margin-top:auto; display:flex; flex-wrap:wrap; gap:8px; padding-top:12px}
    .meta-pill{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(27,31,42,.10);
      background: rgba(255,255,255,.62);
      font-weight:820;
      font-size:12px;
      color: rgba(27,31,42,.84);
    }

    .cases-strip{
      margin-top:16px;
      display:flex;
      gap:12px;
      align-items:stretch;
      flex-wrap:wrap;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(27,31,42,.10);
      border-radius:24px;
      padding:14px;
      box-shadow: 0 18px 40px rgba(18,20,30,.06);
    }
    .strip-item{
      flex:1 1 220px;
      border-radius:18px;
      border:1px dashed rgba(27,31,42,.16);
      padding:12px 12px;
      background: rgba(255,255,255,.55);
    }
    .strip-k{color: rgba(27,31,42,.62); font-weight:860; font-size:12px}
    .strip-v{margin-top:6px; font-weight:930; line-height:1.5}

    .panel-media .thumb-grid{
      margin-top:14px;
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .thumb-grid{
      width:100%;
    }
    .thumb{
      border-radius:20px;
      border:1px solid rgba(27,31,42,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,179,0,.08));
      padding:14px;
      box-shadow: 0 16px 34px rgba(18,20,30,.06);
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease;
      position:relative;
      overflow:hidden;
      min-height:78px;
    }
    .thumb:hover{
      transform: translateY(-3px);
      box-shadow: 0 24px 54px rgba(18,20,30,.10);
      border-color: rgba(255,179,0,.26);
    }
    .thumb-label{font-weight:940}
    .thumb-meta{margin-top:6px}
    .thumb-bar{
      position:absolute;
      inset:auto 0 0 0;
      height:4px;
      background: linear-gradient(90deg, rgba(255,179,0,.0), rgba(255,179,0,.70), rgba(255,138,0,.0));
      transform: translateX(-30%);
      opacity:.85;
    }
    .thumb:focus{outline:none; box-shadow: 0 0 0 4px var(--focus)}
    .panel-media .media-note{margin-top:12px}

    .radio-grid{
      margin-top:12px;
      display:grid;
      grid-template-columns:1fr;
      gap:10px;
    }
    .r-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
      border-radius:20px;
      border:1px solid rgba(27,31,42,.10);
      background: rgba(255,255,255,.68);
      padding:12px;
      cursor:pointer;
      transition: border-color .2s ease, transform .18s ease;
    }
    .r-item:hover{transform: translateY(-2px); border-color: rgba(255,179,0,.24)}
    .r-item input{margin-top:4px}
    .r-title{font-weight:940}
    .r-desc{display:block; margin-top:6px; font-weight:700}

    .help-grid{
      display:grid;
      grid-template-columns:repeat(4, 1fr);
      gap:14px;
    }
    .help-card{
      border-radius:24px;
      border:1px solid rgba(27,31,42,.10);
      background: rgba(255,255,255,.78);
      padding:16px;
      box-shadow: 0 16px 34px rgba(18,20,30,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease;
      min-height:150px;
      display:flex; flex-direction:column;
    }
    .help-card:hover{transform: translateY(-4px); border-color: rgba(255,179,0,.26); box-shadow: 0 24px 54px rgba(18,20,30,.10)}
    .help-title{font-weight:950}
    .help-desc{margin-top:10px; line-height:1.65}
    .help-card a{margin-top:auto}

    .faq-wrap{
      background: rgba(255,255,255,.70);
      border:1px solid rgba(27,31,42,.10);
      border-radius:24px;
      padding:12px;
      box-shadow: 0 18px 40px rgba(18,20,30,.06);
    }
    .faq-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
    }
    .faq-item{
      border-radius:20px;
      border:1px solid rgba(27,31,42,.10);
      background: rgba(255,255,255,.72);
      overflow:hidden;
    }
    .faq-q{
      width:100%;
      text-align:left;
      border:0;
      background: transparent;
      padding:14px 14px;
      font-weight:900;
      color: rgba(27,31,42,.92);
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      font-size:14px;
    }
    .faq-q:focus{outline:none; box-shadow: inset 0 0 0 3px rgba(255,179,0,.35)}
    .faq-icon{
      width:28px; height:28px;
      border-radius:12px;
      border:1px solid rgba(27,31,42,.12);
      background: rgba(255,255,255,.66);
      display:flex; align-items:center; justify-content:center;
      font-size:18px;
      color: rgba(27,31,42,.82);
      flex:0 0 auto;
    }
    .faq-a{
      padding:0 14px 14px 14px;
      color: rgba(27,31,42,.74);
      line-height:1.7;
      font-weight:720;
      font-size:14px;
    }
    .faq-content{padding-top:2px}

    .faq-bottom{
      margin-top:14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      padding:14px;
      border-radius:24px;
      border:1px solid rgba(255,179,0,.22);
      background: linear-gradient(135deg, rgba(255,179,0,.14), rgba(255,179,0,.04) 55%, rgba(255,255,255,.70));
      box-shadow: 0 18px 40px rgba(255,179,0,.10);
    }
    .faq-bottom-title{font-weight:950; font-size:16px}
    .faq-bottom-right{display:flex; gap:12px; flex-wrap:wrap}

    .wiki-card{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(27,31,42,.10);
      border-radius:24px;
      padding:16px;
      box-shadow: 0 16px 34px rgba(18,20,30,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease;
      min-height:170px;
      display:flex; flex-direction:column;
    }
    .wiki-card:hover{transform: translateY(-4px); border-color: rgba(255,179,0,.26); box-shadow: 0 24px 54px rgba(18,20,30,.10)}
    .wiki-top{display:flex; align-items:center; gap:12px}
    .wiki-icon{
      width:44px; height:44px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,179,0,.14);
      border:1px solid rgba(255,179,0,.20);
      font-size:18px;
    }
    .wiki-title{font-weight:950}
    .wiki-desc{margin-top:10px; line-height:1.7}
    .wiki-card a{margin-top:auto}

    .articles{
      display:grid;
      grid-template-columns: 1fr 360px;
      gap:14px;
      align-items:start;
    }
    .article-list{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .article-item{
      text-decoration:none;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(27,31,42,.10);
      border-radius:22px;
      padding:14px 14px;
      box-shadow: 0 16px 34px rgba(18,20,30,.06);
      transition: transform .18s ease, border-color .2s ease, box-shadow .18s ease;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
    }
    .article-item:hover{
      transform: translateY(-4px);
      border-color: rgba(255,179,0,.26);
      box-shadow: 0 24px 54px rgba(18,20,30,.10);
    }
    .article-title{font-weight:950}
    .aside-rail{display:flex; flex-direction:column; gap:14px}
    .aside-card{
      border-radius:24px;
      border:1px solid rgba(27,31,42,.10);
      background: rgba(255,255,255,.78);
      padding:16px;
      box-shadow: 0 16px 34px rgba(18,20,30,.06);
    }
    .aside-title{font-weight:950; margin-bottom:10px}
    .aside-desc{line-height:1.7}
    .aside-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:12px}
    .aside-card-2{background: linear-gradient(180deg, rgba(255,179,0,.12), rgba(255,255,255,.76)); border-color: rgba(255,179,0,.20)}
    .links-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
      margin-top:8px;
    }
    .links-grid a{
      text-decoration:none;
      border:1px solid rgba(27,31,42,.10);
      background: rgba(255,255,255,.66);
      padding:10px 10px;
      border-radius:16px;
      color: rgba(27,31,42,.88);
      font-weight:820;
      font-size:12px;
      transition: transform .18s ease, border-color .2s ease, background .2s ease;
    }
    .links-grid a:hover{
      transform: translateY(-2px);
      border-color: rgba(255,179,0,.26);
      background: rgba(255,179,0,.10);
    }

    .review-card{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(27,31,42,.10);
      border-radius:24px;
      padding:16px;
      box-shadow: 0 16px 34px rgba(18,20,30,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease;
      min-height:200px;
      display:flex; flex-direction:column;
    }
    .review-card:hover{transform: translateY(-4px); border-color: rgba(255,179,0,.26); box-shadow: 0 24px 54px rgba(18,20,30,.10)}
    .review-top{display:flex; gap:12px; align-items:center}
    .avatar{
      width:44px; height:44px;
      border-radius:18px;
      border:1px solid rgba(255,179,0,.22);
      background: rgba(255,179,0,.12);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color: rgba(27,31,42,.88);
    }
    .review-name{font-weight:950}
    .review-role{margin-top:4px}
    .review-stars{margin-top:10px; color: rgba(255,179,0,.95); letter-spacing:2px}
    .review-text{
      margin-top:12px;
      color: rgba(27,31,42,.74);
      line-height:1.7;
      font-weight:720;
    }

    .cta-band{
      border-radius:26px;
      border:1px solid rgba(255,179,0,.22);
      background:
        radial-gradient(900px 260px at 10% 0%, rgba(255,179,0,.18), transparent 60%),
        linear-gradient(135deg, rgba(255,179,0,.14), rgba(255,179,0,.04) 50%, rgba(255,255,255,.70));
      box-shadow: 0 22px 56px rgba(255,179,0,.12);
      padding:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
    }
    .cta-title{font-weight:980; font-size:18px}
    .cta-sub{margin-top:8px; line-height:1.6}
    .cta-right{display:flex; gap:12px; flex-wrap:wrap}

    .site-footer{
      background: #0f1626;
      color: rgba(255,255,255,.92);
      border-top:1px solid rgba(255,179,0,.18);
      padding:26px 0;
    }
    .site-footer a{color: rgba(255,255,255,.92)}
    .site-footer a:hover{color:#ffd37a}
    .footer-grid{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .footer-col{
      background: rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.08);
      border-radius:24px;
      padding:16px;
    }
    .footer-col-center{background: rgba(255,179,0,.06); border-color: rgba(255,179,0,.16)}
    .footer-logo{width:44px; height:44px; border-radius:18px; background: rgba(255,179,0,.14); border:1px solid rgba(255,179,0,.24); display:flex; align-items:center; justify-content:center; font-weight:950}
    .footer-brand{display:flex; gap:12px; align-items:center}
    .footer-title{font-weight:980}
    .footer-sub{margin-top:6px}
    .footer-k{font-weight:930; margin-bottom:10px}
    .footer-links{display:flex; flex-direction:column; gap:10px}
    .footer-link{
      text-decoration:none;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.03);
      font-weight:820;
      color: rgba(255,255,255,.9);
      transition: transform .18s ease, border-color .2s ease, background .2s ease;
    }
    .footer-link:hover{transform: translateY(-2px); border-color: rgba(255,179,0,.22); background: rgba(255,179,0,.08)}
    .footer-text{display:flex; flex-direction:column; gap:10px}
    .footer-row{line-height:1.6}
    .footer-label{color: rgba(255,255,255,.66); font-weight:820}
    .footer-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:12px}
    .btn.btn-secondary, .btn.btn-ghost{border-radius:16px}
    .footer-col-right .footer-badges{display:flex; flex-wrap:wrap; gap:10px}
    .footer-badge{
      text-decoration:none;
      padding:10px 12px;
      border-radius:16px;
      background: rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.10);
      font-weight:900;
      color: rgba(255,255,255,.92);
      transition: transform .18s ease, border-color .2s ease, background .2s ease;
      font-size:13px;
    }
    .footer-badge:hover{transform: translateY(-2px); border-color: rgba(255,179,0,.22); background: rgba(255,179,0,.10)}
    .footer-note{margin-top:14px; color: rgba(255,255,255,.66)}

    .float-customer{
      position:fixed;
      right:16px;
      bottom:18px;
      z-index:1400;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .float-btn{
      text-decoration:none;
      background: rgba(255,179,0,.98);
      color: rgba(35,26,0,.98);
      border:1px solid rgba(27,31,42,.10);
      box-shadow: 0 18px 40px rgba(255,179,0,.20);
      border-radius:18px;
      padding:12px 12px;
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:950;
      transition: transform .18s ease, box-shadow .18s ease;
      min-width:140px;
      justify-content:center;
    }
    .float-btn:hover{transform: translateY(-3px); box-shadow: 0 24px 54px rgba(255,179,0,.26)}
    .float-btn-2{
      background: rgba(255,255,255,.86);
      color: rgba(27,31,42,.92);
      box-shadow: 0 18px 40px rgba(18,20,30,.12);
    }
    .float-icon{font-size:16px}
    .float-text{font-size:13px}

    .to-top{
      position:fixed;
      right:16px;
      bottom:150px;
      z-index:1500;
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(27,31,42,.12);
      background: rgba(255,255,255,.88);
      box-shadow: 0 18px 40px rgba(18,20,30,.12);
      cursor:pointer;
      display:none;
      align-items:center;
      justify-content:center;
      font-weight:950;
      color: rgba(27,31,42,.88);
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .to-top:hover{transform: translateY(-2px); box-shadow: 0 24px 54px rgba(18,20,30,.16)}

    .cookie-toast{
      position:fixed;
      left:50%;
      transform: translateX(-50%);
      bottom:18px;
      z-index:1600;
      background: rgba(15,22,38,.92);
      color: rgba(255,255,255,.92);
      border:1px solid rgba(255,179,0,.24);
      border-radius:18px;
      padding:12px 12px;
      box-shadow: 0 24px 60px rgba(0,0,0,.22);
      display:flex; align-items:center; gap:12px;
      width:min(560px, calc(100% - 24px));
      opacity:0;
      transition: opacity .2s ease, transform .2s ease;
    }
    .cookie-toast.show{opacity:1; transform: translateX(-50%) translateY(0)}
    .cookie-toast-text{font-weight:820; flex:1}
    .cookie-toast-btn{
      border-radius:14px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      color: rgba(255,255,255,.92);
      padding:10px 12px;
      cursor:pointer;
      font-weight:900;
    }

    .inline-link{color: rgba(15,42,74,.96)}
    .link-btn{
      text-decoration:none;
      color: rgba(15,42,74,.96);
      border-bottom:1px solid rgba(15,42,74,.22);
      font-weight:900;
      padding-bottom:2px;
      transition: color .2s ease, border-color .2s ease;
    }
    .link-btn:hover{color: rgba(255,138,0,.98); border-color: rgba(255,138,0,.45)}
    .sep{opacity:.55}

    .panel .form-advice{margin-top:12px}
    .advice-row{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 12px;
      border-radius:18px;
      border:1px solid rgba(27,31,42,.10);
      background: rgba(255,255,255,.66);
      margin-top:10px;
      font-weight:820;
      color: rgba(27,31,42,.86);
    }
    .advice-icon{
      width:22px; height:22px;
      border-radius:8px;
      background: rgba(255,179,0,.14);
      border:1px solid rgba(255,179,0,.20);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
      font-weight:950;
    }

    .review-bar{
      margin-top:14px;
      padding:12px;
      border-radius:20px;
      border:1px dashed rgba(27,31,42,.16);
      background: rgba(255,255,255,.62);
    }
    .review-badge{
      display:flex; align-items:center; gap:10px;
      font-weight:950;
    }
    .review-badge-icon{
      width:30px; height:30px;
      border-radius:12px;
      border:1px solid rgba(255,179,0,.22);
      background: rgba(255,179,0,.12);
      display:flex; align-items:center; justify-content:center;
    }
    .review-tip{margin-top:10px}

    @media (max-width: 980px){
      .hero-grid{grid-template-columns:1fr}
      .hero-visual{justify-content:flex-start}
      .floating-badges{position:relative; right:auto; bottom:auto; width:100%; justify-content:flex-start; margin-top:14px}
      .grid-2{grid-template-columns:1fr}
      .grid-3{grid-template-columns:1fr}
      .grid-4{grid-template-columns:1fr 1fr}
      .help-grid{grid-template-columns:1fr 1fr}
      .faq-grid{grid-template-columns:1fr}
      .articles{grid-template-columns:1fr}
      .nav-toggle{display:inline-flex}
      .desktop-nav{display:none}
      .contact-strip{grid-template-columns:1fr}
      .qr-row{grid-template-columns:1fr}
      .form-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr; }
      .float-customer{right:12px; bottom:14px}
      .to-top{right:12px; bottom:140px}
    }

    @media (max-width: 520px){
      .hero-title{font-size:30px}
      .section{padding:46px 0}
      .grid-4{grid-template-columns:1fr}
      .help-grid{grid-template-columns:1fr}
      .links-grid{grid-template-columns:1fr}
      .hero-chip{font-size:12px}
      .float-btn{min-width:132px}
    }

    body.menu-open{overflow:hidden}
    @media (prefers-reduced-motion: reduce){
      .reveal{transition:none}
      .hero-chip{animation:none}
      .badge{animation:none}
    }