:root{
      --bg0:#fff7fb;
      --bg1:#ffffff;
      --ink:#1f2430;
      --muted:#5c667a;
      --muted2:#7a859f;
      --line:rgba(25, 32, 45, .10);
      --line2:rgba(25, 32, 45, .14);

      --brand1:#ff3d86;
      --brand2:#ff76a8;
      --brand3:#ffb2ca;
      --accent:#7c4dff;

      --card:#ffffff;
      --card2:rgba(255,255,255,.78);

      --shadow: 0 18px 50px rgba(26, 33, 55, .10);
      --shadow2: 0 10px 30px rgba(26, 33, 55, .10);
      --shadowSoft: 0 8px 24px rgba(26, 33, 55, .08);

      --radius:18px;
      --radius2:26px;

      --container: 1120px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", Arial, sans-serif;
      color:var(--ink);
      background: linear-gradient(180deg, var(--bg0) 0%, #ffffff 36%, #fbfbff 100%);
    }

    .skip-link{
      position:absolute; left:12px; top:10px;
      transform:translateY(-150%);
      padding:10px 12px;
      background:#111827;
      color:#fff;
      border-radius:10px;
      text-decoration:none;
      z-index:9999;
      transition:transform .2s ease;
    }
    .skip-link:focus{transform:translateY(0)}

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

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

    .bg-wrap{
      position:fixed; inset:0; z-index:-2;
      pointer-events:none;
      overflow:hidden;
    }
    .bg-grid{
      position:absolute; inset:-20%;
      background:
        linear-gradient(to right, rgba(255,61,134,.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,61,134,.06) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: radial-gradient(closest-side, rgba(0,0,0,.65) 0%, rgba(0,0,0,0) 70%);
      opacity:.7;
      transform: rotate(-7deg);
    }
    .bg-orb{
      position:absolute; border-radius:999px;
      filter: blur(26px);
      opacity:.65;
      animation: orbFloat 10s ease-in-out infinite;
    }
    .orb1{ width:520px; height:520px; left:-140px; top:120px; background: radial-gradient(circle at 30% 30%, rgba(255,61,134,.55), rgba(255,61,134,0) 60%); }
    .orb2{ width:440px; height:440px; right:-160px; top:120px; background: radial-gradient(circle at 30% 30%, rgba(124,77,255,.38), rgba(124,77,255,0) 60%); animation-delay:-3s; }
    .orb3{ width:420px; height:420px; left:14%; bottom:-220px; background: radial-gradient(circle at 30% 30%, rgba(255,118,168,.45), rgba(255,118,168,0) 60%); animation-delay:-6s; }

    @keyframes orbFloat{
      0%,100%{ transform: translate3d(0,0,0) scale(1); }
      50%{ transform: translate3d(0,-22px,0) scale(1.02); }
    }

    .site-header{
      position:sticky; top:0; z-index:50;
      backdrop-filter: blur(12px);
      background: rgba(255,255,255,.72);
      border-bottom:1px solid rgba(20, 27, 40, .08);
    }
    .header-inner{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center;
      min-width:170px;
    }
    .nav-desktop{
      display:flex; align-items:center; gap:14px;
      flex:1;
      justify-content:center;
      flex-wrap:wrap;
    }
    .nav-link{
      text-decoration:none;
      color:rgba(31,36,48,.92);
      font-weight:600;
      font-size:14px;
      padding:10px 10px;
      border-radius:12px;
      transition: background .2s ease, transform .2s ease, color .2s ease;
    }
    .nav-link:hover{
      background: rgba(255,61,134,.08);
      color: rgba(31,36,48,1);
      transform: translateY(-1px);
    }

    .header-actions{
      display:flex; align-items:center; justify-content:flex-end;
      gap:10px;
      min-width:210px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:10px 14px;
      border-radius:14px;
      border:1px solid rgba(20, 27, 40, .10);
      text-decoration:none;
      color:rgba(31,36,48,.96);
      background:#fff;
      font-weight:700;
      font-size:14px;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      white-space:nowrap;
      user-select:none;
    }
    .btn:focus{outline:3px solid rgba(255,61,134,.28); outline-offset:2px}
    .btn:hover{ transform: translateY(-1px); box-shadow: var(--shadowSoft); border-color: rgba(255,61,134,.28); }
    .btn-lg{ padding:12px 18px; border-radius:16px; font-size:15px; }
    .btn-block{ width:100%; }
    .btn-primary{
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      border-color: rgba(255,61,134,.32);
      color:#fff;
      box-shadow: 0 14px 40px rgba(255,61,134,.18);
    }
    .btn-primary:hover{
      box-shadow: 0 18px 50px rgba(255,61,134,.22);
      border-color: rgba(255,61,134,.45);
    }
    .btn-ghost{
      background: rgba(255,255,255,.75);
    }
    .btn-soft{
      background: rgba(255,61,134,.08);
      border-color: rgba(255,61,134,.18);
      color: rgba(31,36,48,.98);
    }
    .btn-soft:hover{
      background: rgba(255,61,134,.12);
      border-color: rgba(255,61,134,.30);
    }

    .nav-toggle{
      display:none;
      width:46px; height:42px;
      border-radius:14px;
      border:1px solid rgba(20, 27, 40, .10);
      background: rgba(255,255,255,.8);
      cursor:pointer;
      align-items:center; justify-content:center;
      gap:4px;
      flex-direction:column;
      transition: transform .18s ease, box-shadow .18s ease;
      box-shadow:none;
    }
    .nav-toggle:hover{ transform: translateY(-1px); box-shadow: var(--shadowSoft); }
    .toggle-line{
      width:18px; height:2px;
      background: rgba(31,36,48,.85);
      border-radius:10px;
      display:block;
    }

    .mobile-menu{
      border-top:1px solid rgba(20, 27, 40, .08);
      background: rgba(255,255,255,.92);
      box-shadow: 0 18px 50px rgba(26,33,55,.08);
    }
    .mobile-menu-inner{
      padding:12px 0 16px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .mobile-link{
      text-decoration:none;
      padding:12px 14px;
      border-radius:14px;
      background: rgba(255,61,134,.06);
      border:1px solid rgba(255,61,134,.12);
      color: rgba(31,36,48,.98);
      font-weight:800;
      font-size:14px;
    }
    .mobile-link:hover{ background: rgba(255,61,134,.10); }
    .mobile-menu-actions{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:6px;
    }

    .section{
      padding:64px 0;
    }
    .section-plain{ padding:62px 0; }
    .section-muted{
      background: linear-gradient(180deg, rgba(255,61,134,.04), rgba(255,61,134,.02));
      border-top:1px solid rgba(25, 32, 45, .06);
      border-bottom:1px solid rgba(25, 32, 45, .06);
    }
    .section-highlight{
      background: radial-gradient(1000px 500px at 20% 0%, rgba(255,61,134,.10), rgba(255,61,134,0) 58%),
                  radial-gradient(900px 450px at 90% 30%, rgba(124,77,255,.10), rgba(124,77,255,0) 55%),
                  linear-gradient(180deg, rgba(255,61,134,.05), rgba(255,61,134,.02));
      border-top:1px solid rgba(25, 32, 45, .06);
      border-bottom:1px solid rgba(25, 32, 45, .06);
    }

    .section-head{
      margin-bottom:26px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .h2{
      margin:0;
      font-size:26px;
      letter-spacing:-.02em;
      line-height:1.2;
    }
    .lead{
      margin:0;
      color:var(--muted);
      font-size:16px;
      line-height:1.7;
      max-width:820px;
    }

    .hero{
      padding:56px 0 44px;
    }
    .hero-inner{
      display:grid;
      grid-template-columns: 1.25fr .75fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-copy{
      padding:18px 0;
    }
    .pill-row{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-bottom:16px;
    }
    .pill{
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(255,61,134,.18);
      background: rgba(255,255,255,.70);
      color: rgba(31,36,48,.92);
      font-weight:800;
      font-size:13px;
    }
    .pill-strong{
      border-color: rgba(124,77,255,.20);
      background: rgba(124,77,255,.08);
    }
    .hero-title{
      margin:0 0 12px;
      font-size:40px;
      letter-spacing:-.03em;
      line-height:1.15;
    }
    .hero-subtitle{
      margin:0 0 18px;
      color:var(--muted);
      font-size:16px;
      line-height:1.85;
      max-width:640px;
    }

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

    .hero-highlights{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:12px;
      margin-top:22px;
      max-width:740px;
    }
    .highlight{
      display:flex; gap:12px;
      padding:14px 14px;
      border-radius:16px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,27,40,.10);
      box-shadow: 0 10px 28px rgba(26,33,55,.06);
      align-items:flex-start;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .highlight:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 44px rgba(26,33,55,.10);
      border-color: rgba(255,61,134,.22);
    }
    .highlight-icon{
      width:36px; height:36px;
      display:flex; align-items:center; justify-content:center;
      border-radius:14px;
      background: rgba(255,61,134,.10);
      color: rgba(31,36,48,.95);
      flex:0 0 auto;
    }
    .highlight-title{ font-weight:900; font-size:14px; }
    .highlight-desc{ color:var(--muted); font-weight:650; font-size:13px; margin-top:3px; }

    .hero-panel{
      border-radius:var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,27,40,.10);
      box-shadow: var(--shadow);
      padding:18px;
      display:flex;
      flex-direction:column;
      gap:14px;
      position:relative;
      overflow:hidden;
    }
    .hero-panel:before{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(500px 240px at 20% 0%, rgba(255,61,134,.22), rgba(255,61,134,0) 55%),
                  radial-gradient(420px 220px at 80% 25%, rgba(124,77,255,.18), rgba(124,77,255,0) 55%);
      opacity:.8;
      pointer-events:none;
    }
    .panel-top, .stats-grid, .panel-actions, .micro-list, .panel-divider{
      position:relative;
      z-index:1;
    }
    .panel-title{ font-weight:950; font-size:16px; }
    .panel-note{ color:var(--muted); font-weight:650; font-size:13px; margin-top:4px; }

    .stats-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .stat-card{
      background: rgba(255,255,255,.75);
      border:1px solid rgba(20,27,40,.10);
      border-radius:16px;
      padding:14px 12px;
      transition: transform .18s ease, box-shadow .18s ease;
      min-height:78px;
      display:flex; flex-direction:column;
      justify-content:center;
    }
    .stat-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 50px rgba(26,33,55,.10);
    }
    .stat-value{ font-weight:950; font-size:16px; letter-spacing:-.02em; }
    .stat-label{ margin-top:6px; color:var(--muted); font-size:12.5px; font-weight:700; line-height:1.4; }

    .panel-actions{
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .panel-divider{
      height:1px;
      background: rgba(20,27,40,.10);
      margin:2px 0;
    }

    .micro-list{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .micro-item{
      text-decoration:none;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(20,27,40,.10);
      background: rgba(255,255,255,.68);
      display:flex; align-items:center; justify-content:space-between;
      gap:10px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .micro-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 50px rgba(26,33,55,.10);
      border-color: rgba(255,61,134,.25);
    }
    .micro-dot{
      width:10px; height:10px; border-radius:999px;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow: 0 10px 28px rgba(255,61,134,.25);
      flex:0 0 auto;
    }
    .micro-text{ font-weight:900; font-size:14px; }
    .micro-arrow{ color: rgba(31,36,48,.50); font-weight:900; }

    [data-appear]{
      opacity:0; transform: translateY(10px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .in-view{
      opacity:1; transform: translateY(0);
    }

    .feature-split{
      display:grid;
      grid-template-columns: 1fr 1.2fr;
      gap:16px;
      align-items:start;
    }
    .feature-card{
      border-radius:var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,27,40,.10);
      box-shadow: var(--shadow2);
      padding:18px;
    }
    .feature-card-top .kicker{
      display:inline-flex;
      padding:8px 12px;
      border-radius:999px;
      font-weight:900;
      font-size:13px;
      background: rgba(255,61,134,.08);
      border:1px solid rgba(255,61,134,.18);
      margin-bottom:10px;
    }
    .feature-title{ font-weight:950; font-size:18px; letter-spacing:-.02em; line-height:1.25; }
    .check-list{
      list-style:none; padding:0; margin:16px 0 0;
      display:flex; flex-direction:column; gap:12px;
    }
    .check-list li{
      display:flex; gap:10px;
      color: rgba(31,36,48,.95);
      font-weight:750; line-height:1.6;
    }
    .check{
      width:22px; height:22px; border-radius:10px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,61,134,.12);
      border:1px solid rgba(255,61,134,.18);
      color: rgba(31,36,48,.98);
      flex:0 0 auto;
      margin-top:2px;
      font-size:13px;
      font-weight:950;
    }
    .feature-foot{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:18px;
    }

    .capabilities{
      border-radius:var(--radius2);
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.70));
      border:1px solid rgba(20,27,40,.10);
      box-shadow: var(--shadow2);
      padding:18px;
      overflow:hidden;
      position:relative;
    }
    .capabilities:before{
      content:"";
      position:absolute; inset:-120px -80px auto -80px; height:280px;
      background: radial-gradient(closest-side, rgba(255,61,134,.18), rgba(255,61,134,0) 70%);
      pointer-events:none;
      transform: rotate(-8deg);
    }
    .cap-title{ font-weight:950; font-size:18px; letter-spacing:-.02em; position:relative; z-index:1; }
    .cap-grid{
      position:relative; z-index:1;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:14px;
    }
    .cap-item{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,27,40,.10);
      border-radius:18px;
      padding:14px 14px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:124px;
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .cap-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 50px rgba(26,33,55,.10);
      border-color: rgba(255,61,134,.22);
    }
    .cap-icon{
      width:34px; height:34px;
      border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,61,134,.10);
      color: rgba(31,36,48,.95);
    }
    .cap-name{ font-weight:950; font-size:14px; }
    .cap-desc{ color:var(--muted); font-weight:700; font-size:13px; line-height:1.55; margin-top:auto; }

    .cap-item-last{ grid-column: 1 / -1; }
    .cap-bottom{
      position:relative; z-index:1;
      margin-top:14px;
      padding:14px;
      border-radius:20px;
      border:1px solid rgba(20,27,40,.10);
      background: rgba(255,255,255,.70);
      display:flex; gap:14px; align-items:center; justify-content:space-between;
      flex-wrap:wrap;
    }
    .cap-badge{
      display:flex; gap:10px; align-items:center;
      padding:10px 12px;
      border-radius:18px;
      border:1px dashed rgba(255,61,134,.30);
      background: rgba(255,61,134,.06);
      font-weight:950;
      color: rgba(31,36,48,.98);
      letter-spacing:.02em;
    }
    .cap-badge span{
      padding:6px 10px;
      border-radius:999px;
      background: rgba(255,255,255,.75);
      border:1px solid rgba(20,27,40,.10);
      font-size:12px;
    }
    .cap-bottom-right{ min-width:260px; flex:1; }
    .cap-bottom-title{ font-weight:950; font-size:16px; }
    .cap-bottom-desc{ color:var(--muted); font-weight:720; margin-top:6px; line-height:1.6; }
    .cap-bottom-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:10px; }

    .service-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
    }
    .svc-card{
      border-radius:var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,27,40,.10);
      box-shadow: 0 12px 34px rgba(26,33,55,.06);
      padding:16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      outline:none;
      display:flex; flex-direction:column;
      gap:10px;
      min-height:210px;
    }
    .svc-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 22px 70px rgba(26,33,55,.12);
      border-color: rgba(255,61,134,.22);
    }
    .svc-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .svc-icon{
      width:42px; height:42px;
      border-radius:18px;
      background: rgba(255,61,134,.10);
      display:flex; align-items:center; justify-content:center;
      color: rgba(31,36,48,.98);
      flex:0 0 auto;
    }
    .svc-title{ font-weight:950; font-size:16px; letter-spacing:-.02em; }
    .svc-desc{ color:var(--muted); font-weight:720; line-height:1.7; font-size:13.5px; }
    .svc-tags{ display:flex; gap:8px; flex-wrap:wrap; margin-top:auto; }
    .tag{
      font-size:12.5px;
      font-weight:860;
      color: rgba(31,36,48,.94);
      padding:7px 10px;
      border-radius:999px;
      background: rgba(255,61,134,.07);
      border:1px solid rgba(255,61,134,.14);
    }

    .steps-grid{
      display:grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap:12px;
    }
    .step-card{
      border-radius:var(--radius2);
      background: rgba(255,255,255,.75);
      border:1px solid rgba(20,27,40,.10);
      padding:16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:170px;
      display:flex; flex-direction:column; gap:10px;
    }
    .step-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 22px 70px rgba(26,33,55,.12);
      border-color: rgba(255,61,134,.22);
    }
    .step-num{
      font-weight:1000;
      color: rgba(255,61,134,.95);
      letter-spacing:-.04em;
      font-size:18px;
    }
    .step-title{ font-weight:1000; font-size:16px; }
    .step-desc{ color:var(--muted); font-weight:720; line-height:1.7; font-size:13.5px; margin-top:auto; }

    .callout-row{
      display:flex; gap:12px; align-items:center; justify-content:space-between;
      margin-top:18px;
      flex-wrap:wrap;
    }
    .callout{
      flex:1;
      min-width:280px;
      padding:14px 14px;
      border-radius:22px;
      border:1px solid rgba(20,27,40,.10);
      background: rgba(255,255,255,.70);
    }
    .callout-title{ font-weight:1000; font-size:16px; }
    .callout-desc{ color:var(--muted); margin-top:6px; font-weight:720; line-height:1.7; }

    .feature-split .btn{ height:44px; }
    .callout-actions{ display:flex; gap:10px; flex-wrap:wrap; }

    .industry-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap:12px;
    }
    .industry-item{
      border-radius:var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,27,40,.10);
      padding:16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:178px;
      display:flex; flex-direction:column; gap:10px;
    }
    .industry-item:hover{
      transform: translateY(-3px);
      box-shadow: 0 22px 70px rgba(26,33,55,.12);
      border-color: rgba(255,61,134,.22);
    }
    .industry-title{ font-weight:1000; font-size:16px; letter-spacing:-.02em; }
    .industry-desc{ color:var(--muted); font-weight:720; line-height:1.7; font-size:13.5px; }
    .industry-tags{ display:flex; gap:8px; flex-wrap:wrap; margin-top:auto; }

    .network-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
      align-items:stretch;
    }
    .network-card{
      border-radius:var(--radius2);
      background: rgba(255,255,255,.76);
      border:1px solid rgba(20,27,40,.10);
      padding:16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:210px;
      display:flex; flex-direction:column; gap:12px;
    }
    .network-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 22px 70px rgba(26,33,55,.12);
      border-color: rgba(255,61,134,.22);
    }
    .network-title{ font-weight:1000; font-size:16px; }
    .network-desc{ color:var(--muted); font-weight:720; line-height:1.7; font-size:13.5px; }
    .network-bullets{ margin-top:auto; display:flex; flex-direction:column; gap:10px; }
    .bullet{ display:flex; gap:10px; align-items:center; font-weight:820; color: rgba(31,36,48,.95); }
    .bullet-dot{ width:10px; height:10px; border-radius:999px; background: linear-gradient(135deg, var(--brand1), var(--brand2)); box-shadow: 0 10px 28px rgba(255,61,134,.25); }

    .affix-row{
      display:flex; gap:10px; justify-content:flex-end;
      margin-top:16px;
      flex-wrap:wrap;
    }

    .workflow{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
      align-items:stretch;
    }
    .workflow-left{
      border-radius:var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,27,40,.10);
      box-shadow: var(--shadow2);
      padding:18px;
    }
    .workflow-title{ font-weight:1000; font-size:20px; }
    .workflow-desc{ color:var(--muted); margin-top:8px; font-weight:720; line-height:1.8; }
    .workflow-points{ margin-top:16px; display:flex; flex-direction:column; gap:12px; }
    .workflow-point{
      padding:14px 14px;
      border-radius:18px;
      border:1px solid rgba(20,27,40,.10);
      background: rgba(255,255,255,.72);
    }
    .workflow-point-top{ display:flex; align-items:center; gap:10px; }
    .workflow-dot{
      width:12px; height:12px;
      border-radius:999px;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow: 0 10px 28px rgba(255,61,134,.25);
    }
    .workflow-point-name{ font-weight:1000; }
    .workflow-point-text{ color:var(--muted); font-weight:720; margin-top:7px; line-height:1.7; }

    .workflow-right{
      border-radius:var(--radius2);
      background: rgba(255,255,255,.74);
      border:1px solid rgba(20,27,40,.10);
      box-shadow: var(--shadow2);
      padding:18px;
      display:flex; flex-direction:column; gap:14px;
    }
    .matrix{
      border-radius:20px;
      border:1px solid rgba(20,27,40,.10);
      overflow:hidden;
      background: rgba(255,255,255,.74);
    }
    .matrix-row{
      display:grid;
      grid-template-columns: 1.1fr 1.2fr 1.2fr;
      gap:10px;
      padding:12px 14px;
      border-top:1px solid rgba(20,27,40,.08);
      align-items:start;
      font-size:14px;
    }
    .matrix-row:first-child{ border-top:none; }
    .matrix-head{
      background: rgba(255,61,134,.06);
      font-weight:1000;
    }
    .matrix-actions{
      display:flex; gap:10px; flex-wrap:wrap;
      justify-content:flex-end;
    }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap:12px;
    }
    .case-card{
      border-radius:var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,27,40,.10);
      padding:16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:220px;
      display:flex; flex-direction:column; gap:12px;
    }
    .case-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 22px 70px rgba(26,33,55,.12);
      border-color: rgba(255,61,134,.22);
    }
    .case-top{ display:flex; flex-direction:column; gap:8px; }
    .case-badge{
      display:inline-flex; align-items:center;
      width:max-content;
      padding:8px 12px;
      border-radius:999px;
      background: rgba(124,77,255,.08);
      border:1px solid rgba(124,77,255,.18);
      font-weight:1000;
      font-size:13px;
    }
    .case-meta{ color:var(--muted2); font-weight:750; font-size:12.5px; }
    .case-title{ font-weight:1000; font-size:16px; letter-spacing:-.02em; }
    .case-desc{ color:var(--muted); font-weight:720; line-height:1.7; font-size:13.5px; margin-top:2px; }
    .case-foot{ margin-top:auto; display:flex; gap:10px; flex-wrap:wrap; }

    .compare-hero{
      display:grid;
      grid-template-columns: .55fr .45fr;
      gap:14px;
      align-items:stretch;
      margin-bottom:14px;
    }
    .compare-rating{
      border-radius:var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,27,40,.10);
      box-shadow: var(--shadow2);
      padding:18px;
      display:flex; flex-direction:column; gap:10px;
      justify-content:center;
    }
    .compare-star{
      letter-spacing: .15em;
      font-size:18px;
      color: rgba(255,61,134,.95);
      font-weight:1000;
    }
    .compare-score{
      font-size:30px;
      font-weight:1100;
      letter-spacing:-.03em;
    }
    .score-num{ color: rgba(31,36,48,.98); }
    .score-total{ color: var(--muted2); font-size:14px; font-weight:950; margin-left:6px; }
    .compare-text{ color:var(--muted); font-weight:820; line-height:1.6; margin-top:2px; }

    .compare-highlight{
      border-radius:var(--radius2);
      background: linear-gradient(180deg, rgba(255,61,134,.08), rgba(255,61,134,.02));
      border:1px solid rgba(255,61,134,.18);
      padding:18px;
      display:flex;
      flex-direction:column;
      gap:12px;
      box-shadow: 0 16px 44px rgba(26,33,55,.07);
    }
    .highlight-line{
      display:flex; align-items:center; justify-content:space-between;
      gap:12px;
      padding:12px 12px;
      border-radius:18px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(20,27,40,.08);
    }
    .hl-dot{
      width:10px; height:10px;
      border-radius:999px;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow: 0 10px 28px rgba(255,61,134,.25);
      flex:0 0 auto;
    }
    .highlight-line span{ font-weight:900; color: rgba(31,36,48,.98); }
    .highlight-line strong{ font-weight:1100; color: rgba(31,36,48,.98); text-align:right; }

    .compare-table-wrap{ overflow:auto; border-radius:var(--radius2); }
    .compare-table{
      min-width:860px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,27,40,.10);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow2);
      overflow:hidden;
    }
    .compare-row{
      display:grid;
      grid-template-columns: .95fr 1.05fr 1.05fr;
      gap:10px;
      padding:12px 14px;
      border-top:1px solid rgba(20,27,40,.08);
      align-items:center;
      font-size:14px;
    }
    .compare-row:first-child{ border-top:none; }
    .compare-head{
      background: rgba(255,61,134,.06);
      font-weight:1000;
    }
    .dim{ font-weight:1000; color: rgba(31,36,48,.98); }
    .val-good, .val-mid{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
    }
    .badge-good, .badge-mid{
      padding:7px 10px;
      border-radius:999px;
      font-weight:1100;
      font-size:12.5px;
      border:1px solid rgba(20,27,40,.10);
    }
    .badge-good{
      background: rgba(255,61,134,.10);
      border-color: rgba(255,61,134,.18);
      color: rgba(31,36,48,.98);
    }
    .badge-mid{
      background: rgba(124,77,255,.08);
      border-color: rgba(124,77,255,.18);
      color: rgba(31,36,48,.98);
    }
    .muted{ color:var(--muted2); font-weight:800; }
    .compare-cta{
      margin-top:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,27,40,.10);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow2);
      padding:16px;
      display:flex; align-items:center; justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }
    .compare-cta-title{ font-weight:1100; font-size:18px; }
    .compare-cta-desc{ color:var(--muted); margin-top:6px; font-weight:720; line-height:1.7; }
    .compare-cta-right{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }

    .token-layout{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .token-panel{
      border-radius:var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,27,40,.10);
      box-shadow: var(--shadow2);
      padding:18px;
      position:relative;
      overflow:hidden;
    }
    .token-panel:before{
      content:"";
      position:absolute; inset:-120px -120px auto -120px; height:280px;
      background: radial-gradient(closest-side, rgba(124,77,255,.16), rgba(124,77,255,0) 70%);
      pointer-events:none;
    }
    .token-panel-title{ position:relative; z-index:1; font-weight:1100; font-size:18px; }
    .token-steps{ position:relative; z-index:1; list-style:none; padding:0; margin:14px 0 0; display:flex; flex-direction:column; gap:12px; }
    .token-steps li{
      display:flex; gap:12px; align-items:flex-start;
      color: rgba(31,36,48,.96);
      font-weight:820;
      line-height:1.7;
    }
    .token-steps .n{
      width:26px; height:26px;
      border-radius:12px;
      background: rgba(255,61,134,.10);
      border:1px solid rgba(255,61,134,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:1100;
      flex:0 0 auto;
      margin-top:2px;
    }
    .token-panel-foot{ position:relative; z-index:1; margin-top:18px; display:flex; gap:10px; flex-wrap:wrap; }

    .token-table{
      border-radius:var(--radius2);
      border:1px solid rgba(20,27,40,.10);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow2);
      overflow:hidden;
      padding:0;
    }
    .token-row{
      display:grid;
      grid-template-columns: 1.1fr 1.2fr 1.2fr;
      gap:10px;
      padding:12px 14px;
      border-top:1px solid rgba(20,27,40,.08);
      align-items:start;
      font-size:14px;
    }
    .token-row:first-child{ border-top:none; }
    .token-head{
      background: rgba(255,61,134,.06);
      font-weight:1100;
    }
    .t-dim{ color: rgba(31,36,48,.98); font-weight:1100; }

    .token-photo-strip{
      margin-top:14px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,27,40,.10);
      background: rgba(255,255,255,.74);
      box-shadow: var(--shadow2);
      padding:16px;
    }
    .strip-title{ font-weight:1100; font-size:16px; }
    .strip-images{ margin-top:12px; display:grid; grid-template-columns: 1.1fr .9fr; gap:12px; }
    .strip-card{
      text-decoration:none;
      border-radius:20px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,27,40,.10);
      padding:12px;
      display:flex; flex-direction:column; gap:10px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .strip-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 22px 70px rgba(26,33,55,.12);
      border-color: rgba(255,61,134,.22);
    }
    .strip-card-label{ font-weight:1100; }
    .strip-card-images{
      display:flex; gap:10px;
      align-items:stretch;
    }
    .strip-card-images img{
      width:50%;
      max-width:100%;
      height:auto;
      border-radius:14px;
      border:1px solid rgba(20,27,40,.10);
      background:#fff;
    }
    .strip-card-images.one{ flex-direction:column; }
    .strip-card-images.one img{ width:100%; }
    .strip-note{ margin-top:10px; color:var(--muted); font-weight:720; line-height:1.7; }

    .training-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
      align-items:start;
    }
    .train-left, .train-cards, .side-stack{ }
    .train-left{
      border-radius:var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,27,40,.10);
      box-shadow: var(--shadow2);
      padding:18px;
    }
    .train-title{ font-weight:1100; font-size:18px; }
    .train-desc{ color:var(--muted); font-weight:720; line-height:1.8; margin-top:8px; }
    .train-list{
      margin-top:14px;
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    .train-item{
      padding:12px 14px;
      border-radius:18px;
      background: rgba(255,61,134,.06);
      border:1px solid rgba(255,61,134,.14);
      font-weight:950;
      color: rgba(31,36,48,.98);
    }
    .train-actions{ margin-top:16px; display:flex; gap:10px; flex-wrap:wrap; }

    .train-right{
      border-radius:var(--radius2);
      background: rgba(255,255,255,.74);
      border:1px solid rgba(20,27,40,.10);
      box-shadow: var(--shadow2);
      padding:18px;
    }
    .train-cards{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .train-card{
      border-radius:20px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,27,40,.10);
      padding:16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:120px;
      display:flex; flex-direction:column; gap:10px;
    }
    .train-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 22px 70px rgba(26,33,55,.12);
      border-color: rgba(255,61,134,.22);
    }
    .train-card-top{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
    .train-card-icon{
      width:44px; height:44px;
      border-radius:18px;
      background: rgba(255,61,134,.10);
      display:flex; align-items:center; justify-content:center;
      color: rgba(31,36,48,.98);
      flex:0 0 auto;
    }
    .train-card-title{ font-weight:1100; font-size:16px; }
    .train-card-desc{ color:var(--muted); font-weight:720; line-height:1.7; }

    .train-badgebar{
      margin-top:14px;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .badge-pill{
      padding:9px 12px;
      border-radius:999px;
      background: rgba(255,61,134,.08);
      border:1px solid rgba(255,61,134,.16);
      font-weight:1000;
      color: rgba(31,36,48,.98);
      font-size:13px;
    }

    .faq-two-col{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:16px;
      align-items:start;
    }
    .faq-panel{
      border-radius:var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,27,40,.10);
      box-shadow: var(--shadow2);
      padding:18px;
    }
    .faq-panel-title{ font-weight:1100; font-size:18px; margin-bottom:12px; }
    .faq-list{ display:flex; flex-direction:column; gap:10px; }
    .faq-item{
      border-radius:18px;
      border:1px solid rgba(20,27,40,.10);
      background: rgba(255,255,255,.78);
      overflow:hidden;
      transition: border-color .18s ease, transform .18s ease;
    }
    .faq-item:hover{ border-color: rgba(255,61,134,.22); transform: translateY(-1px); }
    .faq-summary{
      list-style:none;
      cursor:pointer;
      padding:14px 14px;
      font-weight:1000;
      display:flex; align-items:center; justify-content:space-between;
      gap:12px;
      user-select:none;
      color: rgba(31,36,48,.98);
    }
    .faq-summary::-webkit-details-marker{ display:none; }
    .faq-plus{
      width:22px; height:22px;
      border-radius:10px;
      background: rgba(255,61,134,.08);
      border:1px solid rgba(255,61,134,.18);
      position:relative;
      flex:0 0 auto;
    }
    .faq-plus:before, .faq-plus:after{
      content:"";
      position:absolute; left:50%; top:50%;
      width:10px; height:2px;
      background: rgba(31,36,48,.78);
      transform: translate(-50%, -50%);
      border-radius:10px;
    }
    .faq-plus:after{
      width:2px; height:10px;
      transition: transform .18s ease, opacity .18s ease;
    }
    details[open] .faq-plus:after{
      transform: translate(-50%, -50%) rotate(90deg);
      opacity:0;
    }
    .faq-content{
      padding:0 14px 14px;
      color: var(--muted);
      font-weight:720;
      line-height:1.8;
      font-size:14px;
    }

    .faq-side{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .side-card{
      border-radius:var(--radius2);
      border:1px solid rgba(20,27,40,.10);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow2);
      padding:18px;
    }
    .side-card-soft{
      background: linear-gradient(180deg, rgba(255,61,134,.06), rgba(255,61,134,.02));
    }
    .side-title{ font-weight:1100; font-size:18px; }
    .side-desc{ color:var(--muted); font-weight:720; line-height:1.8; margin-top:8px; }
    .side-actions{ display:flex; gap:10px; margin-top:14px; }
    .btn.btn-block{ width:100%; }
    .side-divider{ height:1px; background: rgba(20,27,40,.10); margin:16px 0; }
    .contact-mini{ display:flex; flex-direction:column; gap:10px; }
    .mini-row{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
    .mini-label{ color: var(--muted2); font-weight:850; font-size:13px; }
    .mini-link{
      text-decoration:none;
      color: rgba(31,36,48,.98);
      font-weight:950;
      border-bottom:1px dashed rgba(255,61,134,.38);
      padding-bottom:2px;
    }
    .mini-text{ color: rgba(31,36,48,.98); font-weight:950; font-size:13px; }
    .side-qrcode .q-title{ font-weight:1100; font-size:15px; }
    .side-qrcode img{
      width:160px; max-width:100%;
      border-radius:16px;
      border:1px solid rgba(20,27,40,.10);
      background:#fff;
      margin-top:10px;
      display:block;
    }
    .q-note{ margin-top:10px; color:var(--muted); font-weight:720; line-height:1.7; font-size:13.5px; }
    .side-small{ color:var(--muted); margin-top:10px; font-weight:720; line-height:1.7; font-size:13.5px; }

    .wiki-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap:12px;
    }
    .wiki-card{
      border-radius:var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,27,40,.10);
      padding:16px;
      min-height:160px;
      box-shadow: 0 12px 34px rgba(26,33,55,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex; flex-direction:column; gap:10px;
    }
    .wiki-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 22px 70px rgba(26,33,55,.12);
      border-color: rgba(255,61,134,.22);
    }
    .wiki-title{ font-weight:1100; font-size:16px; letter-spacing:-.02em; }
    .wiki-desc{ margin-top:auto; color:var(--muted); font-weight:720; line-height:1.8; }

    .articles-layout{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:16px;
      align-items:start;
    }
    .article-list{
      border-radius:var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,27,40,.10);
      box-shadow: var(--shadow2);
      padding:18px;
    }
    .article-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:12px;
      margin-bottom:12px;
    }
    .article-title{ font-weight:1100; font-size:18px; }
    .article-hint{ color:var(--muted2); font-weight:800; font-size:13px; }
    .article-items{ display:flex; flex-direction:column; gap:10px; }
    .article-item{
      text-decoration:none;
      border-radius:20px;
      border:1px solid rgba(20,27,40,.10);
      background: rgba(255,255,255,.78);
      padding:14px 14px;
      display:flex; align-items:center; justify-content:space-between;
      gap:12px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .article-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 22px 70px rgba(26,33,55,.12);
      border-color: rgba(255,61,134,.22);
    }
    .article-item-left{ display:flex; flex-direction:column; gap:8px; }
    .article-tag{
      width:max-content;
      padding:7px 10px;
      border-radius:999px;
      background: rgba(255,61,134,.08);
      border:1px solid rgba(255,61,134,.16);
      font-weight:1100;
      font-size:12.5px;
    }
    .article-item-title{ font-weight:1000; color: rgba(31,36,48,.98); line-height:1.4; }
    .article-item-right{ color: rgba(31,36,48,.55); font-weight:1000; }

    .articles-side .side-stack{ display:flex; flex-direction:column; gap:12px; }
    .side-banner{
      border-radius:var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,27,40,.10);
      box-shadow: var(--shadow2);
      padding:18px;
    }
    .side-banner-title{ font-weight:1100; font-size:18px; }
    .side-banner-desc{ color:var(--muted); font-weight:720; margin-top:8px; line-height:1.8; }
    .banner-images{
      margin-top:14px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      align-items:start;
    }
    .banner-images img{
      width:100%;
      height:auto;
      border-radius:18px;
      border:1px solid rgba(20,27,40,.10);
      background:#fff;
      transition: transform .18s ease;
    }
    .side-banner:hover .banner-images img{ transform: translateZ(0); }
    .side-banner-actions{ margin-top:14px; }

    .links-card{
      border-radius:var(--radius2);
      border:1px solid rgba(20,27,40,.10);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow2);
      padding:18px;
    }
    .links-title{ font-weight:1100; font-size:18px; margin-bottom:12px; }
    .links-grid{
      display:flex; gap:10px;
      flex-wrap:wrap;
    }
    .link-pill{
      text-decoration:none;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(20,27,40,.10);
      background: rgba(255,61,134,.06);
      color: rgba(31,36,48,.98);
      font-weight:950;
      font-size:13px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .link-pill:hover{
      transform: translateY(-2px);
      box-shadow: 0 22px 70px rgba(26,33,55,.12);
      border-color: rgba(255,61,134,.22);
    }

    .contact-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:16px;
      align-items:start;
    }
    .form-card{
      border-radius:var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,27,40,.10);
      box-shadow: var(--shadow2);
      padding:18px;
    }
    .form-head{ margin-bottom:12px; }
    .form-title{ font-weight:1100; font-size:18px; }
    .form-desc{ color:var(--muted); font-weight:720; line-height:1.8; margin-top:8px; }

    .form{
      margin-top:10px;
      display:flex; flex-direction:column; gap:12px;
    }
    .form-row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .form-row .field{ width:100%; }
    .field{
      display:flex; flex-direction:column; gap:8px;
    }
    .label{
      font-weight:950;
      color: rgba(31,36,48,.96);
      font-size:13px;
    }
    input, select, textarea{
      width:100%;
      border-radius:16px;
      border:1px solid rgba(20,27,40,.12);
      background: rgba(255,255,255,.82);
      padding:12px 12px;
      color: rgba(31,36,48,.98);
      font-weight:750;
      outline:none;
      transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
      font-size:14px;
    }
    textarea{ resize:vertical; min-height:120px; }
    input:focus, select:focus, textarea:focus{
      border-color: rgba(255,61,134,.40);
      box-shadow: 0 0 0 4px rgba(255,61,134,.14);
    }

    .form-actions{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:2px;
    }
    .form-footnote{
      color:var(--muted2);
      font-weight:720;
      line-height:1.7;
      font-size:12.8px;
    }

    .contact-sidecards{
      display:flex; flex-direction:column; gap:12px;
    }
    .side-contact-card{
      border-radius:var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,27,40,.10);
      box-shadow: var(--shadow2);
      padding:18px;
    }
    .side-contact-card-soft{
      background: linear-gradient(180deg, rgba(255,61,134,.06), rgba(255,61,134,.02));
    }
    .side-contact-title{ font-weight:1100; font-size:18px; }
    .side-contact-desc{ margin-top:8px; color:var(--muted); font-weight:720; line-height:1.8; }
    .contact-lines{ margin-top:12px; display:flex; flex-direction:column; gap:10px; }
    .contact-line{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
    .cl-label{ color:var(--muted2); font-weight:900; font-size:13px; }
    .cl-link{ text-decoration:none; color: rgba(31,36,48,.98); font-weight:1000; border-bottom:1px dashed rgba(255,61,134,.35); padding-bottom:2px; }
    .cl-text{ color: rgba(31,36,48,.98); font-weight:1000; font-size:13px; }
    .side-contact-actions{ margin-top:14px; }

    .qr-wrap img{
      width:180px; max-width:100%;
      border-radius:18px;
      border:1px solid rgba(20,27,40,.10);
      background:#fff;
      display:block;
      margin-top:12px;
      margin-inline:auto;
    }
    .qr-note{ margin-top:10px; text-align:center; color:var(--muted); font-weight:720; line-height:1.7; }

    .join-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
      align-items:start;
    }
    .join-left, .join-right{
      border-radius:var(--radius2);
      border:1px solid rgba(20,27,40,.10);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow2);
      padding:18px;
      overflow:hidden;
      position:relative;
    }
    .join-desc{ margin-top:8px; color:var(--muted); font-weight:720; line-height:1.8; }
    .join-bullets{
      margin-top:14px;
      display:flex; flex-direction:column; gap:12px;
    }
    .join-bullet{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px 14px;
      border-radius:20px;
      background: rgba(255,255,255,.76);
      border:1px solid rgba(20,27,40,.10);
      transition: transform .18s ease, border-color .18s ease;
    }
    .join-bullet:hover{ transform: translateY(-2px); border-color: rgba(255,61,134,.22); }
    .join-ico{
      width:30px; height:30px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,61,134,.10);
      border:1px solid rgba(255,61,134,.18);
      font-weight:1100;
      flex:0 0 auto;
      margin-top:2px;
    }
    .join-actions{ margin-top:16px; display:flex; gap:10px; flex-wrap:wrap; }

    .persona-grid{
      margin-top:14px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .persona-card{
      padding:14px 14px;
      border-radius:20px;
      border:1px solid rgba(20,27,40,.10);
      background: rgba(255,255,255,.78);
      min-height:108px;
      display:flex; flex-direction:column; gap:8px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .persona-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 22px 70px rgba(26,33,55,.12);
      border-color: rgba(255,61,134,.22);
    }
    .persona-role{ font-weight:1100; }
    .persona-desc{ color:var(--muted); font-weight:720; line-height:1.7; margin-top:auto; }
    .join-package-title{ font-weight:1100; font-size:18px; }
    .join-package-bottom{
      margin-top:14px;
      padding-top:14px;
      border-top:1px solid rgba(20,27,40,.08);
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .join-mini-title{ font-weight:1100; }
    .join-mini-desc{ color:var(--muted); font-weight:720; line-height:1.7; margin-top:6px; }
    .join-mini-btns{ display:flex; gap:10px; flex-wrap:wrap; }

    .join-costline{
      position:absolute; inset:auto -20% -120px -20%;
      height:160px;
      display:flex; flex-wrap:wrap;
      gap:10px;
      align-items:flex-end;
      padding:16px;
      pointer-events:none;
      opacity:.85;
      background: radial-gradient(closest-side, rgba(255,61,134,.14), rgba(255,61,134,0) 70%);
      transform: rotate(-5deg);
    }
    .costline-pill{
      padding:9px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.75);
      border:1px solid rgba(20,27,40,.10);
      font-weight:950;
      color: rgba(31,36,48,.98);
      font-size:13px;
    }

    .final-cta{
      border-radius:var(--radius2);
      background: radial-gradient(950px 360px at 10% 0%, rgba(255,61,134,.18), rgba(255,61,134,0) 55%),
                  radial-gradient(900px 420px at 85% 40%, rgba(124,77,255,.16), rgba(124,77,255,0) 55%),
                  rgba(255,255,255,.78);
      border:1px solid rgba(20,27,40,.10);
      box-shadow: var(--shadow2);
      padding:18px;
      display:flex; align-items:center; justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    .final-cta-title{ font-weight:1100; font-size:20px; }
    .final-cta-desc{ margin-top:8px; color:var(--muted); font-weight:720; line-height:1.8; }
    .final-cta-right{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }

    .site-footer{
      background: linear-gradient(180deg, rgba(255,255,255,.8), rgba(255,255,255,.92));
      border-top:1px solid rgba(20,27,40,.08);
      padding:36px 0 22px;
    }
    .footer-inner{ }
    .footer-top{
      display:flex; gap:18px; align-items:flex-start; justify-content:space-between;
      flex-wrap:wrap;
    }
    .footer-brand{
      min-width:260px;
      display:flex; flex-direction:column; gap:10px;
    }
    .footer-desc{ color:var(--muted); font-weight:720; line-height:1.8; max-width:420px; }
    .footer-cols{
      display:grid;
      grid-template-columns: repeat(3, minmax(220px, 1fr));
      gap:14px;
      flex:1;
    }
    .footer-col-title{
      font-weight:1100;
      margin-bottom:10px;
      font-size:14px;
    }
    .footer-links{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .footer-links a{
      text-decoration:none;
      color: rgba(31,36,48,.92);
      font-weight:800;
      font-size:13.5px;
      width:max-content;
      max-width:100%;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      border-bottom:1px dashed rgba(255,61,134,.24);
      padding-bottom:2px;
    }
    .footer-links a:hover{ border-bottom-color: rgba(255,61,134,.55); }

    .footer-bottom{
      margin-top:22px;
      padding-top:16px;
      border-top:1px solid rgba(20,27,40,.08);
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      flex-wrap:wrap;
    }
    .copy{ color:var(--muted2); font-weight:820; font-size:13px; }
    .back-top{
      text-decoration:none;
      color: rgba(31,36,48,.96);
      font-weight:1000;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(20,27,40,.10);
      background: rgba(255,255,255,.8);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .back-top:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadowSoft);
      border-color: rgba(255,61,134,.22);
    }

    .float-btn{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:80;
      display:flex; align-items:center; gap:10px;
      padding:12px 14px;
      border-radius:18px;
      border:1px solid rgba(255,61,134,.20);
      background: linear-gradient(135deg, rgba(255,61,134,.95), rgba(255,118,168,.92));
      color:#fff;
      font-weight:1100;
      cursor:pointer;
      box-shadow: 0 18px 50px rgba(255,61,134,.22);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .float-btn:hover{
      transform: translateY(-3px);
      box-shadow: 0 26px 70px rgba(255,61,134,.28);
    }
    .float-icon{
      width:30px; height:30px;
      border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,255,255,.22);
      border:1px solid rgba(255,255,255,.28);
      flex:0 0 auto;
    }
    .float-text{ font-size:14px; }

    .chat-pop{
      position:fixed; inset:0;
      background: rgba(17,24,39,.35);
      z-index:90;
      display:flex;
      align-items:flex-end;
      justify-content:center;
      padding:14px;
    }
    .chat-pop-inner{
      width:100%;
      max-width:760px;
      border-radius:26px;
      background: rgba(255,255,255,.92);
      border:1px solid rgba(255,255,255,.55);
      box-shadow: 0 28px 90px rgba(0,0,0,.22);
      overflow:hidden;
    }
    .chat-pop-head{
      padding:16px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      background: linear-gradient(135deg, rgba(255,61,134,.12), rgba(124,77,255,.10));
      border-bottom:1px solid rgba(20,27,40,.08);
    }
    .chat-title{ font-weight:1200; font-size:16px; }
    .chat-sub{ color:var(--muted); font-weight:720; margin-top:6px; line-height:1.6; font-size:13.5px; }
    .chat-close{
      width:40px; height:40px;
      border-radius:16px;
      border:1px solid rgba(20,27,40,.10);
      background: rgba(255,255,255,.82);
      cursor:pointer;
      font-size:22px;
      line-height:1;
      font-weight:900;
    }
    .chat-pop-body{
      padding:16px;
      display:grid;
      grid-template-columns: .85fr 1.15fr;
      gap:14px;
      align-items:start;
    }
    .chat-pop-qrcode img{
      width:220px; max-width:100%;
      border-radius:20px;
      border:1px solid rgba(20,27,40,.10);
      background:#fff;
      display:block;
      margin:0 auto;
    }
    .chat-pop-qnote{ text-align:center; color:var(--muted); font-weight:720; line-height:1.7; margin-top:10px; }
    .chat-pop-links{ display:flex; flex-direction:column; gap:10px; }

    @media (max-width: 980px){
      .hero-inner{ grid-template-columns: 1fr; }
      .hero-highlights{ grid-template-columns: 1fr; }
      .feature-split{ grid-template-columns: 1fr; }
      .service-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .steps-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .industry-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .network-grid{ grid-template-columns: 1fr; }
      .workflow{ grid-template-columns: 1fr; }
      .case-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .compare-hero{ grid-template-columns: 1fr; }
      .token-layout{ grid-template-columns: 1fr; }
      .training-grid{ grid-template-columns: 1fr; }
      .faq-two-col{ grid-template-columns: 1fr; }
      .wiki-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .articles-layout{ grid-template-columns: 1fr; }
      .banner-images{ grid-template-columns: 1fr 1fr; }
      .contact-grid{ grid-template-columns: 1fr; }
      .join-grid{ grid-template-columns: 1fr; }
      .footer-cols{ grid-template-columns: 1fr; }
      .chat-pop-body{ grid-template-columns: 1fr; }
    }

    @media (max-width: 760px){
      .nav-desktop{ display:none; }
      .nav-toggle{ display:flex; }
      .header-actions{ min-width:auto; }
      .hero-title{ font-size:32px; }
      .hero-panel{ padding:14px; }
      .stats-grid{ grid-template-columns: 1fr 1fr; }
      .service-grid{ grid-template-columns: 1fr; }
      .steps-grid{ grid-template-columns: 1fr; }
      .industry-grid{ grid-template-columns: 1fr; }
      .case-grid{ grid-template-columns: 1fr; }
      .wiki-grid{ grid-template-columns: 1fr; }
      .form-row{ grid-template-columns: 1fr; }
      .strip-images{ grid-template-columns: 1fr; }
      .chat-pop{ align-items:flex-end; }
    }