:root{
      --bg:#f7f7fb;
      --panel:#ffffff;
      --text:#1f2937;
      --muted:#5b6676;
      --line:rgba(20,30,45,.12);
      --shadow:0 10px 30px rgba(16,24,40,.08);
      --shadow2:0 14px 40px rgba(16,24,40,.10);
      --brand:#ff3d6e;
      --brand2:#3b82f6;
      --brand3:#22c55e;
      --accent:#7c3aed;
      --soft:#fef2f6;
      --soft2:#eef2ff;
      --radius:18px;
      --radius2:24px;
      --container:1120px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans SC", sans-serif;
      color:var(--text);
      background: radial-gradient(1200px 600px at 10% -10%, rgba(255,61,110,.16), transparent 55%),
                  radial-gradient(900px 480px at 90% 0%, rgba(59,130,246,.14), transparent 55%),
                  linear-gradient(#fbfbff, var(--bg));
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    .container{max-width:var(--container); margin:0 auto; padding:0 18px}
    .bg-sheen{
      position:fixed; inset:-200px -200px auto -200px; height:420px;
      background: radial-gradient(closest-side at 50% 20%, rgba(255,61,110,.22), transparent 60%),
                  radial-gradient(closest-side at 80% 10%, rgba(59,130,246,.18), transparent 62%);
      filter: blur(0px);
      pointer-events:none; z-index:-1;
      opacity:.9;
    }

    .topbar{
      position:sticky; top:0; z-index:50;
      background: rgba(255,255,255,.72);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(20,30,45,.08);
    }
    .topbar-inner{
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      padding:12px 0;
    }
    .brand{display:flex; align-items:center; gap:10px; min-width:160px}
    .ai-page-logo{width:160px; display:block}
    .nav{flex:1; display:flex; justify-content:center}
    .nav-panel{
      display:flex; align-items:center; gap:14px;
      flex-wrap:wrap;
      justify-content:center;
    }
    .nav-link{
      font-size:14px; color:rgba(20,30,45,.78);
      padding:8px 10px; border-radius:999px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .nav-link:hover{background:rgba(255,61,110,.08); color:#111827; transform: translateY(-1px)}
    .top-actions{display:flex; align-items:center; gap:10px; min-width:250px; justify-content:flex-end}
    .nav-toggle{display:none}

    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:8px;
      padding:10px 14px; border-radius:12px;
      border:1px solid transparent;
      font-weight:700; font-size:14px;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
      cursor:pointer;
      user-select:none;
      white-space:nowrap;
    }
    .btn:active{transform: translateY(1px)}
    .btn-primary{
      background: linear-gradient(135deg, var(--brand), #ff6a2a);
      color:#fff;
      box-shadow: 0 14px 30px rgba(255,61,110,.22);
    }
    .btn-primary:hover{box-shadow: 0 18px 45px rgba(255,61,110,.28); transform: translateY(-1px)}
    .btn-ghost{
      background: rgba(255,255,255,.7);
      border-color: rgba(20,30,45,.12);
      color: rgba(20,30,45,.88);
    }
    .btn-ghost:hover{background: rgba(255,61,110,.06); border-color: rgba(255,61,110,.22); transform: translateY(-1px)}
    .btn-soft{
      background: rgba(59,130,246,.08);
      border-color: rgba(59,130,246,.18);
      color: rgba(17,24,39,.95);
    }
    .btn-soft:hover{background: rgba(59,130,246,.12); border-color: rgba(59,130,246,.26); transform: translateY(-1px)}
    .btn-lg{padding:12px 16px; border-radius:14px; font-size:15px}
    .w-100{width:100%}

    .hero{
      padding:34px 0 22px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.3fr .9fr;
      gap:18px;
      align-items:start;
    }
    .hero-copy{
      background: linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.60));
      border: 1px solid rgba(20,30,45,.08);
      border-radius: var(--radius2);
      padding:26px;
      box-shadow: var(--shadow);
      position:relative;
      overflow:hidden;
      animation: riseIn .7s ease both;
    }
    @keyframes riseIn{
      from{opacity:0; transform: translateY(10px)}
      to{opacity:1; transform: translateY(0)}
    }
    .hero-copy::before{
      content:"";
      position:absolute; inset:-2px auto auto -2px;
      width:420px; height:220px;
      background: radial-gradient(closest-side at 30% 30%, rgba(255,61,110,.22), transparent 62%),
                  radial-gradient(closest-side at 70% 35%, rgba(59,130,246,.18), transparent 60%);
      transform: rotate(-8deg);
      pointer-events:none;
    }
    .kicker{
      display:flex; align-items:center; gap:10px;
      color: rgba(17,24,39,.78);
      font-weight:700;
      font-size:13px;
      letter-spacing:.2px;
      position:relative;
    }
    .kicker-dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow: 0 10px 20px rgba(255,61,110,.25);
    }
    .hero-title{
      margin:14px 0 10px;
      font-size:34px; line-height:1.12;
      letter-spacing:-.6px;
      position:relative;
    }
    .hero-sub{
      margin:0 0 18px;
      color: rgba(20,30,45,.74);
      font-size:15px; line-height:1.7;
      max-width:64ch;
      position:relative;
    }
    .hero-cta{display:flex; gap:12px; flex-wrap:wrap; position:relative}
    .hero-metrics{
      display:grid; grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px; margin-top:18px;
      position:relative;
    }
    .metric-card{
      border-radius:16px;
      padding:14px 14px 12px;
      background: rgba(255,255,255,.65);
      border:1px solid rgba(20,30,45,.08);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      box-shadow: 0 10px 25px rgba(16,24,40,.05);
    }
    .metric-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 40px rgba(16,24,40,.10);
      border-color: rgba(255,61,110,.22);
    }
    .metric-top{display:flex; align-items:center; gap:10px; margin-bottom:8px}
    .metric-icon{font-size:18px}
    .metric-label{font-size:13px; font-weight:800; color: rgba(17,24,39,.75)}
    .metric-value{font-size:16px; font-weight:900; letter-spacing:-.3px}
    .metric-note{font-size:12px; color: rgba(20,30,45,.62); margin-top:4px}

    .hero-logos{margin-top:14px; position:relative}
    .chipline{display:flex; gap:10px; flex-wrap:wrap}
    .chip{
      font-size:13px;
      padding:8px 11px;
      border-radius:999px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.7);
      color: rgba(17,24,39,.86);
      font-weight:800;
    }

    .hero-side{position:relative}
    .side-panel{
      border-radius: var(--radius2);
      background: rgba(255,255,255,.75);
      border: 1px solid rgba(20,30,45,.08);
      box-shadow: var(--shadow);
      padding:18px;
      position:relative;
      overflow:hidden;
      animation: riseIn2 .75s ease both;
    }
    @keyframes riseIn2{
      from{opacity:0; transform: translateY(14px)}
      to{opacity:1; transform: translateY(0)}
    }
    .side-panel::after{
      content:"";
      position:absolute; right:-120px; top:-120px;
      width:260px; height:260px;
      background: radial-gradient(closest-side, rgba(59,130,246,.22), transparent 68%);
      pointer-events:none;
    }
    .side-title h2{
      margin:8px 0 6px;
      font-size:18px; letter-spacing:-.2px;
    }
    .badge{
      display:inline-flex; align-items:center;
      padding:6px 10px;
      border-radius:999px;
      background: rgba(255,61,110,.10);
      color: rgba(255,61,110,.95);
      border:1px solid rgba(255,61,110,.22);
      font-weight:900; font-size:12px;
    }
    .side-steps{margin-top:12px; display:flex; flex-direction:column; gap:10px}
    .side-step{
      display:flex; gap:12px; align-items:flex-start;
      padding:10px 10px;
      border-radius:16px;
      background: rgba(255,255,255,.55);
      border:1px solid rgba(20,30,45,.08);
    }
    .step-index{
      width:30px; height:30px; border-radius:10px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(255,61,110,.18), rgba(59,130,246,.14));
      border:1px solid rgba(20,30,45,.08);
      font-weight:1000; color: rgba(17,24,39,.92);
      flex:0 0 auto;
    }
    .step-name{font-weight:950; font-size:14px}
    .step-desc{font-size:12px; color: rgba(20,30,45,.62); margin-top:3px; line-height:1.4}
    .side-actions{margin-top:14px; display:flex; flex-direction:column; gap:10px}
    .side-contact{margin-top:14px; border-top:1px dashed rgba(20,30,45,.14); padding-top:12px}
    .contact-row{display:flex; justify-content:space-between; gap:10px; padding:6px 0; font-size:13px}
    .contact-label{color: rgba(20,30,45,.62); font-weight:800}
    .contact-link{color: rgba(17,24,39,.92); font-weight:900}
    .contact-value{color: rgba(17,24,39,.86); font-weight:800}

    .pulse-ring{
      position:absolute; inset:auto auto 10px 10px; width:10px; height:10px;
      background: rgba(255,61,110,.85); border-radius:50%;
      box-shadow: 0 0 0 0 rgba(255,61,110,.25);
      animation: pulse 2.2s ease-in-out infinite;
      right:auto;
    }
    @keyframes pulse{
      0%{box-shadow:0 0 0 0 rgba(255,61,110,.25)}
      70%{box-shadow:0 0 0 16px rgba(255,61,110,0)}
      100%{box-shadow:0 0 0 0 rgba(255,61,110,0)}
    }

    .section{padding:56px 0}
    .section-tint{background: linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.0)), radial-gradient(900px 360px at 10% 0%, rgba(255,61,110,.12), transparent 60%),
                         radial-gradient(820px 360px at 80% 0%, rgba(59,130,246,.12), transparent 58%); }
    .section-muted{background: radial-gradient(900px 340px at 15% 0%, rgba(124,58,237,.10), transparent 58%), linear-gradient(#ffffff, rgba(255,255,255,0));}
    .section-accent{background: radial-gradient(800px 360px at 80% 20%, rgba(255,61,110,.14), transparent 60%); }
    .section-compare{background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.65)), radial-gradient(900px 420px at 10% 0%, rgba(59,130,246,.12), transparent 58%); }
    .section-token{background: radial-gradient(900px 420px at 80% 0%, rgba(255,61,110,.12), transparent 58%), linear-gradient(#ffffff, rgba(255,255,255,0));}
    .section-help{background: radial-gradient(900px 380px at 10% 0%, rgba(59,130,246,.12), transparent 58%);}

    .section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:18px}
    .section-title{margin:0; font-size:26px; letter-spacing:-.4px}
    .section-sub{margin:0; color: rgba(20,30,45,.70); line-height:1.7; max-width:68ch; font-size:14px}

    .about-grid{
      display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px;
      margin-top:18px;
    }
    .feature-card{
      border-radius: var(--radius);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,30,45,.08);
      padding:18px;
      box-shadow: 0 10px 25px rgba(16,24,40,.05);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      position:relative;
      overflow:hidden;
    }
    .feature-card:hover{transform: translateY(-4px); box-shadow: 0 18px 45px rgba(16,24,40,.10); border-color: rgba(255,61,110,.20)}
    .feature-card.alt::before{
      content:"";
      position:absolute; inset:-80px -80px auto auto; width:220px; height:220px;
      background: radial-gradient(closest-side, rgba(124,58,237,.18), transparent 66%);
      pointer-events:none;
    }
    .feature-top{display:flex; align-items:center; gap:10px}
    .feature-icon{width:38px; height:38px; border-radius:14px; display:flex; align-items:center; justify-content:center; background: rgba(255,61,110,.10); border:1px solid rgba(255,61,110,.22); font-size:18px}
    .feature-card.alt .feature-icon{background: rgba(59,130,246,.10); border-color: rgba(59,130,246,.22)}
    .feature-card h3{margin:0; font-size:16px; letter-spacing:-.2px}
    .feature-text{margin:12px 0 0; color: rgba(20,30,45,.70); line-height:1.7; font-size:14px}
    .mini-tags{margin-top:12px; display:flex; flex-wrap:wrap; gap:10px}
    .mini-tag{
      font-size:12px; font-weight:800;
      padding:7px 10px; border-radius:999px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.6);
      color: rgba(17,24,39,.84);
    }
    .split-bullets{margin-top:12px; display:grid; grid-template-columns:1fr 1fr; gap:10px}
    .split-bullet{font-size:13px; color: rgba(20,30,45,.74); font-weight:700}

    .quote-callout{
      margin-top:14px; padding:12px; border-radius:16px;
      border:1px solid rgba(20,30,45,.08);
      background: linear-gradient(180deg, rgba(255,61,110,.08), rgba(255,255,255,.55));
    }
    .quote-title{font-weight:950; font-size:13px; color: rgba(17,24,39,.86)}
    .quote-text{margin-top:8px; font-size:13px; color: rgba(20,30,45,.70); line-height:1.7; font-weight:650}

    .logos-strip{
      margin-top:16px;
      display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:12px;
    }
    .logos-item{
      border-radius: 16px;
      padding:14px 14px;
      border:1px solid rgba(20,30,45,.08);
      background: rgba(255,255,255,.7);
      display:flex; align-items:center; gap:12px;
      box-shadow: 0 12px 26px rgba(16,24,40,.05);
    }
    .logos-icon{width:40px; height:40px; border-radius:16px; display:flex; align-items:center; justify-content:center; background: rgba(59,130,246,.10); border:1px solid rgba(59,130,246,.18); font-size:18px}
    .logos-item:nth-child(2) .logos-icon{background: rgba(255,61,110,.10); border-color: rgba(255,61,110,.20)}
    .logos-item:nth-child(3) .logos-icon{background: rgba(34,197,94,.10); border-color: rgba(34,197,94,.20)}
    .logos-item:nth-child(4) .logos-icon{background: rgba(124,58,237,.10); border-color: rgba(124,58,237,.20)}
    .logos-title{font-weight:1000; font-size:14px}
    .logos-subtitle{font-size:12px; color: rgba(20,30,45,.62); margin-top:3px; font-weight:700}

    .services-grid{
      display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:14px;
    }
    .service-card{
      border-radius: var(--radius);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,30,45,.08);
      padding:18px;
      box-shadow: 0 10px 25px rgba(16,24,40,.05);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex; flex-direction:column;
      min-height:320px;
    }
    .service-card:hover{transform: translateY(-4px); box-shadow: var(--shadow2); border-color: rgba(255,61,110,.22)}
    .service-top{display:flex; align-items:center; gap:10px; margin-bottom:8px}
    .service-icon{
      width:42px; height:42px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,61,110,.10); border:1px solid rgba(255,61,110,.20);
      font-size:18px;
      flex:0 0 auto;
    }
    .service-card:nth-child(2) .service-icon{background: rgba(59,130,246,.10); border-color: rgba(59,130,246,.20)}
    .service-card:nth-child(3) .service-icon{background: rgba(124,58,237,.10); border-color: rgba(124,58,237,.20)}
    .service-card:nth-child(4) .service-icon{background: rgba(34,197,94,.10); border-color: rgba(34,197,94,.22)}
    .service-card h3{margin:0; font-size:16px; letter-spacing:-.2px}
    .service-desc{margin:8px 0 12px; color: rgba(20,30,45,.70); line-height:1.7; font-size:14px}
    .service-list{margin:0; padding-left:18px; color: rgba(20,30,45,.72); font-size:13px; line-height:1.7}
    .service-list li{margin:6px 0}
    .service-foot{margin-top:auto; display:flex; gap:14px; align-items:center; justify-content:flex-start}
    .link{font-weight:900; color: rgba(17,24,39,.92); position:relative; padding:6px 0}
    .link::after{
      content:""; position:absolute; left:0; bottom:4px; width:0; height:2px;
      background: linear-gradient(90deg, var(--brand), var(--brand2));
      transition: width .2s ease;
    }
    .link:hover::after{width:100%}

    .timeline-wrap{display:grid; grid-template-columns: 1.25fr .75fr; gap:14px; align-items:start}
    .timeline{
      border-radius: var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,30,45,.08);
      box-shadow: 0 14px 35px rgba(16,24,40,.06);
      padding:18px;
      position:relative;
      overflow:hidden;
    }
    .timeline::before{
      content:"";
      position:absolute; inset:-2px auto auto -2px;
      width:340px; height:140px;
      background: radial-gradient(closest-side, rgba(255,61,110,.18), transparent 62%);
      pointer-events:none;
    }
    .timeline{
      display:flex; flex-direction:column; gap:14px;
    }
    .timeline-item{
      display:flex; gap:14px; align-items:flex-start;
      padding:12px;
      border-radius: 18px;
      background: rgba(255,255,255,.58);
      border:1px solid rgba(20,30,45,.06);
      transition: transform .2s ease, border-color .2s ease;
    }
    .timeline-item:hover{transform: translateY(-3px); border-color: rgba(59,130,246,.22)}
    .timeline-dot{
      width:14px; height:14px; border-radius:50%;
      background: linear-gradient(135deg, var(--brand2), var(--brand));
      margin-top:4px; box-shadow: 0 10px 24px rgba(59,130,246,.22);
      flex:0 0 auto;
    }
    .timeline-content h3{margin:0; font-size:15px; letter-spacing:-.2px}
    .timeline-content p{margin:6px 0 0; color: rgba(20,30,45,.68); line-height:1.7; font-size:13px}
    .timeline-side .panel-card{
      border-radius: var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,30,45,.08);
      box-shadow: 0 14px 35px rgba(16,24,40,.06);
      padding:18px;
    }
    .panel-card .panel-title{font-weight:1000; font-size:14px; color: rgba(17,24,39,.90)}
    .pill-grid{margin-top:12px; display:flex; flex-wrap:wrap; gap:10px}
    .pill{
      padding:9px 11px; border-radius:999px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.65);
      font-weight:950; font-size:13px;
      color: rgba(17,24,39,.9);
    }
    .panel-actions{margin-top:14px; display:flex; flex-direction:column; gap:10px}
    .panel-footnote{margin-top:12px; color: rgba(20,30,45,.60); font-size:12px; line-height:1.6; font-weight:700}

    .solutions-grid{display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:14px}
    .solution-card{
      border-radius: var(--radius);
      padding:18px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,30,45,.08);
      box-shadow: 0 12px 26px rgba(16,24,40,.05);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height:190px;
    }
    .solution-card:hover{transform: translateY(-4px); box-shadow: var(--shadow2); border-color: rgba(124,58,237,.20)}
    .solution-head{display:flex; gap:10px; align-items:center}
    .solution-icon{
      width:42px; height:42px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(124,58,237,.10); border:1px solid rgba(124,58,237,.20);
      font-size:18px;
    }
    .solution-card:nth-child(1) .solution-icon{background: rgba(59,130,246,.10); border-color: rgba(59,130,246,.20)}
    .solution-card:nth-child(2) .solution-icon{background: rgba(255,61,110,.10); border-color: rgba(255,61,110,.20)}
    .solution-card:nth-child(3) .solution-icon{background: rgba(34,197,94,.10); border-color: rgba(34,197,94,.20)}
    .solution-card:nth-child(4) .solution-icon{background: rgba(124,58,237,.10); border-color: rgba(124,58,237,.20)}
    .solution-card h3{margin:0; font-size:16px; letter-spacing:-.2px}
    .solution-card p{margin:10px 0 0; color: rgba(20,30,45,.70); line-height:1.7; font-size:14px}
    .solution-meta{margin-top:12px; display:flex; flex-wrap:wrap; gap:10px}
    .meta-chip{
      padding:8px 10px; border-radius:999px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.6);
      font-weight:900; font-size:12px; color: rgba(17,24,39,.84);
    }

    .network-grid{display:grid; grid-template-columns: .95fr 1.05fr; gap:14px}
    .network-card{
      border-radius: var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,30,45,.08);
      padding:18px;
      box-shadow: 0 12px 26px rgba(16,24,40,.05);
    }
    .network-card h3{margin:0 0 12px; font-size:16px; letter-spacing:-.2px}
    .plain-list{list-style:none; padding:0; margin:0}
    .plain-list li{display:flex; gap:10px; align-items:flex-start; margin:10px 0; color: rgba(20,30,45,.72); font-weight:700; font-size:13px; line-height:1.6}
    .bullet{width:10px; height:10px; border-radius:4px; background: linear-gradient(135deg, var(--brand), var(--brand2)); margin-top:4px; flex:0 0 auto}
    .emphasis{background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.65)); position:relative; overflow:hidden}
    .emphasis::after{
      content:"";
      position:absolute; right:-120px; bottom:-160px;
      width:320px; height:320px;
      background: radial-gradient(closest-side, rgba(255,61,110,.16), transparent 68%);
      pointer-events:none;
    }
    .network-rows{display:flex; flex-direction:column; gap:10px; margin-bottom:14px}
    .kv-row{display:flex; justify-content:space-between; gap:12px; padding:10px 12px; border-radius:16px; border:1px solid rgba(20,30,45,.08); background: rgba(255,255,255,.55)}
    .kv-k{font-weight:1000; color: rgba(17,24,39,.88); font-size:13px}
    .kv-v{color: rgba(20,30,45,.68); font-weight:750; font-size:13px}
    .network-actions{display:flex; flex-direction:column; gap:10px}

    .process-grid{display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:14px}
    .process-card{
      border-radius: var(--radius);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,30,45,.08);
      box-shadow: 0 12px 26px rgba(16,24,40,.05);
      padding:18px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height:220px;
      position:relative;
      overflow:hidden;
    }
    .process-card:hover{transform: translateY(-4px); box-shadow: var(--shadow2); border-color: rgba(255,61,110,.20)}
    .process-num{
      font-weight:1100;
      font-size:13px;
      color: rgba(17,24,39,.74);
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.62);
      width:max-content;
    }
    .process-card h3{margin:12px 0 8px; font-size:16px; letter-spacing:-.2px}
    .process-card p{margin:0; color: rgba(20,30,45,.70); line-height:1.7; font-size:14px}
    .process-mini{margin-top:12px; display:flex; flex-wrap:wrap; gap:10px}
    .mini-chip{
      padding:7px 10px; border-radius:999px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.6);
      font-weight:900; font-size:12px; color: rgba(17,24,39,.84);
    }

    .case-grid{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px}
    .case-card{
      border-radius: var(--radius2);
      padding:18px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,30,45,.08);
      box-shadow: 0 12px 26px rgba(16,24,40,.05);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height:220px;
      display:flex; flex-direction:column;
    }
    .case-card:hover{transform: translateY(-4px); box-shadow: var(--shadow2); border-color: rgba(59,130,246,.20)}
    .case-top{display:flex; justify-content:space-between; gap:12px; align-items:center}
    .case-badge{
      padding:7px 10px; border-radius:999px;
      background: rgba(255,61,110,.10);
      border:1px solid rgba(255,61,110,.22);
      color: rgba(255,61,110,.95);
      font-weight:1000; font-size:12px;
      width:max-content;
    }
    .case-time{color: rgba(20,30,45,.62); font-weight:800; font-size:12px}
    .case-card:nth-child(2) .case-badge{background: rgba(59,130,246,.10); border-color: rgba(59,130,246,.22); color: rgba(59,130,246,.95)}
    .case-card:nth-child(3) .case-badge{background: rgba(34,197,94,.10); border-color: rgba(34,197,94,.22); color: rgba(34,197,94,.95)}
    .case-card h3{margin:12px 0 8px; font-size:16px; letter-spacing:-.2px}
    .case-card p{margin:0; color: rgba(20,30,45,.70); line-height:1.7; font-size:14px}
    .case-tags{margin-top:12px; display:flex; flex-wrap:wrap; gap:10px}
    .tag{
      padding:7px 10px; border-radius:999px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.6);
      font-weight:900; font-size:12px; color: rgba(17,24,39,.84);
    }
    .case-foot{margin-top:auto; padding-top:12px; display:flex; justify-content:flex-start}
    .article-row{margin-top:18px; border-radius: var(--radius2); padding:18px; border:1px solid rgba(20,30,45,.08); background: rgba(255,255,255,.68); box-shadow: 0 12px 26px rgba(16,24,40,.05)}
    .article-head{display:flex; align-items:center; justify-content:space-between; gap:12px}
    .article-head h3{margin:0; font-size:16px}
    .article-list{margin-top:12px; display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:10px}
    .article-item{
      border-radius:16px;
      border:1px solid rgba(20,30,45,.08);
      background: rgba(255,255,255,.55);
      padding:12px;
      display:flex; align-items:center; gap:12px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .article-item:hover{transform: translateY(-3px); border-color: rgba(255,61,110,.22); box-shadow: 0 18px 40px rgba(16,24,40,.08)}
    .article-dot{width:10px; height:10px; border-radius:4px; background: linear-gradient(135deg, var(--brand), var(--brand2))}
    .article-body{flex:1}
    .article-title{font-weight:1000; font-size:14px; letter-spacing:-.2px}
    .article-sub{margin-top:6px; color: rgba(20,30,45,.62); font-weight:750; font-size:12px; line-height:1.4}
    .article-arrow{color: rgba(20,30,45,.5); font-weight:1100}

    .compare-grid{display:grid; grid-template-columns: .9fr 1.1fr; gap:14px; align-items:start}
    .rating-card{
      border-radius: var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,30,45,.08);
      box-shadow: 0 14px 35px rgba(16,24,40,.06);
      padding:18px;
      position:relative;
      overflow:hidden;
    }
    .rating-card::after{
      content:"";
      position:absolute; inset:-160px auto auto -180px;
      width:360px; height:360px;
      background: radial-gradient(closest-side, rgba(255,61,110,.20), transparent 70%);
      pointer-events:none;
    }
    .rating-top{display:flex; align-items:center; justify-content:space-between; gap:12px; position:relative}
    .rating-star{font-size:18px; letter-spacing:2px; color: rgba(255,61,110,.95)}
    .rating-badge{font-weight:1000; color: rgba(20,30,45,.65); font-size:12px; border:1px solid rgba(20,30,45,.10); padding:8px 10px; border-radius:999px; background: rgba(255,255,255,.6)}
    .rating-value{margin-top:12px; position:relative}
    .rating-number{font-size:42px; font-weight:1100; letter-spacing:-1px}
    .rating-unit{margin-left:8px; color: rgba(20,30,45,.68); font-weight:900}
    .rating-text{margin:10px 0 0; color: rgba(20,30,45,.70); line-height:1.7; font-weight:750}
    .rating-foot{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; position:relative}

    .table-card{
      border-radius: var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,30,45,.08);
      box-shadow: 0 14px 35px rgba(16,24,40,.06);
      padding:18px;
    }
    .table-head{display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom:12px}
    .table-head h3{margin:0; font-size:16px}
    .table-note{color: rgba(20,30,45,.62); font-weight:800; font-size:12px; line-height:1.5; text-align:right}
    .table-scroll{overflow:auto; border-radius:16px}
    .compare-table{
      width:100%; min-width:520px;
      border-collapse:collapse;
      background: rgba(255,255,255,.6);
      border:1px solid rgba(20,30,45,.08);
    }
    .compare-table th, .compare-table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(20,30,45,.08);
      text-align:left;
      vertical-align:top;
      font-size:13px;
      color: rgba(20,30,45,.78);
      font-weight:750;
    }
    .compare-table th{background: rgba(255,61,110,.06); color: rgba(17,24,39,.92); font-weight:1000}
    .compare-table tr:last-child td{border-bottom:none}
    .score{
      display:inline-flex; align-items:center; justify-content:center;
      padding:6px 10px; border-radius:999px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.6);
      font-weight:1000; letter-spacing:-.2px;
    }
    .score.good{border-color: rgba(59,130,246,.22); background: rgba(59,130,246,.10); color: rgba(59,130,246,.95)}
    .score.verygood{border-color: rgba(255,61,110,.22); background: rgba(255,61,110,.10); color: rgba(255,61,110,.95)}
    .table-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-start}

    .match-grid{display:grid; grid-template-columns: .95fr 1.05fr; gap:14px; align-items:start}
    .match-left .panel-card{border-radius: var(--radius2); background: rgba(255,255,255,.78); border:1px solid rgba(20,30,45,.08); box-shadow: 0 14px 35px rgba(16,24,40,.06); padding:18px; position:relative; overflow:hidden}
    .panel-divider{height:1px; background: rgba(20,30,45,.10); margin:14px 0}
    .panel-card h3{margin:0 0 10px; font-size:16px; letter-spacing:-.2px}
    .panel-actions .btn{margin:0}
    .how-it-works h3{margin:0 0 10px}
    .pill-btn{
      appearance:none; border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.65);
      color: rgba(17,24,39,.90);
      font-weight:1000;
      padding:10px 12px;
      border-radius:999px;
      cursor:pointer;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
      font-size:13px;
    }
    .pill-btn:hover{transform: translateY(-2px); border-color: rgba(255,61,110,.22); background: rgba(255,61,110,.06)}
    .pill-btn.is-picked{border-color: rgba(255,61,110,.35); background: rgba(255,61,110,.10)}
    .match-right{display:flex; flex-direction:column; gap:14px}
    .form-card{
      border-radius: var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,30,45,.08);
      box-shadow: 0 14px 35px rgba(16,24,40,.06);
      padding:18px;
    }
    .form-head{margin-bottom:12px}
    .panel-sub{color: rgba(20,30,45,.66); font-weight:800; line-height:1.6; margin-top:6px; font-size:13px}
    .form-sub{color: rgba(20,30,45,.66); font-weight:800; line-height:1.6; margin-top:6px; font-size:13px}
    .form{margin-top:10px}
    .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .compact-grid{grid-template-columns: 1fr 1fr}
    .field{display:flex; flex-direction:column; gap:8px}
    .field-span{grid-column: 1 / -1}
    .field-label{font-size:13px; font-weight:950; color: rgba(17,24,39,.9)}
    .field-input{
      border-radius:14px;
      border:1px solid rgba(20,30,45,.12);
      padding:11px 12px;
      background: rgba(255,255,255,.65);
      outline:none;
      color: rgba(17,24,39,.92);
      font-weight:800;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .field-input:focus{
      border-color: rgba(255,61,110,.35);
      box-shadow: 0 0 0 4px rgba(255,61,110,.10);
      background: rgba(255,255,255,.82);
    }
    .field-textarea{min-height:108px; resize: vertical}
    .form-actions{margin-top:14px; display:flex; flex-direction:column; gap:10px}
    .form-hint{color: rgba(20,30,45,.60); font-weight:800; font-size:12px; line-height:1.6}
    .form. compact .form-hint{font-size:11px}
    .form-foot{margin-top:12px; padding-top:12px; border-top:1px dashed rgba(20,30,45,.14); display:flex; flex-direction:column; gap:8px}
    .foot-row{display:flex; gap:10px; align-items:center}
    .foot-icon{font-size:16px}
    .foot-link{font-weight:1000; color: rgba(17,24,39,.92)}
    .foot-text{font-weight:850; color: rgba(20,30,45,.70)}
    .match-mini{
      border-radius: var(--radius2);
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
      border:1px solid rgba(20,30,45,.08);
      box-shadow: 0 14px 35px rgba(16,24,40,.06);
      padding:18px;
    }
    .mini-title{font-weight:1100; font-size:15px}
    .mini-desc{margin-top:10px; color: rgba(20,30,45,.70); line-height:1.7; font-weight:780; font-size:13px}
    .mini-grid{
      margin-top:12px;
      display:grid; grid-template-columns: repeat(2, minmax(0,1fr));
      gap:10px;
    }
    .mini-item{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(20,30,45,.08);
      background: rgba(255,255,255,.55);
      font-weight:900; color: rgba(17,24,39,.88);
      font-size:13px;
    }

    .section-token .token-grid{display:grid; grid-template-columns: 1fr 1fr; gap:14px; align-items:start}
    .token-card{
      border-radius: var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,30,45,.08);
      box-shadow: 0 14px 35px rgba(16,24,40,.06);
      padding:18px;
    }
    .numbered{margin:10px 0 0; padding-left:18px; color: rgba(20,30,45,.72); font-weight:800; line-height:1.7}
    .numbered li{margin:10px 0}
    .token-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}
    .token-logos{margin-top:14px; display:flex; flex-wrap:wrap; gap:10px}
    .token-logo-pill{
      padding:8px 10px; border-radius:999px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.6);
      font-weight:1000; font-size:12px;
      color: rgba(17,24,39,.84);
    }

    .token-table-card{
      border-radius: var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,30,45,.08);
      box-shadow: 0 14px 35px rgba(16,24,40,.06);
      padding:18px;
    }
    .simple-table{
      width:100%; min-width:560px; border-collapse:collapse;
      background: rgba(255,255,255,.6);
      border:1px solid rgba(20,30,45,.08);
    }
    .simple-table th, .simple-table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(20,30,45,.08);
      text-align:left;
      font-size:13px;
      color: rgba(20,30,45,.78);
      font-weight:780;
      vertical-align:top;
    }
    .simple-table th{background: rgba(59,130,246,.06); color: rgba(17,24,39,.92); font-weight:1000}
    .simple-table tr:last-child td{border-bottom:none}

    .training-grid{display:grid; grid-template-columns: 1fr 1fr; gap:14px; align-items:start}
    .training-card{
      border-radius: var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,30,45,.08);
      box-shadow: 0 14px 35px rgba(16,24,40,.06);
      padding:18px;
    }
    .training-card h3{margin:0; font-size:16px}
    .grid-two{margin-top:12px; display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:10px}
    .dir-item{
      padding:10px 12px; border-radius:16px;
      border:1px solid rgba(20,30,45,.08);
      background: rgba(255,255,255,.55);
      font-weight:950; color: rgba(17,24,39,.88); font-size:13px;
      line-height:1.4;
    }
    .training-why{margin-top:14px}
    .why-title{font-weight:1100; font-size:14px}
    .training-right{display:grid; grid-template-columns: 1fr; gap:14px}
    .cardish{background: rgba(255,255,255,.78); border:1px solid rgba(20,30,45,.08); border-radius: var(--radius2); box-shadow: 0 14px 35px rgba(16,24,40,.06); padding:18px}
    .training-form-sub{color: rgba(20,30,45,.66); font-weight:800; margin-top:6px; line-height:1.6; font-size:13px}
    .training-form .form-grid{grid-template-columns: 1fr 1fr}
    .compact{margin-top:10px}
    .compact-actions{margin-top:14px}
    .training-side-card{
      border-radius: var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,30,45,.08);
      box-shadow: 0 14px 35px rgba(16,24,40,.06);
      padding:18px;
      overflow:hidden;
      position:relative;
    }
    .training-side-card::after{
      content:"";
      position:absolute; right:-100px; top:-140px; width:280px; height:280px;
      background: radial-gradient(closest-side, rgba(34,197,94,.16), transparent 68%);
      pointer-events:none;
    }
    .side-mini-title{font-weight:1100; font-size:14px; position:relative}
    .side-mini-list{margin-top:12px; display:flex; flex-direction:column; gap:10px; position:relative}
    .side-mini-item{display:flex; gap:12px; align-items:flex-start; padding:12px; border-radius:16px; border:1px solid rgba(20,30,45,.08); background: rgba(255,255,255,.55)}
    .side-mini-item span{width:26px; height:26px; border-radius:10px; display:flex; align-items:center; justify-content:center; background: rgba(34,197,94,.10); border:1px solid rgba(34,197,94,.20); font-weight:1100; color: rgba(34,197,94,.95)}
    .side-mini-h{font-weight:1100; font-size:14px}
    .side-mini-p{margin-top:4px; color: rgba(20,30,45,.66); font-weight:800; font-size:12px; line-height:1.6}

    .help-grid{display:grid; grid-template-columns: .95fr 1.05fr; gap:14px; align-items:start}
    .help-card{
      border-radius: var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,30,45,.08);
      box-shadow: 0 14px 35px rgba(16,24,40,.06);
      padding:18px;
    }
    .help-card.accentish{
      background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.64));
      position:relative;
      overflow:hidden;
    }
    .help-card.accentish::before{
      content:"";
      position:absolute; inset:-140px -180px auto auto; width:380px; height:380px;
      background: radial-gradient(closest-side, rgba(59,130,246,.18), transparent 70%);
      pointer-events:none;
    }
    .help-card h3{margin:0 0 12px; font-size:16px}
    .help-links{display:flex; flex-direction:column; gap:10px}
    .help-link{
      padding:12px 12px; border-radius:16px;
      border:1px solid rgba(20,30,45,.08);
      background: rgba(255,255,255,.55);
      font-weight:1000; color: rgba(17,24,39,.90);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
      font-size:14px;
    }
    .help-link:hover{transform: translateY(-3px); border-color: rgba(255,61,110,.22); background: rgba(255,61,110,.06)}
    .help-note{margin-top:12px; color: rgba(20,30,45,.66); font-weight:800; line-height:1.7; font-size:13px}
    .help-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}

    .faq-wrap{display:flex; flex-direction:column; gap:10px}
    .faq-item{
      border-radius: var(--radius);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,30,45,.08);
      box-shadow: 0 12px 26px rgba(16,24,40,.05);
      padding:0;
      overflow:hidden;
      transition: border-color .2s ease, transform .2s ease;
    }
    .faq-item:hover{transform: translateY(-2px); border-color: rgba(59,130,246,.22)}
    .faq-item summary{
      list-style:none;
      cursor:pointer;
      padding:14px 16px;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      font-weight:1100;
    }
    .faq-item summary::-webkit-details-marker{display:none}
    .faq-q{font-size:14px; color: rgba(17,24,39,.93); letter-spacing:-.1px}
    .faq-icon{
      width:26px; height:26px; border-radius:10px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.6);
      position:relative;
      flex:0 0 auto;
    }
    .faq-icon::before, .faq-icon::after{
      content:""; position:absolute; left:50%; top:50%;
      width:12px; height:2px; background: rgba(17,24,39,.70);
      transform: translate(-50%,-50%);
      border-radius:2px;
    }
    .faq-icon::after{transform: translate(-50%,-50%) rotate(90deg); transition: transform .2s ease}
    .faq-item[open] .faq-icon::after{transform: translate(-50%,-50%) rotate(0deg)}
    .faq-a{
      padding:0 16px 14px;
      color: rgba(20,30,45,.70);
      font-weight:780;
      line-height:1.8;
      font-size:13px;
    }

    .wiki-grid{display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:14px}
    .wiki-card{
      border-radius: var(--radius2);
      padding:18px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,30,45,.08);
      box-shadow: 0 12px 26px rgba(16,24,40,.05);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height:150px;
    }
    .wiki-card:hover{transform: translateY(-4px); box-shadow: var(--shadow2); border-color: rgba(255,61,110,.20)}
    .wiki-card h3{margin:0; font-size:15px; letter-spacing:-.2px}
    .wiki-card p{margin:10px 0 0; color: rgba(20,30,45,.70); line-height:1.7; font-weight:780; font-size:13px}

    .news-grid{display:grid; grid-template-columns: 1.15fr .85fr; gap:14px; align-items:start}
    .news-list{display:flex; flex-direction:column; gap:10px}
    .news-item{
      border-radius: var(--radius);
      border:1px solid rgba(20,30,45,.08);
      background: rgba(255,255,255,.78);
      box-shadow: 0 12px 26px rgba(16,24,40,.05);
      padding:14px 14px;
      display:flex; flex-direction:column; gap:10px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .news-item:hover{transform: translateY(-3px); border-color: rgba(59,130,246,.22); box-shadow: var(--shadow2)}
    .news-k{
      width:max-content;
      padding:7px 10px; border-radius:999px;
      background: rgba(59,130,246,.10);
      border:1px solid rgba(59,130,246,.20);
      font-weight:1000; color: rgba(59,130,246,.95);
      font-size:12px;
    }
    .news-item:nth-child(2) .news-k{background: rgba(255,61,110,.10); border-color: rgba(255,61,110,.20); color: rgba(255,61,110,.95)}
    .news-item:nth-child(3) .news-k{background: rgba(34,197,94,.10); border-color: rgba(34,197,94,.20); color: rgba(34,197,94,.95)}
    .news-item:nth-child(4) .news-k{background: rgba(124,58,237,.10); border-color: rgba(124,58,237,.20); color: rgba(124,58,237,.95)}
    .news-item:nth-child(5) .news-k{background: rgba(255,166,0,.12); border-color: rgba(255,166,0,.24); color: rgba(180,83,9,.95)}
    .news-t{font-weight:1100; letter-spacing:-.2px; font-size:15px}
    .news-d{color: rgba(20,30,45,.66); font-weight:800; font-size:13px}
    .news-side .panel-card{border-radius: var(--radius2); background: rgba(255,255,255,.78); border:1px solid rgba(20,30,45,.08); box-shadow: 0 14px 35px rgba(16,24,40,.06); padding:18px}

    .tagcloud{display:flex; flex-wrap:wrap; gap:10px}
    .taglink{
      padding:9px 11px;
      border-radius:999px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.60);
      font-weight:1000; font-size:13px;
      color: rgba(17,24,39,.86);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .taglink:hover{transform: translateY(-2px); border-color: rgba(124,58,237,.22); background: rgba(124,58,237,.06)}
    .friend-note{color: rgba(20,30,45,.70); font-weight:820; line-height:1.7; font-size:13px}
    .inline-link{color: rgba(255,61,110,.95); font-weight:1000; text-decoration:underline; text-decoration-color: rgba(255,61,110,.35)}

    .contact-grid{display:grid; grid-template-columns: .95fr 1.05fr; gap:14px; align-items:start}
    .contact-card{
      border-radius: var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,30,45,.08);
      box-shadow: 0 14px 35px rgba(16,24,40,.06);
      padding:18px;
    }
    .contact-title h3{margin:0}
    .contact-title{display:flex; flex-direction:column; gap:10px}
    .contact-methods{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .method-row{display:flex; gap:12px; align-items:center; padding:12px; border-radius:16px; border:1px solid rgba(20,30,45,.08); background: rgba(255,255,255,.55)}
    .method-icon{width:42px; height:42px; border-radius:16px; display:flex; align-items:center; justify-content:center; background: rgba(59,130,246,.10); border:1px solid rgba(59,130,246,.20); font-size:18px}
    .method-row:nth-child(2) .method-icon{background: rgba(255,61,110,.10); border-color: rgba(255,61,110,.20)}
    .method-row:nth-child(3) .method-icon{background: rgba(124,58,237,.10); border-color: rgba(124,58,237,.20)}
    .method-row:nth-child(4) .method-icon{background: rgba(34,197,94,.10); border-color: rgba(34,197,94,.20)}
    .method-k{font-weight:1000; color: rgba(17,24,39,.88); font-size:13px}
    .method-v{margin-top:4px; font-weight:950; color: rgba(17,24,39,.90); font-size:13px; display:inline-block}
    .contact-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}
    .qr-block{margin-top:16px; padding-top:14px; border-top:1px dashed rgba(20,30,45,.14)}
    .qr-title{font-weight:1100}
    .qr-wrap{
      margin-top:12px;
      width:180px; max-width:100%;
      border-radius:18px;
      padding:12px;
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,30,45,.08);
      box-shadow: 0 14px 30px rgba(16,24,40,.06);
    }
    .qr-img{width:100%; height:auto; display:block; border-radius:14px}
    .qr-note{margin-top:10px; color: rgba(20,30,45,.66); font-weight:820; line-height:1.6; font-size:13px}

    .contact-form .panel-title{font-weight:1100}
    .contact-form{
      border-radius: var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,30,45,.08);
      box-shadow: 0 14px 35px rgba(16,24,40,.06);
      padding:18px;
    }
    .contact-right{display:flex; flex-direction:column; gap:14px}
    .client-logos{
      border-radius: var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,30,45,.08);
      box-shadow: 0 14px 35px rgba(16,24,40,.06);
      padding:18px;
    }
    .client-title{font-weight:1100; font-size:14px}
    .logo-row{margin-top:12px; display:flex; flex-wrap:wrap; gap:10px}
    .logo-pill{
      padding:9px 11px;
      border-radius:999px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.60);
      font-weight:1000; font-size:13px;
      color: rgba(17,24,39,.86);
    }
    .client-note{margin-top:12px; color: rgba(20,30,45,.66); font-weight:820; line-height:1.7; font-size:13px}

    .section-join{background: radial-gradient(820px 360px at 10% 0%, rgba(255,61,110,.10), transparent 58%); }
    .join-grid{display:grid; grid-template-columns: 1fr .9fr; gap:14px}
    .join-card{
      border-radius: var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,30,45,.08);
      box-shadow: 0 14px 35px rgba(16,24,40,.06);
      padding:18px;
      overflow:hidden;
      position:relative;
    }
    .join-card::after{
      content:"";
      position:absolute; left:-130px; bottom:-190px; width:360px; height:360px;
      background: radial-gradient(closest-side, rgba(255,61,110,.16), transparent 70%);
      pointer-events:none;
    }
    .join-card h3{margin:0 0 12px; font-size:16px; position:relative}
    .join-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; position:relative}
    .join-side .panel-card{border-radius: var(--radius2); background: rgba(255,255,255,.78); border:1px solid rgba(20,30,45,.08); box-shadow: 0 14px 35px rgba(16,24,40,.06); padding:18px}
    .friend-links{display:flex; flex-wrap:wrap; gap:10px}
    .friend-links a{
      padding:9px 11px;
      border-radius:999px;
      border:1px solid rgba(20,30,45,.10);
      background: rgba(255,255,255,.60);
      font-weight:1000; font-size:13px;
      color: rgba(17,24,39,.86);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .friend-links a:hover{transform: translateY(-2px); border-color: rgba(255,61,110,.22); background: rgba(255,61,110,.06)}
    .partner-subsection{margin-top:14px}
    .partner-note{color: rgba(20,30,45,.66); font-weight:820; line-height:1.7; font-size:13px; margin-bottom:12px}
    .partner-grid{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px}
    .partner-item{
      border-radius: var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,30,45,.08);
      box-shadow: 0 12px 26px rgba(16,24,40,.05);
      padding:18px;
    }
    .partner-num{
      width:34px; height:34px;
      border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(59,130,246,.10);
      border:1px solid rgba(59,130,246,.20);
      font-weight:1100;
      color: rgba(59,130,246,.95);
      margin-bottom:10px;
    }
    .partner-item:nth-child(2) .partner-num{background: rgba(255,61,110,.10); border-color: rgba(255,61,110,.20); color: rgba(255,61,110,.95)}
    .partner-item:nth-child(3) .partner-num{background: rgba(34,197,94,.10); border-color: rgba(34,197,94,.20); color: rgba(34,197,94,.95)}
    .partner-title{font-weight:1100; font-size:15px; letter-spacing:-.2px}
    .partner-desc{margin-top:8px; color: rgba(20,30,45,.70); font-weight:820; line-height:1.7; font-size:13px}

    .review-grid{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px}
    .review-card{
      border-radius: var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,30,45,.08);
      box-shadow: 0 12px 26px rgba(16,24,40,.05);
      padding:18px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height:220px;
      display:flex; flex-direction:column;
    }
    .review-card:hover{transform: translateY(-4px); box-shadow: var(--shadow2); border-color: rgba(255,61,110,.20)}
    .review-top{display:flex; gap:12px; align-items:flex-start}
    .avatar{
      width:44px; height:44px; border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,61,110,.10);
      border:1px solid rgba(255,61,110,.20);
      font-weight:1100; color: rgba(255,61,110,.95);
      flex:0 0 auto;
    }
    .review-card:nth-child(2) .avatar{background: rgba(59,130,246,.10); border-color: rgba(59,130,246,.20); color: rgba(59,130,246,.95)}
    .review-card:nth-child(3) .avatar{background: rgba(34,197,94,.10); border-color: rgba(34,197,94,.20); color: rgba(34,197,94,.95)}
    .review-card:nth-child(4) .avatar{background: rgba(124,58,237,.10); border-color: rgba(124,58,237,.20); color: rgba(124,58,237,.95)}
    .review-card:nth-child(5) .avatar{background: rgba(255,166,0,.12); border-color: rgba(255,166,0,.24); color: rgba(180,83,9,.95)}
    .review-card:nth-child(6) .avatar{background: rgba(14,165,233,.10); border-color: rgba(14,165,233,.22); color: rgba(14,165,233,.95)}
    .review-name{font-weight:1100}
    .review-tag{margin-top:6px; color: rgba(20,30,45,.62); font-weight:800; font-size:12px}
    .review-score{margin-left:auto; color: rgba(255,61,110,.95); font-weight:1100}
    .review-text{margin:12px 0 0; color: rgba(20,30,45,.70); font-weight:820; line-height:1.8; font-size:13px}

    .footer{
      background: #0b1220;
      color: rgba(255,255,255,.92);
      border-top:1px solid rgba(255,255,255,.08);
      padding:40px 0 22px;
    }
    .footer-inner{max-width:var(--container); margin:0 auto; padding:0 18px}
    .footer-top{display:grid; grid-template-columns: 1.15fr .85fr; gap:18px; align-items:start}
    .footer-brand{background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.10); border-radius: var(--radius2); padding:18px}
    .footer-logo-img{width:150px; height:auto; display:block}
    .footer-desc{margin-top:12px; color: rgba(255,255,255,.74); line-height:1.7; font-weight:750; font-size:13px}
    .footer-quick{margin-top:14px; display:flex; flex-wrap:wrap; gap:10px}
    .footer-link{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      color: rgba(255,255,255,.88);
      font-weight:900; font-size:13px;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .footer-link:hover{transform: translateY(-2px); border-color: rgba(255,61,110,.35); background: rgba(255,61,110,.10)}
    .footer-cta{
      background: rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.10);
      border-radius: var(--radius2);
      padding:18px;
    }
    .footer-cta-title{font-weight:1100; font-size:16px; margin-bottom:12px}
    .footer-cta-buttons{display:flex; gap:10px; flex-wrap:wrap}
    .footer-contact{margin-top:14px}
    .footer-contact-row{display:flex; gap:12px; padding:10px 0; border-top:1px dashed rgba(255,255,255,.14)}
    .footer-contact-row:first-child{border-top:none}
    .footer-contact-k{width:64px; color: rgba(255,255,255,.65); font-weight:900; font-size:13px}
    .footer-contact-v{flex:1; color: rgba(255,255,255,.92); font-weight:850; font-size:13px; line-height:1.6}
    .footer-contact-v a{color: rgba(255,255,255,.92); text-decoration:underline; text-decoration-color: rgba(255,255,255,.25)}
    .footer-friends{display:flex; flex-wrap:wrap; gap:10px}
    .footer-bottom{margin-top:18px; display:flex; justify-content:space-between; align-items:center; gap:12px}
    .copyright{color: rgba(255,255,255,.68); font-weight:850; font-size:12px}
    .backtop-btn{
      background: rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.14);
      color: rgba(255,255,255,.92);
      padding:10px 12px;
      border-radius:14px;
      font-weight:1000;
      cursor:pointer;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .backtop-btn:hover{transform: translateY(-2px); border-color: rgba(255,61,110,.35); background: rgba(255,61,110,.12)}

    .float-chat{
      position:fixed; right:16px; bottom:18px; z-index:60;
      background: linear-gradient(135deg, var(--brand), #ff6a2a);
      color:#fff;
      border-radius:999px;
      padding:12px 14px;
      box-shadow: 0 16px 40px rgba(255,61,110,.28);
      border:1px solid rgba(255,255,255,.18);
      display:flex; align-items:center; gap:10px;
      transform: translateY(0);
      transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
      cursor:pointer;
    }
    .float-chat:hover{transform: translateY(-3px); box-shadow: 0 22px 55px rgba(255,61,110,.34)}
    .float-dot{width:10px; height:10px; border-radius:50%; background: rgba(255,255,255,.95); box-shadow: 0 0 0 6px rgba(255,255,255,.18)}
    .float-text{font-weight:1100}

    .toast{
      position:fixed; left:50%; bottom:22px; transform: translateX(-50%);
      background: rgba(17,24,39,.92);
      color:#fff;
      padding:10px 12px;
      border-radius:14px;
      box-shadow: 0 18px 45px rgba(0,0,0,.25);
      opacity:0; pointer-events:none;
      transition: opacity .25s ease, transform .25s ease;
      font-weight:900; font-size:13px;
      z-index:80;
    }
    .toast.show{opacity:1; transform: translateX(-50%) translateY(-6px)}

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .hero-side{display:none}
      .hero-copy{padding:18px}
      .hero-title{font-size:28px}
      .hero-metrics{grid-template-columns: 1fr; }
      .services-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
      .about-grid{grid-template-columns: 1fr}
      .logos-strip{grid-template-columns: repeat(2, minmax(0,1fr))}
      .timeline-wrap{grid-template-columns: 1fr}
      .solutions-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
      .network-grid{grid-template-columns: 1fr}
      .process-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
      .case-grid{grid-template-columns: 1fr}
      .article-list{grid-template-columns: 1fr}
      .compare-grid{grid-template-columns: 1fr}
      .match-grid{grid-template-columns: 1fr}
      .section-token .token-grid{grid-template-columns: 1fr}
      .training-grid{grid-template-columns: 1fr}
      .help-grid{grid-template-columns: 1fr}
      .wiki-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
      .news-grid{grid-template-columns: 1fr}
      .review-grid{grid-template-columns: 1fr}
      .footer-top{grid-template-columns: 1fr}
      .join-grid{grid-template-columns: 1fr}
      .partner-grid{grid-template-columns: 1fr}
      .nav-toggle{display:inline-flex}
      .nav-panel{
        display:none;
        width:100%;
        margin-top:12px;
        padding:12px;
        border-radius:18px;
        border:1px solid rgba(20,30,45,.10);
        background: rgba(255,255,255,.85);
        box-shadow: var(--shadow);
      }
      .nav-panel.open{display:flex; flex-direction:column; align-items:flex-start; gap:6px}
      .topbar-inner{flex-wrap:wrap}
      .nav{order:3; width:100%}
      .top-actions{order:2; min-width:auto}
      .nav-toggle{
        display:inline-flex; align-items:center; gap:10px;
        padding:10px 12px; border-radius:14px;
        border:1px solid rgba(20,30,45,.12);
        background: rgba(255,255,255,.7);
        font-weight:1000; color: rgba(17,24,39,.92);
        cursor:pointer;
      }
      .nav-toggle-icon{
        width:18px; height:12px; position:relative; display:block;
      }
      .nav-toggle-icon::before, .nav-toggle-icon::after{
        content:""; position:absolute; left:0; right:0; height:2px; border-radius:2px;
        background: rgba(17,24,39,.85);
      }
      .nav-toggle-icon::before{top:0}
      .nav-toggle-icon::after{bottom:0}
      .nav-toggle-icon span{display:none}
    }
    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .pulse-ring, .hero-copy, .side-panel{animation:none !important}
    }