:root{
      --bg:#f7f8fb;
      --panel:#ffffff;
      --text:#1b1f2a;
      --muted:#5b6475;
      --muted2:#7b8598;
      --line:rgba(20,26,38,.10);
      --shadow: 0 16px 40px rgba(16,24,40,.12);
      --shadow2: 0 10px 30px rgba(16,24,40,.10);
      --primary:#155eec;
      --primary2:#0b45c7;
      --accent:#16a34a;
      --warn:#f59e0b;
      --radius:18px;
      --radius2:26px;
      --container: 1140px;
      --pad: 22px;
      --focus: rgba(21,94,236,.25);
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "PingFang SC","Hiragino Sans GB","Microsoft YaHei", sans-serif;
      background: radial-gradient(1200px 650px at 20% -10%, rgba(21,94,236,.14), transparent 55%),
                  radial-gradient(900px 520px at 90% 10%, rgba(22,163,74,.10), transparent 50%),
                  linear-gradient(180deg, #f6f7fb, #f9fafc 40%, #f6f7fb);
      color:var(--text);
      overflow-x:hidden;
    }

    .sr-only-focusable{
      position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .sr-only-focusable:focus{
      left:16px; top:16px; width:auto; height:auto; padding:10px 12px;
      background:var(--panel); border:1px solid var(--line); border-radius:12px; z-index:9999;
    }

    .container{
      max-width: var(--container);
      margin:0 auto;
      padding: 0 var(--pad);
    }

    .site-header{
      position:sticky; top:0; z-index:50;
      background: rgba(246,247,251,.72);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(20,26,38,.07);
    }
    .header-inner{
      display:flex; align-items:center; justify-content:space-between;
      gap:18px; padding: 14px 0;
    }
    .brand{display:flex; align-items:center; gap:12px; min-width: 240px;}
    .ai-page-logo{
      width:42px; height:auto; border-radius:12px;
      box-shadow: 0 10px 28px rgba(21,94,236,.18);
      background: #fff;
    }
    .brand-text{display:flex; flex-direction:column; line-height:1.1}
    .brand-name{font-weight:820; letter-spacing:.2px}
    .brand-sub{font-size:12px; color:var(--muted); margin-top:4px}

    .nav-desktop{
      display:flex; gap:16px; align-items:center; flex-wrap:nowrap;
      overflow:hidden;
    }
    .nav-link{
      text-decoration:none; color: rgba(27,31,42,.86);
      font-size:13px; padding:10px 10px; border-radius:12px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .nav-link:hover{
      background: rgba(21,94,236,.08);
      color: var(--primary);
      transform: translateY(-1px);
    }

    .header-ctas{display:flex; align-items:center; gap:12px}
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      border-radius:14px;
      padding: 11px 14px;
      text-decoration:none;
      font-weight:720;
      font-size:14px;
      border:1px solid transparent;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      cursor:pointer;
      user-select:none;
      white-space:nowrap;
    }
    .btn-lg{padding: 13px 18px; font-size:15px; border-radius:16px}
    .btn-wide{width:100%}
    .btn-small{padding:9px 12px; font-size:13px; border-radius:12px}
    .btn-primary{
      background: linear-gradient(180deg, #1b66ff, #155eec);
      color:#fff;
      border-color: rgba(21,94,236,.25);
      box-shadow: 0 18px 45px rgba(21,94,236,.22);
    }
    .btn-primary:hover{transform: translateY(-1px); box-shadow: 0 22px 60px rgba(21,94,236,.28)}
    .btn-primary:active{transform: translateY(0px); box-shadow: 0 14px 40px rgba(21,94,236,.22)}
    .btn-ghost{
      background: rgba(255,255,255,.65);
      color: rgba(27,31,42,.92);
      border-color: rgba(20,26,38,.12);
      box-shadow: 0 12px 28px rgba(16,24,40,.07);
    }
    .btn-ghost:hover{
      transform: translateY(-1px);
      border-color: rgba(21,94,236,.28);
      background: rgba(255,255,255,.82);
      box-shadow: 0 18px 40px rgba(16,24,40,.10);
    }

    .icon-btn{
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(20,26,38,.12);
      background: rgba(255,255,255,.7);
      display:inline-flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .15s ease, background .2s ease, border-color .2s ease;
    }
    .icon-btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.9); border-color: rgba(21,94,236,.25)}
    .icon-lines{
      width:18px; height:12px; position:relative;
    }
    .icon-lines::before,.icon-lines::after{
      content:""; position:absolute; left:0; right:0;
      height:2px; background: rgba(27,31,42,.85); border-radius:2px;
      transition: transform .2s ease;
    }
    .icon-lines::before{top:0}
    .icon-lines::after{bottom:0}
    .icon-lines{
      background: linear-gradient(180deg, rgba(27,31,42,.85), rgba(27,31,42,.85));
      background-size: 100% 2px;
      background-repeat:no-repeat;
      background-position:center;
    }
    .icon-x{
      width:18px; height:18px; position:relative;
    }
    .icon-x::before,.icon-x::after{
      content:""; position:absolute; left:50%; top:50%;
      width:18px; height:2px; background: rgba(27,31,42,.85); border-radius:2px;
      transform-origin:center;
    }
    .icon-x::before{transform: translate(-50%,-50%) rotate(45deg)}
    .icon-x::after{transform: translate(-50%,-50%) rotate(-45deg)}

    .mobile-nav{display:none}
    .mobile-nav.open{display:block}
    @media (max-width: 980px){
      .nav-desktop{display:none}
      .mobile-nav{display:block; position:fixed; inset:0; z-index:60; background: rgba(12,16,26,.35); backdrop-filter: blur(6px);}
      .mobile-nav-inner{
        margin: 14px auto 18px;
        max-width: 560px;
        background: rgba(255,255,255,.92);
        border:1px solid rgba(20,26,38,.10);
        border-radius: 22px;
        padding: 14px;
        box-shadow: var(--shadow);
      }
      .mobile-top{display:flex; justify-content:space-between; align-items:center; padding: 4px 6px 10px}
      .mobile-title{font-weight:850}
      .close{background: rgba(255,255,255,.9)}
      .mobile-links{display:flex; flex-wrap:wrap; gap:10px; padding: 6px}
      .mobile-link{
        text-decoration:none;
        color: rgba(27,31,42,.92);
        padding:10px 12px;
        border-radius: 14px;
        border:1px solid rgba(20,26,38,.10);
        background: rgba(255,255,255,.7);
        font-size:13px;
      }
      .mobile-link:active{transform: translateY(1px)}
      .mobile-ctas{display:flex; flex-direction:column; gap:10px; padding: 10px 6px 6px}
    }
    body.no-scroll{overflow:hidden}

    .sr-only{position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap}

    .hero{
      position:relative;
      padding: 42px 0 24px;
    }
    .hero-bg{
      position:absolute; inset:-40px 0 auto 0; height: 540px;
      background:
        radial-gradient(700px 360px at 18% 30%, rgba(21,94,236,.24), transparent 58%),
        radial-gradient(520px 300px at 82% 16%, rgba(22,163,74,.18), transparent 55%),
        linear-gradient(180deg, rgba(21,94,236,.10), transparent 60%);
      pointer-events:none;
    }
    .hero-inner{
      display:flex; gap:22px; align-items:stretch; justify-content:space-between;
      position:relative;
      padding-bottom: 18px;
    }
    .hero-left{flex: 1.2; min-width: 320px;}
    .hero-right{flex: .9; min-width: 320px; display:flex; flex-direction:column; gap:14px; align-items:stretch}

    .pill-row{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:14px}
    .pill{
      font-size:12px; font-weight:730; color: rgba(21,94,236,.95);
      background: rgba(21,94,236,.10);
      border:1px solid rgba(21,94,236,.18);
      padding:7px 10px; border-radius: 999px;
    }
    .pill-soft{
      color: rgba(27,31,42,.88);
      background: rgba(255,255,255,.55);
      border-color: rgba(20,26,38,.12);
    }

    .hero-title{
      font-size: clamp(28px, 3.3vw, 44px);
      line-height:1.07;
      letter-spacing: -0.6px;
      margin: 0 0 12px;
      font-weight: 920;
    }
    .hero-desc{
      margin:0 0 18px;
      color: rgba(27,31,42,.78);
      font-size: 15px;
      line-height: 1.7;
      max-width: 720px;
    }
    .hero-ctas{display:flex; gap:12px; flex-wrap:wrap; align-items:center; margin-bottom: 12px}
    .hero-meta{margin-top: 10px}
    .meta-item{
      border:1px solid rgba(20,26,38,.10);
      background: rgba(255,255,255,.65);
      border-radius: 16px;
      padding: 12px 14px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
    }
    .meta-k{font-size:12px; color: var(--muted2); font-weight:720}
    .meta-v{margin-top:6px; font-size:13px; color: rgba(27,31,42,.86)}

    .glass-card{
      background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.55));
      border: 1px solid rgba(20,26,38,.10);
      border-radius: var(--radius2);
      padding: 16px 16px 14px;
      box-shadow: var(--shadow2);
      position:relative;
      overflow:hidden;
      animation: floatIn .7s ease both;
    }
    @keyframes floatIn{
      from{opacity:0; transform: translateY(10px)}
      to{opacity:1; transform: translateY(0)}
    }
    .glass-card::after{
      content:""; position:absolute; inset:-2px -2px auto -2px; height:140px;
      background: radial-gradient(260px 120px at 20% 20%, rgba(21,94,236,.25), transparent 55%),
                  radial-gradient(260px 140px at 80% 10%, rgba(22,163,74,.16), transparent 60%);
      pointer-events:none;
      opacity:.9;
    }
    .card-head{display:flex; justify-content:space-between; align-items:flex-start; gap:10px; position:relative}
    .card-badge{display:flex; align-items:center; gap:10px; font-weight:850}
    .dot{
      width:10px; height:10px; border-radius:999px;
      background: linear-gradient(180deg, #1b66ff, #155eec);
      box-shadow: 0 0 0 6px rgba(21,94,236,.12);
    }
    .chip{
      font-size:12px; color: rgba(27,31,42,.78);
      padding: 7px 10px; border-radius: 999px;
      border:1px solid rgba(20,26,38,.10);
      background: rgba(255,255,255,.62);
      white-space:nowrap;
    }

    .metrics{
      margin-top: 12px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      position:relative;
    }
    .metric{
      border:1px solid rgba(20,26,38,.09);
      background: rgba(255,255,255,.55);
      border-radius: 16px;
      padding: 12px;
    }
    .metric-num{
      font-weight: 950;
      font-size: 22px;
      letter-spacing: -0.4px;
    }
    .metric-label{
      margin-top: 6px;
      font-size: 12px;
      color: var(--muted);
      font-weight: 720;
    }

    .card-row{display:grid; grid-template-columns: 1fr; gap:10px; margin-top: 12px; position:relative}
    @media (min-width: 980px){
      .card-row{grid-template-columns: 1fr 1fr 1fr;}
    }
    .quick-item{
      display:flex; gap:10px; align-items:flex-start;
      padding: 10px 12px;
      border-radius: 16px;
      border:1px solid rgba(20,26,38,.09);
      background: rgba(255,255,255,.52);
      transition: transform .18s ease, box-shadow .2s ease;
    }
    .quick-item:hover{transform: translateY(-2px); box-shadow: 0 16px 40px rgba(16,24,40,.10)}
    .quick-icon{color: rgba(21,94,236,.95); margin-top: 2px}
    .quick-title{font-weight:900; font-size:13px}
    .quick-sub{margin-top:4px; font-size:12px; color: var(--muted)}

    .card-foot{margin-top: 12px; position:relative}
    .link-inline{
      display:inline-flex; align-items:center; gap:10px;
      text-decoration:none;
      color: rgba(21,94,236,.98);
      font-weight: 840;
      font-size: 13px;
      padding: 8px 10px;
      border-radius: 12px;
      border:1px solid rgba(21,94,236,.18);
      background: rgba(21,94,236,.07);
      transition: transform .15s ease, background .2s ease;
    }
    .link-inline:hover{transform: translateY(-1px); background: rgba(21,94,236,.10)}
    .arrow{font-weight:900}

    .data-strip{
      border:1px solid rgba(20,26,38,.10);
      background: rgba(255,255,255,.72);
      border-radius: var(--radius2);
      padding: 12px 12px;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      box-shadow: 0 18px 45px rgba(16,24,40,.08);
    }
    .strip-item{display:flex; flex-direction:column; gap:4px}
    .strip-title{font-weight:920}
    .strip-sub{font-size:12px; color: var(--muted)}
    .btn-accent{
      background: linear-gradient(180deg, rgba(22,163,74,.95), rgba(16,118,52,.95));
      color:#fff;
      border-color: rgba(22,163,74,.28);
      box-shadow: 0 18px 45px rgba(16,118,52,.16);
    }
    .btn-accent:hover{box-shadow: 0 22px 60px rgba(16,118,52,.22)}

    @media (max-width: 980px){
      .hero-inner{flex-direction:column}
      .hero-right{min-width:unset}
      .glass-card{padding: 14px}
      .metrics{grid-template-columns: 1fr 1fr}
      .card-row{grid-template-columns: 1fr}
      .hero{padding-top: 26px}
    }

    .section{padding: 56px 0}
    .section-soft{background: linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.55));}
    .section-head{margin-bottom: 22px}
    .kicker{
      font-weight: 900;
      color: rgba(21,94,236,.95);
      letter-spacing:.2px;
      font-size: 13px;
      text-transform: none;
      display:inline-flex;
      align-items:center;
      gap:10px;
    }
    .kicker::before{
      content:"";
      width:10px; height:10px; border-radius:3px;
      background: linear-gradient(180deg, #1b66ff, #155eec);
      box-shadow: 0 0 0 6px rgba(21,94,236,.12);
      display:inline-block;
    }
    .h2{
      margin: 10px 0 10px;
      font-size: clamp(22px, 2.3vw, 30px);
      line-height:1.2;
      letter-spacing:-.35px;
      font-weight: 950;
    }
    .h3{
      margin: 0;
      font-size: 16px;
      font-weight: 920;
      letter-spacing:-.2px;
    }
    .muted{color: var(--muted); margin:0; line-height:1.7}

    .platform-intro{
      border:1px solid rgba(20,26,38,.10);
      background: rgba(255,255,255,.70);
      border-radius: 26px;
      box-shadow: var(--shadow2);
      padding: 18px;
    }
    .intro-grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:18px; align-items:start}
    @media (max-width: 980px){ .intro-grid{grid-template-columns: 1fr;}}

    .intro-left{
      border-radius: 22px;
      padding: 12px 12px 4px;
      background: rgba(255,255,255,.35);
    }
    .intro-title{font-weight: 950; font-size: 18px; margin: 4px 0 10px}
    .intro-list{list-style:none; padding:0; margin:0; display:grid; gap:10px}
    .intro-list li{
      display:flex; gap:10px; align-items:flex-start;
      color: rgba(27,31,42,.85);
      font-size: 13.5px;
      line-height:1.55;
    }
    .check{color: rgba(22,163,74,.95); font-weight: 950; margin-top:1px}
    .intro-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top: 16px}

    .intro-right{display:flex; flex-direction:column; gap:14px}
    .side-card{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,26,38,.10);
      border-radius: 22px;
      padding: 14px;
      box-shadow: 0 16px 40px rgba(16,24,40,.08);
    }
    .side-card-top{display:flex; flex-direction:column; gap:6px}
    .side-title{font-weight: 950; font-size: 16px}
    .side-desc{color: var(--muted); font-size:13px; line-height:1.6}
    .tags{display:flex; flex-wrap:wrap; gap:10px; margin-top: 12px}
    .tag{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius: 999px;
      border:1px solid rgba(20,26,38,.10);
      background: rgba(255,255,255,.55);
      color: rgba(27,31,42,.86);
      font-size: 12.5px;
      font-weight: 780;
      white-space:nowrap;
    }
    .tag-solid{
      background: rgba(21,94,236,.08);
      border-color: rgba(21,94,236,.18);
      color: rgba(21,94,236,.95);
    }
    .divider{height:1px; background: rgba(20,26,38,.10); margin: 14px 0}
    .side-card-bottom{display:grid; gap:12px}
    .side-mini{display:flex; flex-direction:column; gap:6px}
    .mini-k{font-size:12px; color: var(--muted2); font-weight: 820}
    .mini-v{font-size:13.5px; color: rgba(27,31,42,.86); line-height:1.55}

    .mini-cards{display:grid; gap:12px; grid-template-columns: 1fr 1fr}
    @media (max-width: 980px){ .mini-cards{grid-template-columns:1fr 1fr;} }
    .mini-card{
      border:1px solid rgba(20,26,38,.10);
      background: rgba(255,255,255,.58);
      border-radius: 20px;
      padding: 12px;
      display:flex; gap:10px; align-items:flex-start;
      box-shadow: 0 16px 40px rgba(16,24,40,.06);
      transition: transform .18s ease, box-shadow .2s ease;
    }
    .mini-card:hover{transform: translateY(-2px); box-shadow: 0 22px 55px rgba(16,24,40,.10)}
    .mini-icon{color: rgba(21,94,236,.95); margin-top:2px}
    .mini-title{font-weight: 950; font-size: 13.5px}
    .mini-sub{margin-top:4px; font-size: 12.5px; color: var(--muted); line-height:1.55}

    .cap-grid{
      display:grid; gap:14px;
      grid-template-columns: repeat(3, 1fr);
    }
    @media (max-width: 980px){
      .cap-grid{grid-template-columns: 1fr;}
    }
    .cap-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,38,.10);
      border-radius: 22px;
      padding: 16px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
      transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
      position:relative;
      overflow:hidden;
    }
    .cap-card::after{
      content:""; position:absolute; inset:-1px -1px auto -1px; height: 92px;
      background: radial-gradient(220px 90px at 20% 20%, rgba(21,94,236,.20), transparent 60%),
                  radial-gradient(200px 90px at 85% 0%, rgba(22,163,74,.14), transparent 60%);
      opacity: .55;
      pointer-events:none;
    }
    .cap-card:hover{transform: translateY(-4px); box-shadow: 0 26px 68px rgba(16,24,40,.12); border-color: rgba(21,94,236,.22)}
    .cap-top{display:flex; align-items:center; justify-content:space-between; gap:10px; position:relative}
    .cap-icon{color: rgba(21,94,236,.95)}
    .cap-desc{margin:10px 0 14px; color: rgba(27,31,42,.80); line-height:1.7; font-size:13.5px; position:relative}
    .cap-foot{position:relative}

    .cap-accent{
      border-color: rgba(21,94,236,.18);
      background: linear-gradient(180deg, rgba(21,94,236,.08), rgba(255,255,255,.74));
    }

    .steps{
      display:grid; grid-template-columns: 1fr 26px 1fr 26px 1fr 26px 1fr;
      gap:14px;
      align-items:stretch;
    }
    @media (max-width: 980px){
      .steps{grid-template-columns: 1fr; gap:12px;}
      .step-connector{display:none;}
    }
    .step-card{
      border:1px solid rgba(20,26,38,.10);
      background: rgba(255,255,255,.72);
      border-radius: 22px;
      padding: 16px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
      position:relative;
      overflow:hidden;
      transition: transform .18s ease, box-shadow .2s ease;
    }
    .step-card:hover{transform: translateY(-3px); box-shadow: 0 26px 68px rgba(16,24,40,.12)}
    .step-num{
      font-weight: 980;
      color: rgba(21,94,236,.98);
      letter-spacing:-.4px;
      font-size: 22px;
      margin-bottom: 8px;
    }
    .step-title{font-weight: 980; font-size: 16px; margin-bottom: 6px}
    .step-desc{color: rgba(27,31,42,.80); line-height:1.7; font-size:13.5px; margin-bottom: 10px}
    .step-tags{font-size:12.5px; color: var(--muted); display:flex; flex-wrap:wrap; gap:8px}
    .step-tags::before{content:""; display:block}
    .step-connector{
      background: linear-gradient(180deg, rgba(21,94,236,.20), rgba(22,163,74,.10));
      border-radius: 12px;
      position:relative;
      overflow:hidden;
    }
    .step-connector::after{
      content:""; position:absolute; inset:0;
      background: linear-gradient(180deg, transparent, rgba(21,94,236,.35), transparent);
      animation: scan 2.2s ease-in-out infinite;
      opacity:.55;
    }
    @keyframes scan{
      0%{transform: translateY(-40%);}
      50%{transform: translateY(40%);}
      100%{transform: translateY(-40%);}
    }

    .callout-row{
      display:flex; justify-content:space-between; align-items:center; gap:14px; margin-top: 18px;
      border:1px solid rgba(20,26,38,.10);
      background: rgba(255,255,255,.72);
      border-radius: 24px;
      padding: 16px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
    }
    @media (max-width: 980px){
      .callout-row{flex-direction:column; align-items:flex-start}
    }
    .callout-title{font-weight: 980; font-size: 16px}
    .callout-desc{margin-top:6px; color: var(--muted); line-height:1.6}
    .solution-grid{
      display:grid; grid-template-columns: 1fr 1fr 1fr; gap:14px;
    }
    @media (max-width: 980px){ .solution-grid{grid-template-columns:1fr} }
    .solution-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,38,.10);
      border-radius: 22px;
      padding: 16px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
    }
    .checklist{list-style:none; padding:0; margin:10px 0 14px; display:grid; gap:10px}
    .checklist li{
      display:flex; gap:10px; align-items:flex-start;
      color: rgba(27,31,42,.82);
      font-size:13.5px;
      line-height:1.6;
    }
    .checklist.compact{gap:8px}
    .link-inline{margin-top:4px}
    .network-grid{display:grid; grid-template-columns: 1.05fr .95fr; gap:14px; align-items:stretch}
    @media (max-width: 980px){ .network-grid{grid-template-columns:1fr} }
    .network-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,38,.10);
      border-radius: 24px;
      padding: 16px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
    }
    .network-card-right{background: linear-gradient(180deg, rgba(21,94,236,.06), rgba(255,255,255,.72))}
    .network-title{font-weight:980; font-size:16px; margin-bottom: 12px}
    .timeline{display:grid; gap:12px}
    .timeline-item{display:flex; gap:12px; align-items:flex-start}
    .tl-dot{
      width:12px; height:12px; border-radius: 4px;
      background: linear-gradient(180deg, #1b66ff, #155eec);
      box-shadow: 0 0 0 6px rgba(21,94,236,.12);
      margin-top: 6px;
      flex: 0 0 auto;
    }
    .tl-top{display:flex; justify-content:space-between; gap:12px; align-items:baseline}
    .tl-k{font-weight: 950}
    .tl-time{font-size:12px; color: var(--muted2); font-weight: 820}
    .tl-desc{margin-top:6px; color: rgba(27,31,42,.82); line-height:1.6; font-size:13.5px}

    .support-list{display:grid; gap:12px}
    .support-item{display:flex; gap:12px; align-items:flex-start; padding: 12px; border:1px solid rgba(20,26,38,.10); background: rgba(255,255,255,.56); border-radius: 18px}
    .support-icon{color: rgba(21,94,236,.95); margin-top:2px}
    .support-title{font-weight: 950}
    .support-desc{margin-top:6px; color: rgba(27,31,42,.80); font-size:13.5px; line-height:1.6}
    .network-cta{display:flex; gap:12px; flex-wrap:wrap; margin-top: 14px}

    .sop-grid{display:grid; grid-template-columns: 1fr 1fr; gap:14px; align-items:start}
    @media (max-width: 980px){ .sop-grid{grid-template-columns:1fr} }
    .sop-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,38,.10);
      border-radius: 24px;
      padding: 16px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
    }
    .sop-card-title{font-weight:980; margin-bottom: 12px; font-size:16px}
    .sop-list{display:grid; gap:12px}
    .sop-row{display:flex; gap:12px; align-items:flex-start; padding: 12px; border:1px solid rgba(20,26,38,.10); background: rgba(255,255,255,.55); border-radius: 18px}
    .sop-step{
      font-weight: 980; color: rgba(21,94,236,.95);
      width: 64px; flex: 0 0 auto;
    }
    .sop-label{font-weight: 980}
    .sop-desc{margin-top:6px; color: rgba(27,31,42,.80); font-size:13.5px; line-height:1.6}

    .sop-table-wrap{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,38,.10);
      border-radius: 24px;
      padding: 16px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
    }
    .sop-table-title{font-weight:980; margin-bottom: 12px; font-size:16px}
    .table-scroll{overflow:auto; border-radius:16px; border:1px solid rgba(20,26,38,.10); background: rgba(255,255,255,.60)}
    .compare-table{
      width: 100%;
      border-collapse: collapse;
      min-width: 620px;
      font-size: 13.5px;
      color: rgba(27,31,42,.86);
    }
    .compare-table th,.compare-table td{
      padding: 12px 12px;
      border-bottom: 1px solid rgba(20,26,38,.08);
      vertical-align: top;
      text-align:left;
    }
    .compare-table th{
      font-weight: 980;
      color: rgba(27,31,42,.92);
      background: rgba(21,94,236,.08);
    }
    .compare-table tr:last-child td{border-bottom:none}
    .compare-table-alt th{background: rgba(22,163,74,.08)}
    .badge{
      display:inline-flex; align-items:center; padding: 7px 10px;
      border-radius: 999px; font-weight: 900; font-size: 12.5px; border:1px solid rgba(20,26,38,.10);
      background: rgba(255,255,255,.6);
    }
    .badge-ok{color: rgba(22,163,74,.95); border-color: rgba(22,163,74,.25); background: rgba(22,163,74,.08)}
    .badge-warn{color: rgba(245,158,11,.98); border-color: rgba(245,158,11,.28); background: rgba(245,158,11,.08)}

    .sop-cta{
      margin-top: 14px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,38,.10);
      border-radius: 24px;
      padding: 16px;
      display:flex; justify-content:space-between; align-items:center; gap:14px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
    }
    @media (max-width: 980px){ .sop-cta{flex-direction:column; align-items:flex-start} }
    .sop-cta-title{font-weight:980; font-size:16px}
    .sop-cta-desc{margin-top:6px; color: var(--muted); line-height:1.6}

    .case-grid{
      display:grid; grid-template-columns: 1fr 1fr 1fr; gap:14px;
    }
    @media (max-width: 980px){ .case-grid{grid-template-columns:1fr} }
    .case-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,38,.10);
      border-radius: 24px;
      padding: 16px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
      transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
      position:relative;
      overflow:hidden;
    }
    .case-card::before{
      content:""; position:absolute; inset:-2px -2px auto -2px; height: 120px;
      background: radial-gradient(240px 100px at 18% 25%, rgba(21,94,236,.20), transparent 60%),
                  radial-gradient(220px 100px at 90% 0%, rgba(22,163,74,.14), transparent 60%);
      opacity:.55;
      pointer-events:none;
    }
    .case-card:hover{transform: translateY(-4px); box-shadow: 0 26px 68px rgba(16,24,40,.12); border-color: rgba(21,94,236,.22)}
    .case-top{display:flex; justify-content:space-between; align-items:center; gap:12px; position:relative}
    .case-badge{
      font-size:12.5px; font-weight: 950;
      padding: 7px 10px; border-radius: 999px;
      color: rgba(21,94,236,.96);
      background: rgba(21,94,236,.08);
      border:1px solid rgba(21,94,236,.20);
    }
    .case-score{font-size:12.5px; color: var(--muted2); font-weight: 850}
    .case-foot{margin-top: 14px; position:relative}
    .list-row{display:grid; grid-template-columns: 1.1fr .9fr; gap:14px; margin-top: 16px}
    @media (max-width: 980px){ .list-row{grid-template-columns:1fr} }

    .soft-box{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,38,.10);
      border-radius: 24px;
      padding: 16px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
    }
    .soft-title{font-weight:980; font-size:16px; margin-bottom: 12px}
    .article-list{display:grid; gap:12px}
    .article-item{
      display:flex; gap:12px; align-items:flex-start; justify-content:space-between;
      padding: 12px;
      border-radius: 18px;
      border:1px solid rgba(20,26,38,.10);
      background: rgba(255,255,255,.56);
      transition: transform .18s ease, box-shadow .2s ease;
    }
    .article-item:hover{transform: translateY(-2px); box-shadow: 0 22px 55px rgba(16,24,40,.09)}
    .article-dot{
      width:12px; height:12px; border-radius:4px;
      background: linear-gradient(180deg, #1b66ff, #155eec);
      box-shadow: 0 0 0 6px rgba(21,94,236,.12);
      margin-top: 6px;
      flex:0 0 auto;
    }
    .article-text{flex:1}
    .article-title{font-weight: 950; line-height:1.35}
    .article-meta{margin-top:6px; color: var(--muted); font-size:12.5px; line-height:1.5}
    .article-link{
      text-decoration:none;
      color: rgba(21,94,236,.98);
      font-weight: 900;
      border:1px solid rgba(21,94,236,.18);
      background: rgba(21,94,236,.07);
      padding: 9px 12px;
      border-radius: 14px;
      white-space:nowrap;
      height: fit-content;
      transition: transform .15s ease, background .2s ease;
    }
    .article-link:hover{transform: translateY(-1px); background: rgba(21,94,236,.10)}
    .quick-links{display:grid; gap:12px}
    .quick-link{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      text-decoration:none;
      color: rgba(27,31,42,.92);
      padding: 12px;
      border-radius: 18px;
      border:1px solid rgba(20,26,38,.10);
      background: rgba(255,255,255,.56);
      transition: transform .18s ease, box-shadow .2s ease;
    }
    .quick-link:hover{transform: translateY(-2px); box-shadow: 0 22px 55px rgba(16,24,40,.09)}
    .ql-icon{color: rgba(21,94,236,.95)}
    .note-title{font-weight: 950}
    .note-desc{margin-top: 6px; color: var(--muted); line-height:1.7; font-size:13.5px}

    .compare-wrap{
      display:grid; grid-template-columns: 1fr 1.1fr; gap:14px;
      align-items:stretch;
    }
    @media (max-width: 980px){ .compare-wrap{grid-template-columns:1fr} }
    .rating-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,38,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
    }
    .rating-top{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
    .rating-stars{color: rgba(245,158,11,.98); font-size: 20px; letter-spacing: -1px}
    .rating-num{font-weight: 980}
    .rating-main{font-size: 34px; line-height:1}
    .rating-unit{color: var(--muted); font-weight: 900; margin-left: 6px}
    .rating-desc{margin-top: 10px; color: rgba(27,31,42,.80); line-height:1.7}
    .rating-bullets{margin-top: 14px; display:grid; gap:10px}
    .rb-item{display:flex; gap:10px; align-items:flex-start; color: rgba(27,31,42,.86); font-size:13.5px; line-height:1.6}
    .rating-cta{display:flex; gap:12px; flex-wrap:wrap; margin-top: 16px}

    .compare-table-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,38,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
    }
    .compare-table-title{font-weight: 980; font-size:16px; margin-bottom: 12px}
    .compare-table-foot{margin-top: 14px}

    .match-grid{display:grid; grid-template-columns: 1fr 1fr; gap:14px; align-items:stretch}
    @media (max-width: 980px){ .match-grid{grid-template-columns:1fr} }
    .match-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,38,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
    }
    .match-card-right{background: linear-gradient(180deg, rgba(21,94,236,.06), rgba(255,255,255,.72))}
    .match-title{font-weight: 980; font-size:16px; margin-bottom: 12px}
    .match-flow{display:grid; gap:12px}
    .flow-row{
      display:flex; gap:12px; align-items:flex-start;
      padding: 12px;
      border-radius: 18px;
      border:1px solid rgba(20,26,38,.10);
      background: rgba(255,255,255,.55);
    }
    .flow-step{
      width:28px; height:28px;
      border-radius: 10px;
      background: rgba(21,94,236,.10);
      border:1px solid rgba(21,94,236,.18);
      color: rgba(21,94,236,.98);
      font-weight: 980;
      display:flex; align-items:center; justify-content:center;
      flex: 0 0 auto;
      margin-top: 2px;
    }
    .flow-k{font-weight: 980}
    .flow-desc{margin-top:6px; color: rgba(27,31,42,.82); font-size:13.5px; line-height:1.6}

    .match-cta{display:flex; gap:12px; flex-wrap:wrap; margin-top: 14px}

    .token-box{display:grid; gap:12px; padding: 12px; border-radius: 18px; border:1px solid rgba(20,26,38,.10); background: rgba(255,255,255,.55)}
    .token-row{display:flex; gap:12px; align-items:flex-start; justify-content:space-between}
    .token-k{font-weight: 980; color: rgba(27,31,42,.92); min-width: 88px}
    .token-v{color: rgba(27,31,42,.82); line-height:1.6; font-size:13.5px; flex:1}
    .token-row-highlight{
      background: radial-gradient(420px 130px at 12% 0%, rgba(21,94,236,.14), transparent 55%),
                  rgba(255,255,255,.62);
      border:1px solid rgba(21,94,236,.16);
      border-radius: 16px;
      padding: 12px;
    }
    .token-note{margin-top: 12px; color: var(--muted); font-size:13.5px; line-height:1.6}
    .token-note-title{font-weight: 980; color: rgba(27,31,42,.92); margin-bottom: 6px}
    .price-tools{margin-top: 12px; display:grid; grid-template-columns:1fr 1fr; gap:12px}
    @media (max-width: 980px){ .price-tools{grid-template-columns:1fr} }
    .price-item{
      padding: 12px;
      border-radius: 18px;
      border:1px solid rgba(20,26,38,.10);
      background: rgba(255,255,255,.55);
    }
    .price-k{font-weight: 980; color: rgba(27,31,42,.92)}
    .price-v{margin-top:6px; color: rgba(27,31,42,.82); line-height:1.6; font-size:13.5px}

    .training-grid{display:grid; grid-template-columns: 1.05fr .95fr; gap:14px}
    @media (max-width: 980px){ .training-grid{grid-template-columns:1fr} }
    .training-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,38,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
    }
    .training-title{font-weight: 980; font-size:16px; margin-bottom: 12px}
    .training-list{display:grid; gap:12px}
    .t-item{
      display:flex; gap:12px; align-items:flex-start;
      padding: 12px;
      border-radius: 18px;
      border:1px solid rgba(20,26,38,.10);
      background: rgba(255,255,255,.55);
    }
    .t-bullet{
      width:12px; height:12px; border-radius: 4px;
      background: linear-gradient(180deg, #1b66ff, #155eec);
      box-shadow: 0 0 0 6px rgba(21,94,236,.12);
      margin-top: 6px; flex:0 0 auto;
    }
    .t-name{font-weight: 980}
    .t-desc{margin-top:6px; color: rgba(27,31,42,.82); font-size:13.5px; line-height:1.6}
    .training-foot{display:flex; gap:12px; flex-wrap:wrap; margin-top: 14px}

    .training-aside{
      height:100%;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,38,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
    }
    .aside-title{font-weight: 980; font-size:16px; margin-bottom: 12px}
    .aside-chips{display:flex; flex-wrap:wrap; gap:10px}
    .aside-cta{display:flex; gap:12px; flex-wrap:wrap; margin-top: 14px}

    .help-grid{display:grid; grid-template-columns: 1fr 1fr; gap:14px; align-items:stretch}
    @media (max-width: 980px){ .help-grid{grid-template-columns:1fr} }
    .help-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,38,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
    }
    .help-card-wide{grid-column: 1 / -1}
    .help-wide-top{display:flex; flex-direction:column; gap:8px}
    .help-title{font-weight: 980; font-size:16px; margin-bottom: 12px}
    .help-quick{display:grid; gap:12px}
    .help-link{
      display:flex; align-items:center; justify-content:space-between;
      gap:12px;
      text-decoration:none;
      border:1px solid rgba(20,26,38,.10);
      background: rgba(255,255,255,.55);
      padding: 12px;
      border-radius: 18px;
      transition: transform .18s ease, box-shadow .2s ease;
    }
    .help-link:hover{transform: translateY(-2px); box-shadow: 0 22px 55px rgba(16,24,40,.09)}
    .help-badge{
      width:36px; height:28px;
      display:flex; align-items:center; justify-content:center;
      border-radius: 12px;
      background: rgba(21,94,236,.10);
      border:1px solid rgba(21,94,236,.18);
      color: rgba(21,94,236,.98);
      font-weight: 980;
      flex:0 0 auto;
    }
    .help-name{font-weight: 950}
    .help-tags{display:flex; flex-wrap:wrap; gap:10px}
    .help-foot{display:flex; flex-direction:column; gap:10px; margin-top: 10px}
    .help-foot-title{font-weight: 980}
    .help-foot-desc{color: var(--muted); line-height:1.7; font-size:13.5px}

    .contact-mini{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top: 10px;
    }
    @media (max-width: 980px){ .contact-mini{grid-template-columns:1fr} }
    .contact-mini-item{
      padding: 12px;
      border-radius: 18px;
      border:1px solid rgba(20,26,38,.10);
      background: rgba(255,255,255,.55);
    }
    .contact-mini-k{font-size:12px; color: var(--muted2); font-weight: 900}
    .contact-mini-v{margin-top:8px; font-size:13.5px; color: rgba(27,31,42,.86); line-height:1.6}
    .contact-link{color: rgba(21,94,236,.98); text-decoration:none; font-weight: 900}
    .qr-wrap{display:flex; align-items:center; justify-content:flex-start; margin-top: 8px}
    .qr-img{width:120px; height:auto; border-radius: 16px; border:1px solid rgba(20,26,38,.10); box-shadow: 0 16px 40px rgba(16,24,40,.10); background:#fff}
    .help-wide-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top: 14px}
    .side-box{background: rgba(255,255,255,.72); border:1px solid rgba(20,26,38,.10); border-radius: 26px; padding: 16px; box-shadow: 0 16px 40px rgba(16,24,40,.07)}
    .side-box-logos{margin-top: 14px}
    .side-box-title{font-weight: 980; font-size:16px; margin-bottom: 12px}
    .contact-methods{display:grid; gap:10px}
    .method{display:flex; gap:12px; justify-content:space-between; align-items:flex-start; border:1px solid rgba(20,26,38,.10); background: rgba(255,255,255,.55); padding: 12px; border-radius: 18px}
    .method-k{color: var(--muted2); font-weight: 900; font-size:12.5px}
    .method-v{font-weight: 900; color: rgba(27,31,42,.88)}
    .qr-block{margin-top: 4px}
    .qr-title{font-weight: 980}
    .qr-sub{margin-top: 6px; color: var(--muted); line-height:1.6; font-size:13.5px}

    .chips-row{display:flex; flex-wrap:wrap; gap:10px}

    .faq-grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:14px}
    @media (max-width: 980px){ .faq-grid{grid-template-columns:1fr} }
    .faq-panel{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,38,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
    }
    .faq-item{
      border:1px solid rgba(20,26,38,.10);
      background: rgba(255,255,255,.55);
      border-radius: 20px;
      margin-bottom: 10px;
      overflow:hidden;
      transition: border-color .2s ease, transform .15s ease;
    }
    .faq-item.open{border-color: rgba(21,94,236,.26)}
    .faq-q{
      width:100%;
      text-align:left;
      padding: 14px 14px;
      border:none; background:transparent;
      cursor:pointer;
      display:flex; justify-content:space-between; align-items:center; gap:14px;
      font-weight: 950;
      color: rgba(27,31,42,.92);
    }
    .faq-a{
      max-height:0;
      overflow:hidden;
      transition: max-height .26s ease;
    }
    .faq-item.open .faq-a{max-height: 240px}
    .faq-a-inner{
      padding: 0 14px 14px;
      color: rgba(27,31,42,.82);
      line-height:1.7;
      font-size:13.5px;
    }
    .faq-icon{
      width:18px; height:18px; border-radius:7px;
      border:1px solid rgba(20,26,38,.12);
      background: rgba(255,255,255,.7);
      position:relative; flex:0 0 auto;
    }
    .faq-icon::before,.faq-icon::after{
      content:""; position:absolute; left:50%; top:50%;
      width:10px; height:2px; background: rgba(27,31,42,.82);
      transform: translate(-50%,-50%);
      border-radius:2px;
      transition: transform .2s ease, opacity .2s ease;
    }
    .faq-icon::after{transform: translate(-50%,-50%) rotate(90deg)}
    .faq-item.open .faq-icon::after{opacity:0; transform: translate(-50%,-50%) rotate(0deg)}

    .faq-side{display:flex; flex-direction:column; gap:14px}
    .faq-side-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,38,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
    }
    .faq-side-title{font-weight:980; font-size:16px}
    .faq-side-desc{margin-top:8px; color: var(--muted); line-height:1.7; font-size:13.5px}
    .faq-side-actions{display:flex; flex-direction:column; gap:10px; margin-top: 14px}
    .faq-side-k{font-weight:980; margin-bottom: 8px}
    .faq-side-block{margin-top: 2px}

    .review-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,38,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
    }
    .review-title{font-weight: 980; font-size:16px; margin-bottom: 12px}
    .review-list{display:grid; gap:12px}
    .review-item{
      border:1px solid rgba(20,26,38,.10);
      background: rgba(255,255,255,.55);
      border-radius: 20px;
      padding: 12px;
    }
    .review-person{display:flex; gap:10px; align-items:center}
    .avatar{
      width:34px; height:34px; border-radius: 14px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(180deg, rgba(21,94,236,.14), rgba(22,163,74,.10));
      border:1px solid rgba(21,94,236,.18);
      font-weight: 980;
      color: rgba(21,94,236,.98);
      flex:0 0 auto;
    }
    .review-name{font-weight: 980; line-height:1.2}
    .review-meta{margin-top:4px; color: var(--muted2); font-size:12.5px; font-weight: 820}
    .review-text{margin-top:10px; color: rgba(27,31,42,.82); line-height:1.7; font-size:13.5px}

    .comment-row{
      margin-top: 14px;
      display:grid; grid-template-columns: 1fr 1fr 1fr; gap:14px;
    }
    @media (max-width: 980px){ .comment-row{grid-template-columns:1fr} }
    .comment-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,38,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
      transition: transform .18s ease, box-shadow .2s ease;
    }
    .comment-card:hover{transform: translateY(-3px); box-shadow: 0 26px 68px rgba(16,24,40,.12)}
    .comment-person{display:flex; gap:10px; align-items:center}
    .comment-name{font-weight: 980}
    .comment-meta{margin-top:4px; color: var(--muted2); font-size:12.5px; font-weight: 820}
    .comment-text{margin-top: 10px; color: rgba(27,31,42,.82); line-height:1.7; font-size:13.5px}

    .wiki-grid{display:grid; grid-template-columns: repeat(4, 1fr); gap:14px}
    @media (max-width: 980px){ .wiki-grid{grid-template-columns:1fr} }
    .wiki-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,38,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
      transition: transform .18s ease, box-shadow .2s ease;
    }
    .wiki-card:hover{transform: translateY(-4px); box-shadow: 0 26px 68px rgba(16,24,40,.12)}
    .wiki-title{font-weight: 980; font-size:16px}
    .wiki-desc{margin-top: 8px; color: rgba(27,31,42,.82); line-height:1.7; font-size:13.5px}
    .news-grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
    @media (max-width: 980px){ .news-grid{grid-template-columns:1fr} }
    .news-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,38,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
      transition: transform .18s ease, box-shadow .2s ease;
    }
    .news-card:hover{transform: translateY(-4px); box-shadow: 0 26px 68px rgba(16,24,40,.12)}
    .news-k{
      display:inline-flex; align-items:center;
      padding: 7px 10px; border-radius: 999px;
      border:1px solid rgba(20,26,38,.10);
      background: rgba(255,255,255,.55);
      color: rgba(21,94,236,.98);
      font-weight: 950;
      font-size:12.5px;
    }
    .news-foot{margin-top: 12px}
    .news-more{
      margin-top: 14px;
      display:flex; justify-content:space-between; align-items:center; gap:14px;
      border:1px solid rgba(20,26,38,.10);
      background: rgba(255,255,255,.72);
      border-radius: 26px;
      padding: 16px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
    }
    @media (max-width: 980px){ .news-more{flex-direction:column; align-items:flex-start} }
    .news-more-title{font-weight: 980; font-size:16px}
    .news-more-desc{margin-top: 6px; color: var(--muted); line-height:1.7; font-size:13.5px}

    .contact-grid{display:grid; grid-template-columns: 1.05fr .95fr; gap:14px; align-items:start}
    @media (max-width: 980px){ .contact-grid{grid-template-columns:1fr} }
    .contact-form-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,38,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
    }
    .form-title-row{display:flex; flex-direction:column; gap:6px; margin-bottom: 12px}
    .form-title{font-weight: 980; font-size:16px}
    .form-sub{color: var(--muted); font-size:13.5px; line-height:1.6}
    .form{margin-top: 6px}
    .form-grid{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
    @media (max-width: 620px){ .form-grid{grid-template-columns:1fr} }
    .field{display:flex; flex-direction:column; gap:8px; margin-bottom: 12px}
    label{font-weight: 900; color: rgba(27,31,42,.92); font-size:13px}
    input, select, textarea{
      width:100%;
      border-radius: 16px;
      border:1px solid rgba(20,26,38,.12);
      background: rgba(255,255,255,.78);
      padding: 12px 12px;
      outline:none;
      font-size: 14px;
      color: rgba(27,31,42,.92);
      transition: box-shadow .2s ease, border-color .2s ease, transform .15s ease;
    }
    input:focus, select:focus, textarea:focus{
      border-color: rgba(21,94,236,.35);
      box-shadow: 0 0 0 6px var(--focus);
    }
    textarea{resize: vertical; min-height: 120px}
    .form-foot{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top: 12px; flex-wrap:wrap}
    @media (max-width: 620px){ .form-foot{flex-direction:column; align-items:stretch} }
    .privacy{display:flex; align-items:center; gap:10px; color: var(--muted); font-size:12.5px; line-height:1.6; font-weight: 760}
    .privacy-dot{width:10px; height:10px; border-radius:3px; background: rgba(22,163,74,.92); box-shadow: 0 0 0 6px rgba(22,163,74,.12)}
    .form-hint{display:none}

    .contact-side{display:flex; flex-direction:column; gap:14px}

    .join-grid{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
    @media (max-width: 980px){ .join-grid{grid-template-columns:1fr} }
    .join-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,26,38,.10);
      border-radius: 26px;
      padding: 16px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
    }
    .join-card-right{background: linear-gradient(180deg, rgba(21,94,236,.06), rgba(255,255,255,.72))}
    .join-title{font-weight: 980; font-size:16px; margin-bottom: 12px}
    .join-bullets{display:grid; gap:12px}
    .join-item{
      display:flex; gap:12px; align-items:flex-start;
      padding: 12px;
      border-radius: 18px;
      border:1px solid rgba(20,26,38,.10);
      background: rgba(255,255,255,.55);
    }
    .join-step{
      width:28px; height:28px; border-radius: 10px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(21,94,236,.10);
      border:1px solid rgba(21,94,236,.18);
      color: rgba(21,94,236,.98);
      font-weight: 980;
      flex:0 0 auto;
      margin-top: 2px;
    }
    .join-k{font-weight: 980}
    .join-desc{margin-top:6px; color: rgba(27,31,42,.82); font-size:13.5px; line-height:1.6}
    .join-cta{display:flex; gap:12px; flex-wrap:wrap; margin-top: 14px}

    .partner-list{display:grid; gap:12px}
    .partner-item{
      display:flex; gap:12px; align-items:flex-start;
      padding: 12px;
      border-radius: 18px;
      border:1px solid rgba(20,26,38,.10);
      background: rgba(255,255,255,.55);
    }
    .partner-icon{color: rgba(21,94,236,.95); margin-top:2px}
    .partner-k{font-weight: 980}
    .partner-desc{margin-top:6px; color: rgba(27,31,42,.82); font-size:13.5px; line-height:1.6}
    .join-right-foot{margin-top: 14px}
    .join-small-k{font-weight: 980}
    .join-small-v{margin-top: 6px; color: var(--muted); line-height:1.7; font-size:13.5px}
    .join-right-links{display:flex; flex-direction:column; gap:10px; margin-top: 10px}

    .partners-banner{
      margin-top: 14px;
      border:1px solid rgba(20,26,38,.10);
      background: rgba(255,255,255,.72);
      border-radius: 26px;
      padding: 16px;
      box-shadow: 0 16px 40px rgba(16,24,40,.07);
    }
    .partners-title{font-weight: 980; margin-bottom: 12px}
    .partners-links{
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .partners-links a{
      text-decoration:none;
      color: rgba(27,31,42,.92);
      border:1px solid rgba(20,26,38,.10);
      background: rgba(255,255,255,.55);
      padding: 10px 12px;
      border-radius: 14px;
      font-size: 13.5px;
      font-weight: 820;
      transition: transform .15s ease, background .2s ease;
    }
    .partners-links a:hover{transform: translateY(-2px); background: rgba(255,255,255,.80)}

    .site-footer{
      background: linear-gradient(180deg, rgba(20,26,38,.92), rgba(14,18,28,.98));
      color:#fff;
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 34px 0 18px;
      position:relative;
      overflow:hidden;
    }
    .site-footer::before{
      content:""; position:absolute; inset:-200px -200px auto -200px; height: 320px;
      background: radial-gradient(450px 160px at 20% 30%, rgba(21,94,236,.28), transparent 60%),
                  radial-gradient(420px 180px at 80% 0%, rgba(22,163,74,.18), transparent 60%);
      pointer-events:none;
      opacity:.9;
    }
    .footer-inner{position:relative}
    .footer-top{display:flex; justify-content:space-between; gap:16px; align-items:flex-start; flex-wrap:wrap}
    .footer-brand{display:flex; gap:12px; align-items:flex-start; min-width: 280px}
    .footer-logo{width:46px; background: transparent; box-shadow:none; border:1px solid rgba(255,255,255,.20)}
    .footer-name{font-weight: 980; letter-spacing:.2px}
    .footer-desc{margin-top:6px; color: rgba(255,255,255,.78); line-height:1.6; font-size:13.5px; max-width: 420px}

    .footer-cols{display:grid; grid-template-columns: 1fr 1fr 1fr; gap:14px}
    @media (max-width: 980px){ .footer-cols{grid-template-columns:1fr 1fr} }
    @media (max-width: 560px){ .footer-cols{grid-template-columns:1fr} }

    .footer-col{min-width: 160px}
    .footer-title{font-weight: 980; margin-bottom: 10px; color: rgba(255,255,255,.92)}
    .footer-link{
      display:block;
      text-decoration:none;
      color: rgba(255,255,255,.82);
      padding: 8px 0;
      font-size: 13.5px;
      transition: color .2s ease;
    }
    .footer-link:hover{color:#fff}
    .footer-muted{color: rgba(255,255,255,.75); font-size: 13.5px; line-height:1.6; margin-top:8px}
    .footer-bottom{
      margin-top: 18px;
      padding-top: 16px;
      border-top: 1px solid rgba(255,255,255,.10);
      display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap; align-items:flex-start;
    }
    .footer-copy{color: rgba(255,255,255,.82); font-weight: 820}
    .footer-mini{margin-top:8px; color: rgba(255,255,255,.75); font-size:13.5px; line-height:1.6}
    .footer-link-inline{color: rgba(255,255,255,.90); text-decoration:none; border-bottom:1px solid rgba(255,255,255,.22)}
    .friend-links{display:flex; flex-wrap:wrap; gap:10px; margin-top: 8px; max-width: 520px}
    .friend-links a{
      color: rgba(255,255,255,.82);
      text-decoration:none;
      padding: 8px 10px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      border-radius: 14px;
      font-size: 13px;
      font-weight: 820;
      transition: transform .15s ease, background .2s ease, border-color .2s ease;
    }
    .friend-links a:hover{transform: translateY(-2px); background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.22)}

    .to-top{
      position:fixed; right: 16px; bottom: 18px; z-index:80;
      width: 46px; height: 46px;
      border-radius: 16px;
      border:1px solid rgba(20,26,38,.12);
      background: rgba(255,255,255,.85);
      box-shadow: 0 18px 45px rgba(16,24,40,.18);
      cursor:pointer;
      font-weight: 980;
      color: rgba(27,31,42,.92);
      transform: translateY(14px);
      opacity:0; pointer-events:none;
      transition: opacity .2s ease, transform .2s ease, background .2s ease;
    }
    .to-top.show{opacity:1; pointer-events:auto; transform: translateY(0)}
    .to-top:hover{background: rgba(255,255,255,.98)}

    .float-chat{
      position:fixed; left: 14px; bottom: 16px;
      z-index:80;
      display:inline-flex; align-items:center; gap:10px;
      padding: 12px 14px;
      border-radius: 18px;
      border:1px solid rgba(21,94,236,.22);
      background: rgba(255,255,255,.82);
      box-shadow: 0 18px 45px rgba(16,24,40,.16);
      text-decoration:none;
      color: rgba(21,94,236,.98);
      font-weight: 950;
      transition: transform .18s ease, background .2s ease, box-shadow .2s ease;
    }
    .float-chat:hover{
      transform: translateY(-3px);
      background: rgba(255,255,255,.98);
      box-shadow: 0 26px 68px rgba(16,24,40,.22);
    }
    .float-dot{
      width:12px; height:12px; border-radius:4px;
      background: linear-gradient(180deg, #1b66ff, #155eec);
      box-shadow: 0 0 0 6px rgba(21,94,236,.14);
    }
    .float-text{font-size: 13.5px}

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

    @media (prefers-reduced-motion: reduce){
      *{animation:none !important; transition:none !important; scroll-behavior:auto !important}
      .reveal{opacity:1; transform:none}
      .step-connector::after{display:none}
    }