:root{
      --bg0:#f6fbf8;
      --bg1:#eefaf3;
      --card:#ffffff;
      --text:#1f2937;
      --muted:#5b6b7b;
      --line:rgba(31,41,55,.10);
      --shadow:0 14px 40px rgba(16,24,40,.08);
      --shadow2:0 10px 24px rgba(16,24,40,.10);
      --mint:#39c58d;
      --mint2:#1fa971;
      --teal:#26b6b2;
      --lime:#9ad63c;
      --blue:#2f7cf6;
      --focus: rgba(57,197,141,.25);
      --radius:18px;
      --radius2:22px;
      --container: 1120px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC","Microsoft YaHei","Noto Sans SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 380px at 18% -10%, rgba(57,197,141,.16), transparent 55%),
        radial-gradient(760px 360px at 85% 10%, rgba(38,182,178,.14), transparent 55%),
        linear-gradient(180deg, var(--bg0), #fff 42%, #f8fbf9 100%);
    }

    .skip-link{
      position:absolute; left:12px; top:-60px;
      background:var(--card); color:var(--text);
      padding:10px 12px; border-radius:12px;
      border:1px solid var(--line);
      transition:top .2s ease;
      z-index:1000;
      text-decoration:none;
    }
    .skip-link:focus{top:12px; outline:3px solid var(--focus)}

    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }

    .site-header{
      position:sticky; top:0;
      z-index:50;
      backdrop-filter:saturate(140%) blur(12px);
      background:rgba(246,251,248,.78);
      border-bottom:1px solid rgba(31,41,55,.08);
    }

    .nav-wrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }

    .brand-link{display:inline-flex; align-items:center; gap:10px; text-decoration:none}
    .ai-page-logo{width:auto; max-width:130px}

    .nav{
      flex:1;
      display:flex;
      align-items:center;
      justify-content:center;
      min-width:0;
    }

    .nav-desktop{
      display:flex;
      gap:18px;
      align-items:center;
      white-space:nowrap;
    }

    .nav-item{
      color:rgba(31,41,55,.78);
      text-decoration:none;
      font-weight:600;
      font-size:14px;
      padding:10px 6px;
      border-radius:12px;
      transition:background .2s ease, color .2s ease, transform .2s ease;
    }
    .nav-item:hover{
      background:rgba(57,197,141,.10);
      color:rgba(31,41,55,.98);
      transform: translateY(-1px);
    }

    .nav-cta{
      display:flex;
      align-items:center;
      gap:12px;
      justify-content:flex-end;
      flex-wrap:wrap;
      min-width:220px;
    }
    .ai-page-home-link{
      color:rgba(31,41,55,.78);
      text-decoration:none;
      font-weight:700;
      font-size:14px;
      padding:10px 12px;
      border-radius:12px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(255,255,255,.65);
      transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .ai-page-home-link:hover{
      transform: translateY(-1px);
      background:#fff;
      box-shadow: 0 10px 22px rgba(16,24,40,.08);
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      border-radius:14px;
      padding:11px 14px;
      font-weight:800;
      font-size:14px;
      text-decoration:none;
      border:1px solid transparent;
      cursor:pointer;
      user-select:none;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      color:var(--text);
      background:#fff;
      white-space:nowrap;
    }
    .btn:focus{outline:3px solid var(--focus); outline-offset:2px}
    .btn:hover{transform: translateY(-1px)}
    .btn:active{transform: translateY(0px)}
    .btn-primary{
      background: linear-gradient(135deg, rgba(57,197,141,1), rgba(31,169,113,1));
      color:#fff;
      border-color: rgba(0,0,0,0);
      box-shadow: 0 14px 28px rgba(31,169,113,.22);
    }
    .btn-primary:hover{box-shadow: 0 18px 38px rgba(31,169,113,.26)}
    .btn-ghost{
      background:rgba(255,255,255,.70);
      border-color: rgba(31,41,55,.12);
      box-shadow: 0 10px 22px rgba(16,24,40,.06);
    }
    .btn-ghost:hover{
      background:#fff;
      border-color: rgba(31,41,55,.16);
    }
    .btn-lg{padding:12px 18px; font-size:15px; border-radius:16px}
    .btn-block{width:100%}

    .site-footer{
      background: linear-gradient(180deg, rgba(57,197,141,.08), rgba(255,255,255,1));
      border-top:1px solid rgba(31,41,55,.08);
      color:rgba(31,41,55,.92);
    }
    .footer-inner{padding:28px 0 18px}
    .footer-top{
      display:flex;
      gap:18px;
      align-items:flex-start;
      justify-content:space-between;
      flex-wrap:wrap;
    }
    .footer-left{
      min-width:260px;
      flex: 1.2;
    }
    .footer-right{
      min-width:320px;
      flex: 1;
      display:flex;
      gap:16px;
      justify-content:flex-end;
      flex-wrap:wrap;
    }
    .footer-desc{
      color:rgba(31,41,55,.72);
      margin-top:10px;
      line-height:1.6;
      max-width:520px;
      font-weight:600;
      font-size:14px;
    }
    .footer-links{
      margin-top:12px;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }
    .footer-links a{
      color:rgba(31,41,55,.72);
      text-decoration:none;
      font-weight:700;
      font-size:13px;
      padding:8px 10px;
      border-radius:12px;
      border:1px solid rgba(31,41,55,.10);
      background:rgba(255,255,255,.65);
      transition: background .2s ease, transform .15s ease;
    }
    .footer-links a:hover{background:#fff; transform: translateY(-1px)}

    .footer-block{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(31,41,55,.10);
      border-radius:18px;
      padding:14px 14px;
      box-shadow: 0 14px 34px rgba(16,24,40,.06);
      min-width:290px;
    }
    .footer-block-title{
      font-weight:900;
      margin-bottom:10px;
      letter-spacing:.2px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:10px;
    }
    .footer-grid a{
      color:rgba(31,41,55,.74);
      text-decoration:none;
      font-weight:750;
      font-size:13px;
      padding:8px 10px;
      border-radius:12px;
      border:1px solid rgba(31,41,55,.08);
      background: rgba(255,255,255,.8);
      transition: transform .15s ease, background .2s ease;
    }
    .footer-grid a:hover{transform: translateY(-1px); background:#fff}

    .footer-info{display:flex; flex-direction:column; gap:10px}
    .footer-info-row{display:flex; gap:10px; align-items:flex-start}
    .footer-k{color:rgba(31,41,55,.60); font-weight:800; font-size:13px; width:88px}
    .footer-v{color:rgba(31,41,55,.86); font-weight:800; font-size:13px}
    .footer-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:12px}

    .footer-bottom{
      margin-top:16px;
      padding-top:14px;
      border-top:1px solid rgba(31,41,55,.08);
      display:flex;
      gap:12px;
      justify-content:space-between;
      flex-wrap:wrap;
      color:rgba(31,41,55,.68);
      font-weight:700;
      font-size:13px;
    }

    .hero{
      position:relative;
      padding:58px 0 38px;
      overflow:hidden;
    }
    .hero-inner{
      position:relative;
      z-index:2;
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:22px;
      align-items:start;
    }
    .hero-bg{
      position:absolute; inset:0;
      z-index:1;
      pointer-events:none;
    }
    .bg-layer{position:absolute; border-radius:999px; filter: blur(12px); opacity:.85}
    .layer-1{
      width:620px; height:380px;
      left:-150px; top:-140px;
      background: radial-gradient(circle at 30% 30%, rgba(57,197,141,.30), transparent 60%);
    }
    .layer-2{
      width:560px; height:340px;
      right:-160px; top:-60px;
      background: radial-gradient(circle at 20% 20%, rgba(38,182,178,.26), transparent 62%);
    }
    .bg-grid{
      position:absolute; inset:-40px;
      background:
        linear-gradient(to right, rgba(31,41,55,.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(31,41,55,.05) 1px, transparent 1px);
      background-size: 44px 44px;
      opacity:.35;
      mask-image: radial-gradient(70% 60% at 50% 25%, #000 40%, transparent 70%);
    }

    .eyebrow{
      display:inline-flex;
      gap:10px;
      align-items:center;
      padding:9px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(31,41,55,.10);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      font-weight:800;
      color:rgba(31,41,55,.75);
      font-size:13px;
      margin-bottom:14px;
    }
    .dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(180deg, rgba(57,197,141,1), rgba(31,169,113,1));
      box-shadow: 0 0 0 6px rgba(57,197,141,.14);
    }
    .hero-title{
      margin:0;
      font-size:40px;
      line-height:1.18;
      letter-spacing:-.6px;
      font-weight:950;
      color:rgba(17,24,39,1);
    }
    .hero-subtitle{
      margin:14px 0 0;
      color:rgba(31,41,55,.76);
      font-weight:650;
      line-height:1.8;
      font-size:15px;
      max-width:640px;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:20px;
      align-items:center;
    }

    .hero-meta{
      margin-top:18px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }
    .meta-item{
      flex:1;
      min-width:210px;
      display:flex;
      gap:12px;
      align-items:flex-start;
      background: rgba(255,255,255,.66);
      border:1px solid rgba(31,41,55,.10);
      border-radius:16px;
      padding:12px 12px;
      box-shadow: 0 14px 34px rgba(16,24,40,.05);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .meta-item:hover{transform: translateY(-2px); box-shadow: 0 20px 54px rgba(16,24,40,.08)}
    .meta-ico{
      width:38px; height:38px;
      display:flex; align-items:center; justify-content:center;
      border-radius:12px;
      background: rgba(57,197,141,.10);
      color: rgba(31,169,113,1);
      flex:0 0 auto;
    }
    .meta-title{font-weight:950; font-size:14px}
    .meta-desc{color:rgba(31,41,55,.70); font-weight:700; font-size:13px; margin-top:3px; line-height:1.5}

    .hero-right{
      position:relative;
    }
    .floating-ring{
      position:absolute;
      right:-40px; top:-46px;
      width:190px; height:190px;
      border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(57,197,141,.22), transparent 62%);
      filter: blur(0px);
      z-index:0;
      opacity:.9;
    }

    .stat-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .stat-card{
      background: rgba(255,255,255,.74);
      border:1px solid rgba(31,41,55,.10);
      border-radius:18px;
      padding:14px 14px;
      box-shadow: 0 18px 48px rgba(16,24,40,.06);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
      will-change: transform;
    }
    .stat-card:hover{transform: translateY(-2px); border-color: rgba(31,169,113,.22); box-shadow: 0 22px 58px rgba(16,24,40,.10)}
    .stat-top{display:flex; align-items:center; justify-content:space-between; gap:10px}
    .stat-icon{color: rgba(31,169,113,1)}
    .pill{
      display:inline-flex;
      align-items:center;
      padding:7px 10px;
      border-radius:999px;
      font-weight:900;
      font-size:12px;
      color:rgba(31,41,55,.78);
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.72);
      white-space:nowrap;
    }
    .stat-value{
      margin-top:10px;
      font-weight:1000;
      font-size:18px;
      letter-spacing:-.2px;
    }
    .stat-desc{
      margin-top:6px;
      color:rgba(31,41,55,.70);
      font-weight:700;
      line-height:1.55;
      font-size:13px;
    }
    .hero-mini-note{
      margin-top:12px;
      display:flex; align-items:center; gap:12px;
      padding:12px 12px;
      border-radius:16px;
      background: rgba(255,255,255,.62);
      border:1px solid rgba(31,41,55,.10);
      box-shadow: 0 14px 34px rgba(16,24,40,.05);
    }
    .mini-line{width:10px; height:36px; border-radius:10px; background: linear-gradient(180deg, rgba(57,197,141,1), rgba(38,182,178,.9)); box-shadow: 0 0 0 6px rgba(57,197,141,.12)}
    .mini-text{color:rgba(31,41,55,.76); font-weight:750; line-height:1.6; font-size:13px}
    .mini-text strong{color:rgba(31,41,55,.95)}

    .section{
      padding:54px 0;
    }
    .section-soft{
      background: linear-gradient(180deg, rgba(57,197,141,.06), rgba(255,255,255,0));
      border-top:1px solid rgba(31,41,55,.06);
      border-bottom:1px solid rgba(31,41,55,.06);
    }
    .section-no-gap{padding:0 0 40px}

    .section-head{
      margin-bottom:20px;
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
    }
    .section-title{
      margin:0;
      font-size:28px;
      letter-spacing:-.4px;
      font-weight:980;
    }
    .section-desc{
      margin:0;
      color:rgba(31,41,55,.72);
      font-weight:700;
      line-height:1.7;
      max-width:720px;
      font-size:14px;
    }

    .reveal{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.in{
      opacity:1;
      transform: translateY(0px);
    }
    .delay-1{transition-delay: .08s}
    .delay-2{transition-delay: .14s}
    .delay-3{transition-delay: .20s}
    .delay-4{transition-delay: .26s}

    .about-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:stretch;
    }
    .card{
      background: rgba(255,255,255,.76);
      border:1px solid rgba(31,41,55,.10);
      border-radius: var(--radius);
      box-shadow: 0 18px 50px rgba(16,24,40,.05);
      padding:18px 18px;
      overflow:hidden;
    }
    .card-accent{
      background:
        radial-gradient(700px 220px at 10% 0%, rgba(57,197,141,.18), transparent 55%),
        rgba(255,255,255,.78);
      border-color: rgba(31,169,113,.20);
    }
    .card-kicker{
      font-weight:950;
      color:rgba(31,169,113,1);
      letter-spacing:.2px;
      text-transform:none;
      font-size:13px;
      display:inline-flex;
      align-items:center;
      gap:10px;
    }
    .card-title{
      margin:8px 0 0;
      font-size:18px;
      font-weight:1000;
      letter-spacing:-.25px;
    }
    .card-text{
      margin:10px 0 0;
      color:rgba(31,41,55,.74);
      line-height:1.8;
      font-weight:700;
      font-size:14px;
    }
    .list{
      margin:14px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .check{
      display:inline-flex;
      width:22px; height:22px;
      border-radius:8px;
      background: rgba(57,197,141,.14);
      align-items:center; justify-content:center;
      color: rgba(31,169,113,1);
      font-weight:1000;
      margin-right:10px;
      font-size:13px;
    }
    .list li{
      color:rgba(31,41,55,.80);
      font-weight:750;
      font-size:14px;
      display:flex; align-items:flex-start;
      line-height:1.5;
    }

    .card-actions{
      margin-top:14px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }

    .timeline{margin-top:12px; display:flex; flex-direction:column; gap:14px}
    .time-step{display:flex; gap:12px}
    .time-dot{
      width:14px; height:14px;
      border-radius:50%;
      margin-top:6px;
      background: linear-gradient(180deg, rgba(57,197,141,1), rgba(38,182,178,.95));
      box-shadow: 0 0 0 6px rgba(57,197,141,.12);
      flex:0 0 auto;
    }
    .time-title{font-weight:980}
    .time-desc{color:rgba(31,41,55,.72); font-weight:700; margin-top:4px; line-height:1.6; font-size:13.5px}

    .service-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
      align-items:stretch;
    }
    .service-card{
      padding:16px 16px;
      background: rgba(255,255,255,.76);
      border:1px solid rgba(31,41,55,.10);
      border-radius: var(--radius);
      box-shadow: 0 18px 50px rgba(16,24,40,.05);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
      overflow:hidden;
      position:relative;
    }
    .service-card:hover{
      transform: translateY(-3px);
      border-color: rgba(31,169,113,.22);
      box-shadow: 0 26px 70px rgba(16,24,40,.12);
    }
    .service-top{display:flex; align-items:center; justify-content:space-between; gap:10px}
    .service-icon{
      width:40px; height:40px;
      border-radius:14px;
      background: rgba(57,197,141,.12);
      color: rgba(31,169,113,1);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .badge{
      font-weight:950;
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      background: rgba(57,197,141,.12);
      border:1px solid rgba(57,197,141,.22);
      color: rgba(24,87,59,1);
      white-space:nowrap;
    }
    .service-title{
      margin:10px 0 0;
      font-size:16px;
      font-weight:1000;
      letter-spacing:-.2px;
    }
    .service-text{
      margin:8px 0 0;
      color:rgba(31,41,55,.74);
      font-weight:700;
      line-height:1.7;
      font-size:14px;
    }

    .callout{
      margin-top:18px;
      padding:16px 16px;
      border-radius:20px;
      border:1px solid rgba(31,169,113,.22);
      background:
        radial-gradient(700px 220px at 20% -20%, rgba(57,197,141,.20), transparent 60%),
        rgba(255,255,255,.72);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      box-shadow: 0 20px 64px rgba(16,24,40,.06);
    }
    .callout-title{margin:0; font-size:18px; font-weight:1000}
    .callout-text{margin:6px 0 0; color:rgba(31,41,55,.74); font-weight:720; line-height:1.7; font-size:14px}
    .callout-right{display:flex; gap:12px; flex-wrap:wrap}

    .two-col{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }

    .tag-cloud{
      margin-top:14px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .tag{
      padding:9px 10px;
      border-radius:999px;
      background: rgba(57,197,141,.10);
      border:1px solid rgba(57,197,141,.20);
      font-weight:900;
      font-size:12.5px;
      color:rgba(24,87,59,1);
    }

    .card-rail{
      background:
        radial-gradient(560px 220px at 90% 0%, rgba(38,182,178,.16), transparent 55%),
        rgba(255,255,255,.76);
    }

    .map-grid{
      margin-top:10px;
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:10px;
    }
    .map-item{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.76);
      transition: transform .18s ease, border-color .2s ease;
    }
    .map-item:hover{transform: translateY(-2px); border-color: rgba(31,169,113,.22)}
    .map-title{font-weight:1000}
    .map-desc{margin-top:4px; color:rgba(31,41,55,.70); font-weight:720; font-size:13.5px; line-height:1.5}

    .divider{height:1px; background: rgba(31,41,55,.10); margin:14px 0}

    .mini-form-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      margin-top:10px;
    }
    .mini-title{font-weight:1000}
    .mini-desc{margin-top:4px; color:rgba(31,41,55,.72); font-weight:720; line-height:1.6; font-size:13.5px}

    .industry-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .industry-card{
      padding:16px 16px;
      border-radius:var(--radius);
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.76);
      box-shadow: 0 18px 50px rgba(16,24,40,.05);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .industry-card:hover{transform: translateY(-3px); border-color: rgba(31,169,113,.22); box-shadow: 0 26px 70px rgba(16,24,40,.10)}
    .industry-top{display:flex; align-items:center; gap:10px}
    .industry-dot{width:10px; height:10px; border-radius:50%; background: linear-gradient(180deg, rgba(57,197,141,1), rgba(38,182,178,.95)); box-shadow: 0 0 0 6px rgba(57,197,141,.12)}
    .industry-title{margin:0; font-size:16px; font-weight:1000}
    .compact-list{
      margin:12px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:10px;
      color:rgba(31,41,55,.78);
      font-weight:720;
      font-size:14px;
      line-height:1.5;
    }
    .link-btn{
      margin-top:14px;
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-weight:950;
      color: rgba(31,169,113,1);
      text-decoration:none;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(57,197,141,.24);
      background: rgba(57,197,141,.08);
      transition: transform .15s ease, background .2s ease;
    }
    .link-btn:hover{transform: translateY(-2px); background: rgba(57,197,141,.12)}
    .link-btn::after{content:"→"; font-weight:1000}

    .network-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
    }
    .network-card{
      padding:18px 18px;
      border-radius:var(--radius);
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.76);
      box-shadow: 0 18px 50px rgba(16,24,40,.05);
    }
    .network-card-lite{
      background:
        radial-gradient(520px 220px at 20% 0%, rgba(57,197,141,.16), transparent 60%),
        rgba(255,255,255,.76);
    }
    .network-title{margin:0; font-size:18px; font-weight:1000}
    .network-text{margin:10px 0 0; color:rgba(31,41,55,.74); font-weight:720; line-height:1.7; font-size:14px}

    .network-bullets{
      margin-top:14px;
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
    }
    .network-bullet{
      display:flex;
      gap:10px;
      align-items:center;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.76);
    }
    .network-num{
      width:34px; height:34px;
      border-radius:14px;
      background: rgba(57,197,141,.12);
      color: rgba(31,169,113,1);
      font-weight:1000;
      display:flex; align-items:center; justify-content:center;
    }
    .network-btxt{font-weight:950}

    .checks{
      margin-top:12px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .check-item{
      display:flex; gap:10px; align-items:flex-start;
      color:rgba(31,41,55,.78);
      font-weight:760;
      font-size:14px;
    }
    .check-item input{margin-top:3px; width:18px; height:18px}
    .network-cta{margin-top:16px; display:flex; gap:12px; flex-wrap:wrap}

    .step-grid{
      display:grid;
      grid-template-columns: repeat(5, minmax(0,1fr));
      gap:12px;
    }
    .step-card{
      padding:16px 14px;
      border-radius:var(--radius);
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.76);
      box-shadow: 0 18px 50px rgba(16,24,40,.05);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
      position:relative;
      overflow:hidden;
    }
    .step-card:hover{transform: translateY(-3px); border-color: rgba(31,169,113,.22); box-shadow: 0 26px 70px rgba(16,24,40,.10)}
    .step-num{
      font-weight:1000;
      color: rgba(31,41,55,.86);
      background: rgba(57,197,141,.10);
      border:1px solid rgba(57,197,141,.18);
      padding:8px 10px;
      border-radius:14px;
      display:inline-block;
      font-size:13px;
    }
    .step-title{margin:12px 0 0; font-size:16px; font-weight:1000; letter-spacing:-.2px}
    .step-text{margin:8px 0 0; color:rgba(31,41,55,.74); font-weight:720; line-height:1.65; font-size:13.8px}

    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .case-card{
      padding:18px 18px;
      border-radius:var(--radius2);
      border:1px solid rgba(31,41,55,.10);
      background:
        radial-gradient(460px 240px at 10% 0%, rgba(57,197,141,.14), transparent 60%),
        rgba(255,255,255,.78);
      box-shadow: 0 18px 50px rgba(16,24,40,.05);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:12px;
      min-height:210px;
    }
    .case-card:hover{transform: translateY(-3px); border-color: rgba(31,169,113,.22); box-shadow: 0 26px 70px rgba(16,24,40,.10)}
    .case-top{display:flex; justify-content:space-between; gap:12px; align-items:center}
    .case-chip{
      font-weight:1000;
      font-size:12px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(31,169,113,.22);
      background: rgba(57,197,141,.10);
      color: rgba(24,87,59,1);
    }
    .case-time{color:rgba(31,41,55,.62); font-weight:850; font-size:12.5px}
    .case-title{margin:8px 0 0; font-size:16px; font-weight:1000; letter-spacing:-.2px}
    .case-text{margin:8px 0 0; color:rgba(31,41,55,.74); font-weight:720; line-height:1.7; font-size:14px}
    .case-foot{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; margin-top:2px}
    .case-tag{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.72);
      font-weight:900;
      color:rgba(31,41,55,.70);
      font-size:12.5px;
    }
    .case-bottom{
      margin-top:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      padding:16px 16px;
      border-radius:22px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 18px 50px rgba(16,24,40,.05);
    }
    .case-bottom-title{margin:0; font-size:18px; font-weight:1000}
    .case-bottom-desc{margin:6px 0 0; color:rgba(31,41,55,.72); font-weight:720; line-height:1.7; font-size:14px}

    .compare-top{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:14px;
      align-items:stretch;
    }
    .rating-card{
      padding:18px 18px;
      border-radius:var(--radius2);
      border:1px solid rgba(31,41,55,.10);
      background:
        radial-gradient(520px 220px at 20% 0%, rgba(57,197,141,.18), transparent 60%),
        rgba(255,255,255,.78);
      box-shadow: 0 18px 50px rgba(16,24,40,.05);
    }
    .rating-row{
      display:flex;
      gap:14px;
      align-items:center;
      justify-content:space-between;
      flex-wrap:wrap;
    }
    .rating-stars{display:flex; gap:6px; font-size:20px; color: rgba(250,173,36,1); filter: drop-shadow(0 10px 18px rgba(250,173,36,.18))}
    .star{transform: translateY(1px)}
    .rating-score{display:flex; align-items:baseline; gap:8px}
    .score-value{font-size:40px; font-weight:1000; letter-spacing:-.8px}
    .score-unit{color:rgba(31,41,55,.68); font-weight:900; font-size:14px}
    .rating-text{margin-top:10px; color:rgba(31,41,55,.78); font-weight:820; line-height:1.7}

    .compare-hint{
      padding:18px 18px;
      border-radius:var(--radius2);
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.76);
      box-shadow: 0 18px 50px rgba(16,24,40,.05);
    }
    .compare-hint-title{margin:0; font-size:18px; font-weight:1000}
    .compare-table-wrap{
      margin-top:14px;
      padding:14px 14px;
      border-radius:22px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 50px rgba(16,24,40,.05);
    }
    .table-note{color:rgba(31,41,55,.62); font-weight:800; font-size:13px; margin-bottom:10px}
    .table-scroll{overflow:auto; border-radius:18px; border:1px solid rgba(31,41,55,.08)}
    .compare-table{
      width:100%;
      border-collapse:collapse;
      min-width:740px;
      background:#fff;
    }
    .compare-table th, .compare-table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(31,41,55,.08);
      vertical-align:top;
      text-align:left;
    }
    .compare-table th{
      background: rgba(57,197,141,.08);
      color:rgba(31,41,55,.92);
      font-weight:1000;
      font-size:14px;
    }
    .compare-table td{
      color:rgba(31,41,55,.78);
      font-weight:720;
      font-size:13.8px;
      line-height:1.6;
    }
    .compare-actions{
      margin-top:12px;
      display:flex;
      gap:12px;
      justify-content:flex-start;
      flex-wrap:wrap;
    }

    .match-grid{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:14px;
      align-items:start;
    }
    .match-card{
      padding:18px 18px;
      border-radius:var(--radius2);
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.76);
      box-shadow: 0 18px 50px rgba(16,24,40,.05);
    }
    .match-title{margin:0; font-size:18px; font-weight:1000}
    .match-sub{margin:10px 0 0; color:rgba(31,41,55,.72); font-weight:720; line-height:1.7; font-size:14px}

    .segmented{
      margin-top:12px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .seg-btn{
      appearance:none;
      border:1px solid rgba(31,41,55,.12);
      background: rgba(255,255,255,.76);
      color:rgba(31,41,55,.76);
      font-weight:950;
      font-size:13px;
      padding:10px 12px;
      border-radius:999px;
      cursor:pointer;
      transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
    }
    .seg-btn:hover{transform: translateY(-1px); border-color: rgba(31,169,113,.22)}
    .seg-btn.is-active{
      background: rgba(57,197,141,.12);
      border-color: rgba(57,197,141,.30);
      color: rgba(24,87,59,1);
      box-shadow: 0 14px 30px rgba(31,169,113,.12);
    }

    .match-preview{
      margin-top:14px;
      padding:14px 14px;
      border-radius:18px;
      border:1px solid rgba(31,41,55,.10);
      background:
        radial-gradient(520px 220px at 85% 0%, rgba(38,182,178,.14), transparent 55%),
        rgba(255,255,255,.72);
    }
    .preview-row{
      display:flex;
      gap:12px;
      justify-content:space-between;
      align-items:flex-start;
      flex-wrap:wrap;
      padding:10px 0;
      border-bottom:1px dashed rgba(31,41,55,.10);
    }
    .preview-row:last-child{border-bottom:none}
    .preview-label{color:rgba(31,41,55,.60); font-weight:950; font-size:13px}
    .preview-value{color:rgba(31,41,55,.86); font-weight:800; font-size:13.5px; line-height:1.6; max-width:520px}

    .quick-links{display:flex; gap:12px; flex-wrap:wrap; margin-top:10px}

    .form-card{
      padding:18px 18px;
      border-radius:var(--radius2);
      border:1px solid rgba(31,41,55,.10);
      background:
        radial-gradient(560px 220px at 20% 0%, rgba(57,197,141,.16), transparent 60%),
        rgba(255,255,255,.78);
      box-shadow: 0 18px 50px rgba(16,24,40,.05);
    }
    .form-head{margin-bottom:6px}
    .form-title{margin:0; font-size:18px; font-weight:1000}
    .form-desc{margin:8px 0 0; color:rgba(31,41,55,.72); font-weight:720; line-height:1.7; font-size:14px}

    .form-grid{
      margin-top:14px;
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
    }
    .field{display:flex; flex-direction:column; gap:8px}
    .field-full{grid-column: 1 / -1}
    .field-label{font-weight:950; font-size:13px; color:rgba(31,41,55,.80)}
    .field-input{
      border:1px solid rgba(31,41,55,.12);
      background: rgba(255,255,255,.86);
      border-radius:14px;
      padding:11px 12px;
      font-weight:800;
      color:rgba(31,41,55,.92);
      font-size:14px;
      outline:none;
      transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
    }
    .field-input:focus{
      border-color: rgba(57,197,141,.45);
      box-shadow: 0 0 0 4px rgba(57,197,141,.18);
      background:#fff;
    }
    .field-textarea{
      border:1px solid rgba(31,41,55,.12);
      background: rgba(255,255,255,.86);
      border-radius:14px;
      padding:11px 12px;
      font-weight:800;
      color:rgba(31,41,55,.92);
      font-size:14px;
      outline:none;
      transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
      resize:vertical;
      min-height:120px;
    }
    .field-textarea:focus{
      border-color: rgba(57,197,141,.45);
      box-shadow: 0 0 0 4px rgba(57,197,141,.18);
      background:#fff;
    }
    .form-foot{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .form-hint{
      display:flex; gap:10px; align-items:center;
      color:rgba(31,41,55,.68);
      font-weight:800;
      font-size:13px;
    }
    .hint-dot{width:10px; height:10px; border-radius:50%; background: rgba(57,197,141,.9); box-shadow: 0 0 0 6px rgba(57,197,141,.14)}
    .divider{background: rgba(31,41,55,.10)}
    .small-alert{
      margin-top:12px;
      padding:12px 12px;
      border-radius:18px;
      border:1px dashed rgba(31,169,113,.30);
      background: rgba(57,197,141,.08);
    }
    .small-alert-title{font-weight:1000}
    .small-alert-text{margin-top:6px; color:rgba(31,41,55,.74); font-weight:740; line-height:1.65; font-size:14px}

    .token-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .token-card{
      padding:18px 18px;
      border-radius:var(--radius2);
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 50px rgba(16,24,40,.05);
    }
    .token-side{
      padding:18px 18px;
      border-radius:var(--radius2);
      border:1px solid rgba(31,41,55,.10);
      background:
        radial-gradient(520px 220px at 90% 0%, rgba(38,182,178,.18), transparent 60%),
        rgba(255,255,255,.78);
      box-shadow: 0 18px 50px rgba(16,24,40,.05);
    }
    .token-title{margin:0; font-size:18px; font-weight:1000}
    .token-text{margin:10px 0 0; color:rgba(31,41,55,.72); font-weight:720; line-height:1.7; font-size:14px}

    .token-scroller{
      margin-top:14px;
      border:1px solid rgba(31,41,55,.10);
      border-radius:18px;
      overflow:hidden;
      background:#fff;
    }
    .token-row{
      display:grid;
      grid-template-columns: 1fr 1.2fr 1.3fr;
      gap:10px;
      padding:12px 12px;
      border-bottom:1px solid rgba(31,41,55,.08);
    }
    .token-row:last-child{border-bottom:none}
    .token-head{
      background: rgba(57,197,141,.08);
      font-weight:1000;
      color:rgba(31,41,55,.90);
      border-bottom:1px solid rgba(31,41,55,.10);
    }
    .token-bold{font-weight:1000}
    .token-actions{margin-top:14px; display:flex; gap:12px; flex-wrap:wrap}

    .strategy-list{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .strategy-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.76);
    }
    .strategy-idx{
      width:38px; height:38px;
      border-radius:16px;
      background: rgba(38,182,178,.12);
      color: rgba(18,136,134,1);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      flex:0 0 auto;
    }
    .strategy-title{font-weight:1000}
    .strategy-desc{margin-top:4px; color:rgba(31,41,55,.72); font-weight:720; line-height:1.6; font-size:13.8px}

    .training-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .training-card{
      padding:18px 18px;
      border-radius:var(--radius2);
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 50px rgba(16,24,40,.05);
    }
    .training-card-img{
      background:
        radial-gradient(620px 240px at 10% 0%, rgba(57,197,141,.16), transparent 60%),
        rgba(255,255,255,.78);
    }
    .training-title{margin:0; font-size:18px; font-weight:1000}
    .training-text{margin:10px 0 0; color:rgba(31,41,55,.72); font-weight:720; line-height:1.7; font-size:14px}

    .course-list{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .course-item{
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.76);
    }
    .course-name{font-weight:1000}
    .course-meta{margin-top:6px; color:rgba(31,41,55,.70); font-weight:740; line-height:1.6; font-size:13.8px}

    .training-actions{margin-top:14px; display:flex; gap:12px; flex-wrap:wrap}

    .training-feature-head{margin-bottom:10px}
    .feature-cards{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .feature-card{
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.76);
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .feature-ico{
      width:44px; height:44px;
      border-radius:16px;
      background: rgba(57,197,141,.12);
      color: rgba(31,169,113,1);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .feature-title{font-weight:1000}
    .feature-desc{margin-top:6px; color:rgba(31,41,55,.72); font-weight:730; line-height:1.6; font-size:13.8px}
    .feature-foot{margin-top:14px; display:flex; gap:12px; flex-wrap:wrap}

    .help-grid{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:14px;
      align-items:stretch;
    }
    .help-card{
      padding:18px 18px;
      border-radius:var(--radius2);
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 50px rgba(16,24,40,.05);
    }
    .help-card-tiles{
      background:
        radial-gradient(560px 240px at 90% 0%, rgba(57,197,141,.14), transparent 60%),
        rgba(255,255,255,.78);
    }
    .help-title{margin:0; font-size:18px; font-weight:1000}
    .help-list{margin-top:14px; display:flex; flex-direction:column; gap:10px}
    .help-link{
      text-decoration:none;
      color:rgba(31,41,55,.86);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.76);
      transition: transform .18s ease, background .2s ease, border-color .2s ease;
      font-weight:850;
    }
    .help-link:hover{transform: translateY(-2px); background:#fff; border-color: rgba(31,169,113,.22)}
    .help-left{display:flex; align-items:center; gap:12px}
    .help-ico{
      width:40px; height:40px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(57,197,141,.10);
      border:1px solid rgba(57,197,141,.18);
      color: rgba(31,169,113,1);
      font-weight:1000;
      flex:0 0 auto;
    }
    .help-arrow{color: rgba(31,169,113,1); font-weight:1000}

    .tiles{
      margin-top:14px;
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
    }
    .tile{
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.76);
    }
    .tile-top{font-weight:1000}
    .tile-btm{margin-top:6px; color:rgba(31,41,55,.72); font-weight:720; line-height:1.6; font-size:13.8px}
    .help-actions{margin-top:14px; display:flex; gap:12px; flex-wrap:wrap}

    .faq-grid{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:14px;
      align-items:start;
    }
    .faq-intro{
      padding:18px 18px;
      border-radius:var(--radius2);
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 50px rgba(16,24,40,.05);
    }
    .faq-intro-kicker{
      font-weight:1000;
      color: rgba(31,169,113,1);
      font-size:13px;
      letter-spacing:.2px;
    }
    .faq-intro-title{margin:10px 0 0; font-size:18px; font-weight:1000}
    .faq-intro-desc{margin:10px 0 0; color:rgba(31,41,55,.72); font-weight:720; line-height:1.7; font-size:14px}
    .faq-intro-actions{margin-top:14px; display:flex; gap:12px; flex-wrap:wrap}

    .faq-panel{
      padding:12px 12px;
      border-radius:var(--radius2);
      border:1px solid rgba(31,41,55,.10);
      background:
        radial-gradient(520px 240px at 0% 0%, rgba(57,197,141,.12), transparent 55%),
        rgba(255,255,255,.78);
      box-shadow: 0 18px 50px rgba(16,24,40,.05);
    }
    .accordion{display:flex; flex-direction:column; gap:10px}
    .acc-item{
      border:1px solid rgba(31,41,55,.10);
      border-radius:18px;
      background: rgba(255,255,255,.76);
      overflow:hidden;
    }
    .acc-btn{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 14px;
      background: transparent;
      border:none;
      cursor:pointer;
      text-align:left;
      color:rgba(31,41,55,.90);
    }
    .acc-q{font-weight:1000; font-size:14.5px}
    .acc-icon{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(57,197,141,.10);
      display:flex; align-items:center; justify-content:center;
      color: rgba(31,169,113,1);
      font-weight:1000;
      transition: transform .2s ease;
      flex:0 0 auto;
    }
    .acc-body{
      padding:0 14px 14px;
      color:rgba(31,41,55,.72);
      font-weight:720;
      line-height:1.7;
      font-size:14px;
    }
    .faq-more{
      margin-top:12px;
      padding:12px 14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      border-top:1px dashed rgba(31,41,55,.12);
    }
    .faq-more-text{color:rgba(31,41,55,.76); font-weight:950}

    .wiki-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .wiki-card{
      padding:16px 16px;
      border-radius:var(--radius2);
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 50px rgba(16,24,40,.05);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .wiki-card:hover{transform: translateY(-3px); border-color: rgba(31,169,113,.22); box-shadow: 0 26px 70px rgba(16,24,40,.10)}
    .wiki-title-row{display:flex; align-items:center; justify-content:space-between; gap:10px}
    .wiki-title{margin:0; font-size:16px; font-weight:1000}
    .wiki-text{margin:10px 0 0; color:rgba(31,41,55,.72); font-weight:720; line-height:1.7; font-size:14px}

    .pill-green{background: rgba(57,197,141,.10); border-color: rgba(57,197,141,.22)}
    .pill-teal{background: rgba(38,182,178,.10); border-color: rgba(38,182,178,.22)}
    .pill-mint{background: rgba(57,197,141,.10); border-color: rgba(57,197,141,.22)}
    .pill-lime{background: rgba(154,214,60,.14); border-color: rgba(154,214,60,.24)}

    .wiki-cta{
      margin-top:14px;
      padding:16px 16px;
      border-radius:22px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 50px rgba(16,24,40,.05);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    .wiki-cta-title{margin:0; font-size:18px; font-weight:1000}
    .wiki-cta-desc{margin:6px 0 0; color:rgba(31,41,55,.72); font-weight:720; line-height:1.7; font-size:14px}
    .wiki-cta-right{display:flex; gap:12px; flex-wrap:wrap}

    .news-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:stretch;
    }
    .news-card{
      padding:18px 18px;
      border-radius:var(--radius2);
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 50px rgba(16,24,40,.05);
    }
    .news-card-ads{
      background:
        radial-gradient(620px 240px at 10% 0%, rgba(38,182,178,.14), transparent 60%),
        rgba(255,255,255,.78);
    }
    .news-head{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
    .news-title{margin:0; font-size:18px; font-weight:1000}
    .news-more{color:rgba(31,169,113,1); text-decoration:none; font-weight:950}
    .news-list{margin:12px 0 0; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px}
    .news-item{margin:0}
    .news-link{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.76);
      text-decoration:none;
      color:rgba(31,41,55,.88);
      font-weight:870;
      transition: transform .18s ease, border-color .2s ease, background .2s ease;
    }
    .news-link:hover{transform: translateY(-2px); background:#fff; border-color: rgba(31,169,113,.22)}
    .news-dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(180deg, rgba(57,197,141,1), rgba(38,182,178,.95));
      box-shadow: 0 0 0 6px rgba(57,197,141,.12);
      margin-right:8px;
      flex:0 0 auto;
    }
    .news-text{flex:1}
    .news-tag{
      font-weight:1000;
      font-size:12.5px;
      color:rgba(31,41,55,.70);
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.72);
      white-space:nowrap;
    }

    .news-text{
      margin:10px 0 0;
      color:rgba(31,41,55,.72);
      font-weight:720;
      line-height:1.7;
      font-size:14px;
    }

    .quick-actions{
      margin-top:14px;
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
    }
    .action-card{
      text-decoration:none;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.76);
      transition: transform .18s ease, border-color .2s ease, background .2s ease;
      display:flex;
      flex-direction:column;
      gap:8px;
      min-height:94px;
    }
    .action-card:hover{transform: translateY(-2px); background:#fff; border-color: rgba(31,169,113,.22)}
    .action-ico{
      width:40px; height:40px;
      border-radius:16px;
      background: rgba(57,197,141,.10);
      border:1px solid rgba(57,197,141,.18);
      display:flex; align-items:center; justify-content:center;
      color: rgba(31,169,113,1);
      font-weight:1000;
      font-size:16px;
    }
    .action-title{font-weight:1000}
    .action-desc{color:rgba(31,41,55,.70); font-weight:740; line-height:1.6; font-size:13.8px}

    .contact-inline{display:flex; flex-direction:column; gap:10px; margin-top:10px}
    .contact-line{display:flex; align-items:center; gap:10px; color:rgba(31,41,55,.78); font-weight:800; font-size:14px}
    .contact-ico{
      width:34px; height:34px;
      border-radius:14px;
      background: rgba(57,197,141,.10);
      border:1px solid rgba(57,197,141,.18);
      display:flex; align-items:center; justify-content:center;
      color: rgba(31,169,113,1);
      flex:0 0 auto;
    }

    .news-footer-actions{margin-top:14px; display:flex; gap:12px; flex-wrap:wrap}

    .join-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:stretch;
    }
    .join-card{
      padding:18px 18px;
      border-radius:var(--radius2);
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 50px rgba(16,24,40,.05);
    }
    .join-card-lite{
      background:
        radial-gradient(620px 240px at 90% 0%, rgba(57,197,141,.14), transparent 60%),
        rgba(255,255,255,.78);
    }
    .join-title{margin:0; font-size:18px; font-weight:1000}
    .join-bullets{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .join-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.76);
    }
    .join-ico{
      width:34px; height:34px;
      border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(57,197,141,.12);
      border:1px solid rgba(57,197,141,.22);
      color: rgba(31,169,113,1);
      font-weight:1000;
      flex:0 0 auto;
    }
    .join-name{font-weight:1000}
    .join-desc{margin-top:6px; color:rgba(31,41,55,.72); font-weight:730; line-height:1.6; font-size:13.8px}

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

    .join-steps{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .join-step{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.76);
    }
    .join-step-num{
      width:38px; height:38px;
      border-radius:16px;
      background: rgba(38,182,178,.12);
      border:1px solid rgba(38,182,178,.22);
      color: rgba(18,136,134,1);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      flex:0 0 auto;
    }
    .join-step-title{font-weight:1000}
    .join-step-desc{margin-top:6px; color:rgba(31,41,55,.72); font-weight:730; line-height:1.6; font-size:13.8px}

    .join-network-title{font-weight:1000; margin-bottom:10px}
    .friendly-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .friendly-links a{
      color:rgba(31,41,55,.78);
      text-decoration:none;
      font-weight:900;
      font-size:13px;
      padding:9px 10px;
      border-radius:999px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.72);
      transition: transform .15s ease, background .2s ease, border-color .2s ease;
    }
    .friendly-links a:hover{transform: translateY(-1px); background:#fff; border-color: rgba(31,169,113,.22)}

    .join-secondary{
      margin-top:14px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .join-media-card{
      padding:18px 18px;
      border-radius:var(--radius2);
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 50px rgba(16,24,40,.05);
    }
    .media-head{display:flex; flex-direction:column; gap:6px}
    .media-title{margin:0; font-size:18px; font-weight:1000}
    .media-desc{margin:0; color:rgba(31,41,55,.72); font-weight:720; line-height:1.7; font-size:14px}

    .media-row{
      margin-top:14px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .media-item{
      border-radius:18px;
      overflow:hidden;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.76);
      transition: transform .2s ease;
    }
    .media-item:hover{transform: translateY(-2px)}
    .media-item img{
      width:100%;
      height:auto;
      display:block;
      object-fit:contain;
    }
    .media-caption{
      padding:10px 12px;
      color:rgba(31,41,55,.74);
      font-weight:820;
      font-size:13.5px;
      border-top:1px solid rgba(31,41,55,.08);
      background: rgba(255,255,255,.84);
    }

    .media-square{
      margin-top:14px;
      border-radius:18px;
      overflow:hidden;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.76);
      transition: transform .2s ease;
    }
    .media-square:hover{transform: translateY(-2px)}
    .media-square img{
      width:100%;
      height:auto;
      display:block;
      object-fit:contain;
    }

    .contact-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:stretch;
    }
    .contact-card{
      padding:18px 18px;
      border-radius:var(--radius2);
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 50px rgba(16,24,40,.05);
    }
    .contact-card-qr{
      background:
        radial-gradient(620px 240px at 10% 0%, rgba(57,197,141,.14), transparent 60%),
        rgba(255,255,255,.78);
    }
    .contact-title{margin:0; font-size:18px; font-weight:1000}
    .contact-text{margin:10px 0 0; color:rgba(31,41,55,.72); font-weight:720; line-height:1.7; font-size:14px}
    .contact-ways{
      margin-top:14px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .contact-way{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.76);
    }
    .contact-way-ico{
      width:44px; height:44px;
      border-radius:16px;
      background: rgba(57,197,141,.10);
      border:1px solid rgba(57,197,141,.18);
      color: rgba(31,169,113,1);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .contact-way-title{font-weight:1000}
    .contact-way-link{
      display:inline-block;
      margin-top:6px;
      color: rgba(31,169,113,1);
      text-decoration:none;
      font-weight:950;
      word-break:break-word;
    }

    .contact-inline-actions{margin-top:14px; display:flex; gap:12px; flex-wrap:wrap}

    .qr-wrap{
      margin-top:14px;
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:10px;
      padding:12px 12px;
      border-radius:20px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.76);
    }
    .qr-img{
      width:min(220px, 70vw);
      height:auto;
      display:block;
    }
    .qr-caption{
      font-weight:1000;
      color:rgba(31,41,55,.78);
      font-size:14px;
    }

    .social-links{
      margin-top:14px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .pill-link{
      text-decoration:none;
      color:rgba(31,41,55,.78);
      font-weight:900;
      font-size:13px;
      padding:9px 10px;
      border-radius:999px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.72);
      transition: transform .15s ease, background .2s ease;
    }
    .pill-link:hover{transform: translateY(-1px); background:#fff}

    .float-chat{
      position:fixed;
      right:16px; bottom:16px;
      z-index:70;
      border-radius:999px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 20px 50px rgba(16,24,40,.18);
      padding:12px 14px;
      cursor:pointer;
      display:flex; align-items:center; gap:10px;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    }
    .float-chat:hover{transform: translateY(-2px); background:#fff; box-shadow: 0 26px 70px rgba(16,24,40,.22)}
    .float-chat-ico{width:34px; height:34px; border-radius:16px; background: rgba(57,197,141,.12); border:1px solid rgba(57,197,141,.22); color: rgba(31,169,113,1); display:flex; align-items:center; justify-content:center; font-weight:1000}
    .float-chat-text{font-weight:1000; color:rgba(31,41,55,.82)}

    .chat-drawer{
      position:fixed;
      inset:0;
      z-index:80;
      background: rgba(15,23,42,.35);
      backdrop-filter: blur(10px);
      display:none;
      padding:14px;
      align-items:flex-end;
      justify-content:center;
    }
    .chat-drawer.is-open{display:flex}
    .chat-drawer > div{
      width: min(520px, 100%);
      background: rgba(255,255,255,.92);
      border:1px solid rgba(31,41,55,.10);
      border-radius:24px;
      box-shadow: 0 30px 90px rgba(0,0,0,.25);
      overflow:hidden;
      transform: translateY(12px);
      animation: drawerIn .22s ease forwards;
    }
    @keyframes drawerIn{
      from{opacity:.8; transform: translateY(16px)}
      to{opacity:1; transform: translateY(0px)}
    }
    .chat-drawer-head{
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:14px 14px;
      border-bottom:1px solid rgba(31,41,55,.08);
    }
    .chat-drawer-title{font-weight:1000}
    .chat-drawer-close{
      width:40px; height:40px;
      border-radius:16px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.86);
      cursor:pointer;
      font-size:20px;
      font-weight:1000;
      color:rgba(31,41,55,.70);
    }
    .chat-drawer-close:hover{background:#fff}
    .chat-drawer-body{padding:14px 14px 16px; display:flex; flex-direction:column; gap:12px; align-items:center}
    .chat-drawer-qr{
      width:min(260px, 72vw);
      height:auto;
      display:block;
      border-radius:16px;
      border:1px solid rgba(31,41,55,.10);
      background:#fff;
      padding:6px;
    }
    .chat-drawer-sub{color:rgba(31,41,55,.74); font-weight:800; line-height:1.6; text-align:center; font-size:14px}

    .toast{
      position:fixed;
      left:50%;
      transform: translateX(-50%);
      bottom:92px;
      z-index:90;
      background: rgba(255,255,255,.92);
      border:1px solid rgba(31,41,55,.10);
      border-radius:16px;
      padding:10px 12px;
      box-shadow: 0 18px 60px rgba(16,24,40,.18);
      display:flex;
      align-items:center;
      gap:10px;
    }
    .toast-ico{width:28px; height:28px; border-radius:12px; background: rgba(57,197,141,.12); border:1px solid rgba(57,197,141,.22); color: rgba(31,169,113,1); display:flex; align-items:center; justify-content:center; font-weight:1000}
    .toast-text{font-weight:950; color:rgba(31,41,55,.84)}

    /* Responsive */
    @media (max-width: 980px){
      .hero-inner{grid-template-columns: 1fr; }
      .nav-desktop{display:none}
      .nav-toggle{display:flex}
      .nav-mobile{display:block}
      .service-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
      .about-grid{grid-template-columns: 1fr}
      .two-col{grid-template-columns: 1fr}
      .industry-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
      .step-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
      .case-grid{grid-template-columns: 1fr}
      .compare-top{grid-template-columns: 1fr}
      .match-grid{grid-template-columns: 1fr}
      .token-grid{grid-template-columns: 1fr}
      .training-grid{grid-template-columns: 1fr}
      .help-grid{grid-template-columns: 1fr}
      .faq-grid{grid-template-columns: 1fr}
      .wiki-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
      .news-grid{grid-template-columns: 1fr}
      .join-grid{grid-template-columns: 1fr}
      .join-secondary{grid-template-columns: 1fr}
      .contact-grid{grid-template-columns: 1fr}
      .hero-title{font-size:34px}
      .form-grid{grid-template-columns: 1fr}
      .network-grid{grid-template-columns: 1fr}
      .nav-cta{min-width: auto}
    }

    .nav-toggle{
      display:none;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(31,41,55,.12);
      background: rgba(255,255,255,.75);
      cursor:pointer;
      font-weight:950;
      color:rgba(31,41,55,.78);
      transition: transform .15s ease, background .2s ease;
    }
    .nav-toggle:hover{transform: translateY(-1px); background:#fff}
    .nav-toggle-line{
      width:18px; height:2px;
      background: rgba(31,41,55,.60);
      border-radius:2px;
    }
    .nav-toggle-text{font-size:14px}

    .nav-mobile{
      display:none;
      width:100%;
      position:absolute;
      left:0; right:0;
      top:64px;
      margin:0 auto;
      max-width:var(--container);
      background: rgba(255,255,255,.92);
      border-bottom:1px solid rgba(31,41,55,.08);
      padding:14px 18px 18px;
      box-shadow: 0 30px 90px rgba(16,24,40,.20);
      border-bottom-left-radius:18px;
      border-bottom-right-radius:18px;
    }
    .nav-mobile .nav-item{display:block; padding:12px 8px; font-size:15px}
    @media (max-width:980px){
      .nav{justify-content:flex-start}
      .nav-mobile{display:block}
    }

    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .reveal{transition:none}
      .btn, .nav-item, .service-card, .case-card, .industry-card{transition:none}
    }