:root{
      --bg0:#fbf7f2;
      --bg1:#ffffff;
      --text:#1f2430;
      --muted:#5b6476;
      --line:rgba(22,26,36,.10);
      --shadow: 0 14px 45px rgba(20,30,50,.10);
      --shadow2: 0 10px 26px rgba(20,30,50,.12);
      --radius:18px;

      --a:#ff3d7f;
      --b:#6a5cff;
      --c:#00b3ff;
      --d:#ffb020;

      --primary:#1d4ed8;
      --primary2:#2563eb;

      --btn:#111827;
      --btnSoftBg: rgba(37,99,235,.08);
      --btnSoftBd: rgba(37,99,235,.18);

      --focus: 0 0 0 4px rgba(37,99,235,.18);
    }

    *{ box-sizing:border-box; }
    html,body{ height:100%; }
    body{
      margin:0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB",
                   "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif, "Apple Color Emoji","Segoe UI Emoji";
      color:var(--text);
      background:
        radial-gradient(900px 420px at 15% -10%, rgba(255,61,127,.18), transparent 55%),
        radial-gradient(900px 520px at 85% 0%, rgba(106,92,255,.18), transparent 55%),
        radial-gradient(720px 420px at 50% 20%, rgba(0,179,255,.10), transparent 60%),
        linear-gradient(180deg, var(--bg0), #ffffff 55%, #fbfbfd);
      overflow-x:hidden;
    }

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

    .container{
      width: min(1120px, calc(100% - 28px));
      margin: 0 auto;
    }

    .site-header{
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,.65);
      border-bottom: 1px solid rgba(22,26,36,.08);
    }
    .nav-container{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding: 14px 0;
      gap: 16px;
    }

    .brand{
      display:flex; align-items:center; gap:12px;
      min-width: 240px;
    }
    .ai-page-logo{
      width: 42px;
      height: 42px;
      object-fit: contain;
    }
    .brand-text{ display:flex; flex-direction:column; line-height:1.1; }
    .brand-name{ font-weight: 900; letter-spacing:.2px; }
    .brand-sub{ font-size: 12px; color:var(--muted); margin-top:4px; }

    .nav-desktop{
      display:flex; align-items:center; gap: 18px;
      flex-wrap: nowrap;
      justify-content:center;
    }
    .nav-link{
      text-decoration:none;
      color: rgba(31,36,48,.86);
      font-weight: 700;
      font-size: 14px;
      padding: 10px 8px;
      border-radius: 12px;
      transition: transform .15s ease, background-color .15s ease, color .15s ease;
      white-space:nowrap;
    }
    .nav-link:hover{
      background: rgba(37,99,235,.08);
      color: rgba(31,36,48,1);
      transform: translateY(-1px);
    }
    .nav-link-cta{
      background: linear-gradient(135deg, rgba(255,61,127,.15), rgba(106,92,255,.12));
      border: 1px solid rgba(106,92,255,.18);
    }

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

    .menu-btn{
      display:none;
      align-items:center; gap: 10px;
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid rgba(22,26,36,.12);
      background: rgba(255,255,255,.75);
      color: var(--text);
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      font-weight: 800;
      white-space:nowrap;
    }
    .menu-btn:focus{ outline:none; box-shadow: var(--focus); }
    .menu-btn:hover{ transform: translateY(-1px); border-color: rgba(37,99,235,.35); box-shadow: 0 10px 22px rgba(37,99,235,.12); }

    .menu-ico{
      width: 18px; height: 12px;
      display:inline-block;
      position:relative;
    }
    .menu-ico::before, .menu-ico::after{
      content:"";
      position:absolute; left:0; right:0;
      height:2px; border-radius:3px;
      background: rgba(31,36,48,.86);
    }
    .menu-ico::before{ top:0; }
    .menu-ico::after{ bottom:0; }
    .menu-ico{ background: linear-gradient(rgba(31,36,48,.86), rgba(31,36,48,.86)) center/100% 2px no-repeat; }

    .btn{
      display:inline-flex;
      align-items:center; justify-content:center;
      border-radius: 14px;
      padding: 11px 14px;
      font-weight: 900;
      text-decoration:none;
      cursor:pointer;
      border: 1px solid transparent;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:focus{ outline:none; box-shadow: var(--focus); }
    .btn:hover{ transform: translateY(-1px); }

    .btn-primary{
      color:#fff;
      background: linear-gradient(135deg, var(--a), var(--b) 55%, var(--c));
      box-shadow: 0 14px 28px rgba(106,92,255,.22);
    }
    .btn-primary:hover{ box-shadow: 0 18px 42px rgba(106,92,255,.28); }

    .btn-ghost{
      color: rgba(31,36,48,.92);
      background: rgba(255,255,255,.7);
      border-color: rgba(22,26,36,.16);
    }
    .btn-ghost:hover{
      border-color: rgba(37,99,235,.35);
      box-shadow: 0 12px 24px rgba(37,99,235,.10);
    }

    .btn-soft{
      color: rgba(29,78,216,.98);
      background: rgba(37,99,235,.08);
      border-color: rgba(37,99,235,.18);
    }
    .btn-soft:hover{
      background: rgba(37,99,235,.12);
      border-color: rgba(37,99,235,.30);
      box-shadow: 0 12px 28px rgba(37,99,235,.14);
    }

    .btn-link{
      padding: 8px 10px;
      border-radius: 12px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.65);
      color: rgba(31,36,48,.9);
      font-weight: 900;
      text-decoration:none;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .btn-link:hover{ transform: translateY(-1px); border-color: rgba(37,99,235,.30); box-shadow: 0 10px 18px rgba(37,99,235,.10); }

    .btn-block{ width: 100%; }

    .hero{
      position:relative;
      padding: 26px 0 42px;
      overflow:hidden;
    }
    .hero-bg{
      position:absolute; inset: -120px -120px auto -120px;
      height: 560px;
      background:
        radial-gradient(650px 320px at 20% 25%, rgba(255,61,127,.22), transparent 60%),
        radial-gradient(520px 320px at 70% 20%, rgba(106,92,255,.22), transparent 60%),
        radial-gradient(540px 260px at 60% 60%, rgba(0,179,255,.14), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.02));
      border-bottom: 1px solid rgba(22,26,36,.06);
      pointer-events:none;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.25fr .95fr;
      gap: 26px;
      align-items:start;
      position:relative;
    }

    .pill-row{
      display:flex; flex-wrap:wrap; gap: 10px;
      margin-top: 10px;
    }
    .pill{
      font-size: 12px;
      font-weight: 900;
      color: rgba(31,36,48,.86);
      border: 1px solid rgba(22,26,36,.12);
      background: rgba(255,255,255,.65);
      padding: 8px 10px;
      border-radius: 999px;
      box-shadow: 0 10px 20px rgba(20,30,50,.06);
      letter-spacing: .2px;
    }
    .pill-accent{
      border-color: rgba(255,61,127,.20);
      background: linear-gradient(180deg, rgba(255,61,127,.14), rgba(106,92,255,.08));
    }

    .hero-title{
      margin: 16px 0 10px;
      font-size: clamp(24px, 3.2vw, 42px);
      line-height: 1.12;
      letter-spacing: -0.5px;
      font-weight: 980;
    }
    .hero-desc{
      color: rgba(31,36,48,.78);
      font-size: 15.5px;
      line-height: 1.8;
      margin: 0 0 18px;
      max-width: 56ch;
    }
    .hero-actions{
      display:flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 16px;
    }

    .hero-metrics{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 12px;
      margin-top: 10px;
    }
    .metric-card{
      padding: 14px 14px;
      border-radius: 16px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 14px 30px rgba(20,30,50,.08);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .metric-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(20,30,50,.12);
      border-color: rgba(37,99,235,.25);
    }
    .metric-value{
      font-weight: 980;
      letter-spacing: .2px;
    }
    .metric-desc{
      color: rgba(31,36,48,.70);
      font-size: 12.5px;
      margin-top: 6px;
      line-height: 1.4;
    }

    .hero-aside{
      position:relative;
      display:flex;
      flex-direction:column;
      gap: 14px;
      padding-top: 4px;
    }

    .aside-card{
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background:
        linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.55)),
        radial-gradient(420px 220px at 10% 10%, rgba(255,61,127,.20), transparent 60%),
        radial-gradient(420px 220px at 80% 0%, rgba(106,92,255,.20), transparent 60%);
      box-shadow: var(--shadow);
      padding: 18px;
      outline:none;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .aside-card:focus{ box-shadow: var(--focus), var(--shadow2); }
    .aside-card:hover{
      transform: translateY(-2px);
      border-color: rgba(37,99,235,.25);
      box-shadow: 0 22px 62px rgba(20,30,50,.14);
    }

    .aside-top{
      display:flex;
      flex-direction:column;
      gap: 10px;
      margin-bottom: 12px;
    }
    .aside-title{
      font-weight: 980;
      letter-spacing: -.2px;
      font-size: 16px;
    }
    .aside-badge{
      align-self:flex-start;
      font-size: 12px;
      font-weight: 950;
      color: rgba(31,36,48,.76);
      border: 1px dashed rgba(22,26,36,.14);
      background: rgba(255,255,255,.55);
      padding: 7px 10px;
      border-radius: 999px;
    }

    .checklist{
      list-style:none; padding: 0; margin: 0;
      display:flex; flex-direction:column; gap: 14px;
    }
    .checklist li{
      display:flex; gap: 12px; align-items:flex-start;
    }
    .dot{
      width: 10px; height: 10px; border-radius: 50%;
      margin-top: 6px;
      background: linear-gradient(180deg, var(--a), var(--b));
      box-shadow: 0 10px 20px rgba(255,61,127,.25);
      flex: 0 0 auto;
    }
    .check-title{ font-weight: 950; }
    .check-desc{
      font-size: 12.5px;
      color: rgba(31,36,48,.70);
      line-height: 1.5;
      margin-top: 4px;
    }

    .aside-actions{
      display:flex; gap: 10px; flex-wrap:wrap;
      margin-top: 14px;
    }

    .aside-row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .mini-card{
      border-radius: 16px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      padding: 14px;
      box-shadow: 0 12px 30px rgba(20,30,50,.08);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex; gap: 12px; align-items:flex-start;
    }
    .mini-card:hover{
      transform: translateY(-2px);
      border-color: rgba(255,61,127,.25);
      box-shadow: 0 18px 44px rgba(20,30,50,.12);
    }
    .mini-icon{
      width: 32px; height: 32px; border-radius: 12px;
      background: linear-gradient(135deg, rgba(255,61,127,.22), rgba(106,92,255,.20));
      border: 1px solid rgba(106,92,255,.20);
      box-shadow: 0 14px 30px rgba(106,92,255,.14);
      position:relative;
      flex: 0 0 auto;
    }
    .mini-icon::after{
      content:"";
      position:absolute; inset: 9px;
      border-radius: 8px;
      background: linear-gradient(180deg, rgba(255,61,127,.55), rgba(0,179,255,.45));
    }
    .mini-icon-2{
      background: linear-gradient(135deg, rgba(0,179,255,.18), rgba(255,176,32,.20));
      border-color: rgba(0,179,255,.25);
    }
    .mini-icon-2::after{
      background: linear-gradient(180deg, rgba(0,179,255,.55), rgba(255,176,32,.45));
    }
    .mini-title{ font-weight: 980; }
    .mini-desc{
      margin-top: 6px;
      font-size: 12.5px;
      color: rgba(31,36,48,.70);
      line-height: 1.4;
    }

    .float-hint{
      position:absolute;
      bottom: -8px; left: 8px;
      transform: translateY(6px);
      display:flex; align-items:center; gap: 10px;
      color: rgba(31,36,48,.58);
      font-weight: 900;
      pointer-events:none;
      opacity:.95;
    }
    .hint-dot{
      width: 10px; height: 10px; border-radius: 50%;
      background: linear-gradient(180deg, var(--d), var(--a));
      box-shadow: 0 10px 20px rgba(255,176,32,.22);
      animation: pulse 1.6s ease-in-out infinite;
    }
    .hint-text{ font-size: 12px; letter-spacing:.2px; }

    @keyframes pulse{
      0%,100%{ transform: scale(1); opacity:.9; }
      50%{ transform: scale(1.25); opacity:1; }
    }

    .section{
      padding: 56px 0;
    }
    .section-tight{ padding: 40px 0; }
    .section-alt{
      background:
        radial-gradient(900px 420px at 25% -20%, rgba(255,61,127,.10), transparent 56%),
        radial-gradient(860px 460px at 90% 0%, rgba(106,92,255,.10), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.55));
      border-top: 1px solid rgba(22,26,36,.06);
      border-bottom: 1px solid rgba(22,26,36,.06);
    }
    .section-alt2{
      background:
        radial-gradient(820px 380px at 20% 10%, rgba(0,179,255,.12), transparent 58%),
        radial-gradient(820px 420px at 80% 0%, rgba(255,61,127,.10), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.45));
      border-top: 1px solid rgba(22,26,36,.06);
      border-bottom: 1px solid rgba(22,26,36,.06);
    }

    .section-head{ margin-bottom: 22px; }
    .kicker{
      font-weight: 950;
      color: rgba(31,36,48,.72);
      font-size: 13px;
      letter-spacing: .18em;
      text-transform: uppercase;
      display:inline-block;
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.55);
    }
    .h2{
      margin: 12px 0 8px;
      font-size: clamp(20px, 2.4vw, 30px);
      letter-spacing: -.4px;
      line-height: 1.2;
      font-weight: 980;
    }
    .lead{
      margin: 0;
      color: rgba(31,36,48,.76);
      line-height: 1.85;
      font-size: 15.5px;
      max-width: 72ch;
    }

    .two-col{
      display:grid;
      grid-template-columns: 1.2fr .9fr;
      gap: 16px;
      align-items:start;
    }

    .soft-card{
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.68);
      box-shadow: var(--shadow);
      padding: 18px;
    }

    .h3{ margin: 0 0 12px; font-size: 16px; font-weight: 980; letter-spacing: -.2px; }

    .feature-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 12px;
    }
    .feature{
      border-radius: 16px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      padding: 12px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-height: 84px;
    }
    .feature:hover{
      transform: translateY(-2px);
      border-color: rgba(37,99,235,.25);
      box-shadow: 0 18px 40px rgba(20,30,50,.12);
    }
    .feature-title{ font-weight: 980; margin-bottom: 6px; }
    .feature-desc{ color: rgba(31,36,48,.72); font-size: 12.5px; line-height: 1.5; }

    .panel-stack{ display:flex; flex-direction:column; gap: 14px; }
    .info-card{
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 14px 36px rgba(20,30,50,.08);
      padding: 16px;
    }
    .info-card-2{
      background:
        radial-gradient(480px 260px at 20% 0%, rgba(255,61,127,.14), transparent 60%),
        radial-gradient(480px 260px at 80% 0%, rgba(106,92,255,.14), transparent 60%),
        rgba(255,255,255,.62);
    }
    .info-top{ display:flex; align-items:flex-start; justify-content:space-between; gap: 10px; margin-bottom: 10px; }
    .info-title{ font-weight: 980; }
    .info-tag{
      font-size: 12px;
      font-weight: 950;
      color: rgba(31,36,48,.75);
      border: 1px solid rgba(22,26,36,.12);
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.55);
    }
    .info-tag-invert{
      background: rgba(37,99,235,.10);
      border-color: rgba(37,99,235,.22);
    }

    .tag-list{
      margin: 0;
      padding: 0;
      list-style:none;
      display:flex; flex-wrap:wrap; gap: 10px;
    }
    .tag{
      display:inline-block;
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(22,26,36,.12);
      background: rgba(255,255,255,.62);
      font-weight: 900;
      color: rgba(31,36,48,.82);
      font-size: 12.5px;
      transition: transform .15s ease, border-color .15s ease;
    }
    .tag:hover{ transform: translateY(-1px); border-color: rgba(37,99,235,.28); }
    .tag-2{ border-color: rgba(0,179,255,.22); background: rgba(0,179,255,.07); }
    .tag-3{ border-color: rgba(106,92,255,.22); background: rgba(106,92,255,.08); }
    .tag-4{ border-color: rgba(255,61,127,.22); background: rgba(255,61,127,.07); }
    .tag-5{ border-color: rgba(255,176,32,.25); background: rgba(255,176,32,.08); }
    .tag-6{ border-color: rgba(29,78,216,.22); background: rgba(29,78,216,.07); }

    .commit-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap: 10px;
      margin-top: 4px;
    }
    .commit{
      border-radius: 16px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.60);
      padding: 12px;
    }
    .commit-title{ font-weight: 980; }
    .commit-desc{ margin-top: 6px; color: rgba(31,36,48,.70); font-size: 12.5px; line-height: 1.5; }
    .info-actions{ display:flex; gap: 10px; flex-wrap:wrap; margin-top: 12px; }

    .cards-grid{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 14px;
    }
    .service-card{
      grid-column: span 3;
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.66);
      box-shadow: 0 16px 42px rgba(20,30,50,.08);
      padding: 16px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      position:relative;
      overflow:hidden;
    }
    .service-card::after{
      content:"";
      position:absolute; inset: -1px -1px auto -1px;
      height: 120px;
      background: radial-gradient(420px 120px at 0% 0%, rgba(255,61,127,.22), transparent 65%),
                  radial-gradient(420px 120px at 100% 0%, rgba(106,92,255,.22), transparent 65%);
      opacity:.45;
      pointer-events:none;
    }
    .service-card-2::after{
      background: radial-gradient(420px 120px at 0% 0%, rgba(0,179,255,.20), transparent 65%),
                  radial-gradient(420px 120px at 100% 0%, rgba(255,176,32,.22), transparent 65%);
    }
    .service-card-3::after{
      background: radial-gradient(420px 120px at 0% 0%, rgba(106,92,255,.22), transparent 65%),
                  radial-gradient(420px 120px at 100% 0%, rgba(255,61,127,.18), transparent 65%);
    }
    .service-card-4::after{
      background: radial-gradient(420px 120px at 0% 0%, rgba(255,176,32,.22), transparent 65%),
                  radial-gradient(420px 120px at 100% 0%, rgba(0,179,255,.18), transparent 65%);
    }

    .service-card:hover{
      transform: translateY(-3px);
      border-color: rgba(37,99,235,.28);
      box-shadow: 0 26px 70px rgba(20,30,50,.14);
    }
    .service-top{ display:flex; align-items:center; justify-content:flex-start; gap: 12px; position:relative; }
    .service-icon{
      width: 42px; height: 42px; border-radius: 16px;
      border: 1px solid rgba(22,26,36,.10);
      background: linear-gradient(135deg, rgba(255,61,127,.18), rgba(106,92,255,.16));
      box-shadow: 0 16px 34px rgba(106,92,255,.12);
      position:relative;
      flex: 0 0 auto;
    }
    .service-icon::after{
      content:"";
      position:absolute; inset: 11px;
      border-radius: 12px;
      background: linear-gradient(180deg, rgba(255,61,127,.55), rgba(0,179,255,.45));
    }
    .service-icon-2{ background: linear-gradient(135deg, rgba(0,179,255,.18), rgba(255,176,32,.16)); }
    .service-icon-2::after{ background: linear-gradient(180deg, rgba(0,179,255,.55), rgba(255,176,32,.45)); }
    .service-icon-3{ background: linear-gradient(135deg, rgba(106,92,255,.18), rgba(255,61,127,.16)); }
    .service-icon-3::after{ background: linear-gradient(180deg, rgba(106,92,255,.55), rgba(255,61,127,.45)); }
    .service-icon-4{ background: linear-gradient(135deg, rgba(255,176,32,.18), rgba(0,179,255,.16)); }
    .service-icon-4::after{ background: linear-gradient(180deg, rgba(255,176,32,.55), rgba(0,179,255,.45)); }

    .service-card .h3{ font-size: 16px; margin: 2px 0 10px; }
    .service-desc{
      color: rgba(31,36,48,.74);
      line-height: 1.8;
      font-size: 13.5px;
      margin: 0 0 12px;
      position:relative;
    }
    .service-list{ display:flex; flex-wrap:wrap; gap: 8px; position:relative; margin-bottom: 12px; }
    .chip{
      display:inline-flex;
      align-items:center;
      padding: 7px 10px;
      border-radius: 999px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.60);
      font-weight: 950;
      font-size: 12px;
      color: rgba(31,36,48,.82);
    }
    .chip-2{ border-color: rgba(37,99,235,.22); background: rgba(37,99,235,.08); }
    .chip-3{ border-color: rgba(0,179,255,.22); background: rgba(0,179,255,.07); }
    .chip-4{ border-color: rgba(255,61,127,.22); background: rgba(255,61,127,.07); }
    .chip-5{ border-color: rgba(255,176,32,.25); background: rgba(255,176,32,.08); }
    .chip-6{ border-color: rgba(106,92,255,.22); background: rgba(106,92,255,.08); }
    .chip-7{ border-color: rgba(106,92,255,.22); background: rgba(106,92,255,.08); }
    .chip-8{ border-color: rgba(255,61,127,.22); background: rgba(255,61,127,.07); }
    .chip-9{ border-color: rgba(0,179,255,.22); background: rgba(0,179,255,.07); }
    .chip-10{ border-color: rgba(29,78,216,.22); background: rgba(29,78,216,.07); }
    .chip-11{ border-color: rgba(255,176,32,.25); background: rgba(255,176,32,.08); }
    .chip-12{ border-color: rgba(0,179,255,.22); background: rgba(0,179,255,.07); }

    .service-actions{ display:flex; gap: 10px; flex-wrap:wrap; position:relative; }

    .flow-steps{
      display:grid;
      grid-template-columns: repeat(5, minmax(0,1fr));
      gap: 12px;
    }
    .step{
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      padding: 14px;
      box-shadow: 0 14px 34px rgba(20,30,50,.08);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
      position:relative;
      overflow:hidden;
      min-height: 140px;
    }
    .step::after{
      content:"";
      position:absolute; inset: -40px -60px auto -60px;
      height: 120px;
      background:
        radial-gradient(240px 90px at 10% 60%, rgba(255,61,127,.18), transparent 65%),
        radial-gradient(240px 90px at 90% 20%, rgba(106,92,255,.16), transparent 65%);
      opacity:.35;
      pointer-events:none;
    }
    .step:hover{
      transform: translateY(-2px);
      border-color: rgba(37,99,235,.28);
      box-shadow: 0 22px 60px rgba(20,30,50,.12);
    }
    .step-num{
      font-weight: 1000;
      letter-spacing: .2px;
      color: rgba(31,36,48,.78);
      font-size: 12px;
      background: rgba(255,255,255,.7);
      border: 1px solid rgba(22,26,36,.10);
      width: fit-content;
      padding: 7px 10px;
      border-radius: 999px;
      position:relative;
    }
    .step-title{
      margin-top: 12px;
      font-weight: 1000;
      letter-spacing: -.2px;
      position:relative;
    }
    .step-desc{
      margin-top: 8px;
      color: rgba(31,36,48,.72);
      font-size: 13px;
      line-height: 1.6;
      position:relative;
    }

    .callout{
      margin-top: 16px;
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background:
        linear-gradient(135deg, rgba(255,61,127,.14), rgba(106,92,255,.12)),
        rgba(255,255,255,.62);
      box-shadow: 0 18px 44px rgba(20,30,50,.10);
      padding: 16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 14px;
      flex-wrap: wrap;
    }
    .callout-title{ font-weight: 1000; letter-spacing: -.2px; }
    .callout-desc{ margin-top: 6px; color: rgba(31,36,48,.72); line-height:1.6; }
    .callout-right{ display:flex; gap: 12px; flex-wrap: wrap; }

    .industry-grid{
      display:grid;
      grid-template-columns: repeat(12,1fr);
      gap: 14px;
    }
    .industry-card{
      grid-column: span 6;
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 16px 40px rgba(20,30,50,.08);
      padding: 16px;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .industry-card:hover{
      transform: translateY(-2px);
      border-color: rgba(255,61,127,.25);
      box-shadow: 0 26px 70px rgba(20,30,50,.12);
    }
    .industry-title{ font-weight: 1000; letter-spacing: -.2px; font-size: 16px; }
    .industry-desc{ margin-top: 8px; color: rgba(31,36,48,.72); line-height: 1.8; font-size: 13.5px; }
    .industry-badges{ margin-top: 12px; display:flex; flex-wrap:wrap; gap: 8px; }

    .industry-card-2{ background:
      radial-gradient(420px 220px at 15% 0%, rgba(0,179,255,.15), transparent 60%),
      rgba(255,255,255,.62);
    }
    .industry-card-3{ background:
      radial-gradient(420px 220px at 15% 0%, rgba(106,92,255,.16), transparent 60%),
      rgba(255,255,255,.62);
    }
    .industry-card-4{ background:
      radial-gradient(420px 220px at 15% 0%, rgba(255,176,32,.16), transparent 60%),
      rgba(255,255,255,.62);
    }
    .chip-13{ border-color: rgba(0,179,255,.22); background: rgba(0,179,255,.07); }
    .chip-14{ border-color: rgba(255,176,32,.25); background: rgba(255,176,32,.08); }
    .chip-15{ border-color: rgba(106,92,255,.22); background: rgba(106,92,255,.08); }
    .chip-16{ border-color: rgba(29,78,216,.22); background: rgba(29,78,216,.07); }
    .chip-17{ border-color: rgba(255,61,127,.22); background: rgba(255,61,127,.07); }
    .chip-18{ border-color: rgba(0,179,255,.22); background: rgba(0,179,255,.07); }
    .chip-19{ border-color: rgba(255,176,32,.25); background: rgba(255,176,32,.08); }
    .chip-20{ border-color: rgba(255,61,127,.22); background: rgba(255,61,127,.07); }

    .link-row{ margin-top: 14px; display:flex; gap: 12px; flex-wrap:wrap; }

    .map-card{
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 52px rgba(20,30,50,.10);
      padding: 16px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items:stretch;
    }
    .map-title{ font-weight: 1000; letter-spacing:-.2px; font-size: 18px; }
    .map-desc{ margin-top: 8px; color: rgba(31,36,48,.72); line-height: 1.8; }
    .map-list{ margin-top: 12px; display:flex; flex-direction:column; gap: 12px; }
    .map-item{ display:flex; gap: 12px; align-items:flex-start; }
    .map-dot{
      width: 12px; height: 12px; border-radius: 50%;
      margin-top: 6px;
      background: linear-gradient(180deg, var(--c), var(--b));
      box-shadow: 0 14px 26px rgba(0,179,255,.18);
      flex:0 0 auto;
    }
    .map-item-title{ font-weight: 1000; }
    .map-item-desc{ margin-top: 6px; color: rgba(31,36,48,.70); font-size: 12.5px; line-height: 1.6; }

    .map-right{
      border-radius: 16px;
      border: 1px solid rgba(22,26,36,.08);
      background:
        radial-gradient(520px 260px at 40% 20%, rgba(106,92,255,.18), transparent 60%),
        radial-gradient(520px 260px at 65% 70%, rgba(255,61,127,.12), transparent 60%),
        rgba(255,255,255,.48);
      position:relative;
      overflow:hidden;
      min-height: 220px;
    }
    .geo-ring{
      position:absolute; width: 240px; height: 240px;
      left: 50%; top: 50%;
      transform: translate(-50%,-50%);
      border-radius: 50%;
      border: 1px solid rgba(37,99,235,.22);
      box-shadow: inset 0 0 0 1px rgba(0,179,255,.10);
      background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.35), transparent 60%);
      animation: ring 3.2s ease-in-out infinite;
    }
    @keyframes ring{
      0%,100%{ transform: translate(-50%,-50%) scale(.98); opacity:.95; }
      50%{ transform: translate(-50%,-50%) scale(1.02); opacity:1; }
    }
    .geo-line{
      position:absolute; inset: 0;
      background:
        repeating-linear-gradient(90deg, rgba(31,36,48,.06), rgba(31,36,48,.06) 1px, transparent 1px, transparent 28px);
      opacity:.35;
    }
    .geo-pins .pin{
      position:absolute;
      width: 10px; height: 10px;
      border-radius:50%;
      background: linear-gradient(180deg, var(--a), var(--b));
      box-shadow: 0 18px 35px rgba(255,61,127,.18);
    }
    .pin-1{ left: 18%; top: 35%; }
    .pin-2{ left: 35%; top: 22%; }
    .pin-3{ left: 58%; top: 28%; }
    .pin-4{ left: 70%; top: 58%; }
    .pin-5{ left: 40%; top: 65%; }

    .map-signal{
      position:absolute; left: 16px; bottom: 14px;
      padding: 10px 12px;
      border-radius: 14px;
      background: rgba(255,255,255,.66);
      border: 1px solid rgba(22,26,36,.10);
      box-shadow: 0 16px 40px rgba(20,30,50,.10);
    }
    .signal-title{ font-weight: 1000; }
    .signal-desc{ margin-top: 5px; color: rgba(31,36,48,.70); font-size: 12.5px; }

    .process-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items:start;
    }
    .process-col{ display:flex; flex-direction:column; gap: 14px; }
    .process-block{
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 52px rgba(20,30,50,.09);
      padding: 16px;
    }
    .process-block-2{
      background:
        radial-gradient(520px 260px at 20% 0%, rgba(255,61,127,.12), transparent 60%),
        rgba(255,255,255,.62);
    }
    .process-block-3{
      background:
        radial-gradient(560px 280px at 60% 0%, rgba(0,179,255,.12), transparent 60%),
        rgba(255,255,255,.62);
    }

    .bullet-list{
      margin: 10px 0 0;
      padding-left: 18px;
      color: rgba(31,36,48,.76);
      line-height: 1.8;
      font-size: 13.5px;
    }
    .process-actions{ display:flex; gap: 12px; flex-wrap:wrap; margin-top: 14px; }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 14px;
    }
    .case-card{
      grid-column: span 3;
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 52px rgba(20,30,50,.09);
      padding: 16px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex; flex-direction:column;
      gap: 10px;
      min-height: 210px;
    }
    .case-card:hover{
      transform: translateY(-3px);
      border-color: rgba(37,99,235,.28);
      box-shadow: 0 26px 70px rgba(20,30,50,.13);
    }
    .case-top{ display:flex; gap: 12px; align-items:center; }
    .case-icon{
      width: 42px; height: 42px; border-radius: 16px;
      border: 1px solid rgba(22,26,36,.10);
      background: linear-gradient(135deg, rgba(255,61,127,.18), rgba(106,92,255,.16));
      position:relative;
      box-shadow: 0 16px 34px rgba(106,92,255,.12);
      flex:0 0 auto;
    }
    .case-icon::after{
      content:""; position:absolute; inset: 11px;
      border-radius: 12px;
      background: linear-gradient(180deg, rgba(255,61,127,.55), rgba(0,179,255,.45));
    }
    .case-icon-2{ background: linear-gradient(135deg, rgba(0,179,255,.18), rgba(255,176,32,.16)); }
    .case-icon-2::after{ background: linear-gradient(180deg, rgba(0,179,255,.55), rgba(255,176,32,.45)); }
    .case-icon-3{ background: linear-gradient(135deg, rgba(106,92,255,.18), rgba(255,61,127,.16)); }
    .case-icon-3::after{ background: linear-gradient(180deg, rgba(106,92,255,.55), rgba(255,61,127,.45)); }
    .case-icon-4{ background: linear-gradient(135deg, rgba(255,176,32,.18), rgba(0,179,255,.16)); }
    .case-icon-4::after{ background: linear-gradient(180deg, rgba(255,176,32,.55), rgba(0,179,255,.45)); }

    .case-title{ font-weight: 1000; letter-spacing:-.2px; }
    .case-desc{ color: rgba(31,36,48,.72); line-height: 1.8; font-size: 13.5px; margin-top: 2px; }
    .case-meta{ display:flex; flex-wrap:wrap; gap: 8px; margin-top: auto; }
    .meta-item{
      font-size: 12px;
      padding: 7px 10px;
      border-radius: 999px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.60);
      font-weight: 950;
      color: rgba(31,36,48,.78);
    }
    .meta-item-2{ border-color: rgba(37,99,235,.22); background: rgba(37,99,235,.07); }
    .meta-item-3{ border-color: rgba(0,179,255,.22); background: rgba(0,179,255,.07); }

    .case-link{
      text-decoration:none;
      font-weight: 1000;
      color: rgba(29,78,216,.98);
      margin-top: 10px;
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid rgba(37,99,235,.18);
      background: rgba(37,99,235,.07);
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
    }
    .case-link:hover{ transform: translateY(-1px); background: rgba(37,99,235,.10); border-color: rgba(37,99,235,.30); }

    .compare-layout{
      display:grid;
      grid-template-columns: .95fr 1.45fr;
      gap: 14px;
      align-items:start;
    }
    .rating-card{
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background:
        radial-gradient(600px 320px at 20% 0%, rgba(255,61,127,.14), transparent 60%),
        radial-gradient(600px 320px at 90% 10%, rgba(106,92,255,.14), transparent 60%),
        rgba(255,255,255,.62);
      box-shadow: 0 22px 62px rgba(20,30,50,.10);
      padding: 16px;
      position:sticky;
      top: 88px;
    }
    .rating-top{ display:flex; align-items:center; justify-content:space-between; gap: 12px; }
    .rating-stars{
      display:flex; gap: 4px;
      color: #f59e0b;
      filter: drop-shadow(0 12px 24px rgba(245,158,11,.20));
      font-size: 18px;
    }
    .star{ transform: translateY(-1px); }
    .rating-score{
      display:flex; align-items:baseline; gap: 8px;
      font-weight: 1000;
      color: rgba(31,36,48,.86);
    }
    .score-num{ font-size: 40px; letter-spacing:-1px; }
    .score-den{ font-weight: 950; color: rgba(31,36,48,.70); }
    .rating-desc{
      margin-top: 10px;
      color: rgba(31,36,48,.74);
      line-height: 1.8;
      font-size: 13.5px;
    }
    .rating-badges{ margin-top: 12px; display:flex; flex-wrap:wrap; gap: 8px; }

    .chip-22{ border-color: rgba(255,61,127,.22); background: rgba(255,61,127,.07); }
    .chip-23{ border-color: rgba(37,99,235,.22); background: rgba(37,99,235,.07); }
    .chip-24{ border-color: rgba(0,179,255,.22); background: rgba(0,179,255,.07); }

    .compare-card{
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 52px rgba(20,30,50,.09);
      padding: 16px;
    }
    .compare-head{ display:flex; align-items:flex-end; justify-content:space-between; gap: 12px; margin-bottom: 12px; }
    .compare-title{ font-weight: 1000; }
    .compare-sub{ color: rgba(31,36,48,.66); font-size: 12.5px; font-weight: 800; }

    .table-wrap{
      border-radius: 16px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.66);
      overflow:auto;
    }
    .compare-table{
      width:100%;
      border-collapse: collapse;
      min-width: 680px;
    }
    .compare-table thead th{
      text-align:left;
      padding: 12px 14px;
      background: linear-gradient(135deg, rgba(255,61,127,.10), rgba(106,92,255,.08));
      border-bottom: 1px solid rgba(22,26,36,.10);
      font-weight: 1000;
      color: rgba(31,36,48,.86);
      white-space:nowrap;
    }
    .compare-table tbody td{
      padding: 12px 14px;
      border-bottom: 1px solid rgba(22,26,36,.06);
      color: rgba(31,36,48,.76);
      font-size: 13.5px;
      line-height: 1.6;
    }
    .compare-table tbody tr:last-child td{ border-bottom: none; }
    .td-good{
      display:inline-block;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(34,197,94,.10);
      border: 1px solid rgba(34,197,94,.22);
      color: rgba(21,128,61,.95);
      font-weight: 1000;
      white-space:nowrap;
    }

    .compare-actions{
      display:flex; gap: 12px; flex-wrap:wrap;
      margin-top: 14px;
      justify-content:flex-end;
    }

    .match-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 14px;
      align-items:start;
    }
    .form-card{
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 20px 60px rgba(20,30,50,.10);
      padding: 16px;
    }
    .grid-form{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 10px;
    }
    .field{ display:flex; flex-direction:column; gap: 8px; }
    label{
      font-weight: 950;
      color: rgba(31,36,48,.78);
      font-size: 13px;
    }
    input, select, textarea{
      width:100%;
      border-radius: 14px;
      border: 1px solid rgba(22,26,36,.14);
      padding: 11px 12px;
      background: rgba(255,255,255,.78);
      color: var(--text);
      font-weight: 700;
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease, transform .1s ease;
    }
    textarea{ resize: vertical; min-height: 100px; }
    input:focus, select:focus, textarea:focus{
      box-shadow: var(--focus);
      border-color: rgba(37,99,235,.35);
    }
    .full{ grid-column: 1 / -1; }
    .form-foot{ grid-column: 1 / -1; display:flex; flex-direction:column; gap: 10px; }
    .form-note{
      color: rgba(31,36,48,.62);
      font-size: 12.5px;
      line-height: 1.6;
      font-weight: 750;
    }

    .match-advice{
      margin-top: 14px;
      border-radius: 16px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.58);
      box-shadow: 0 16px 40px rgba(20,30,50,.08);
      padding: 14px;
    }
    .advice-title{ font-weight: 1000; letter-spacing: -.2px; }
    .advice-list{ margin: 10px 0 0; padding-left: 18px; color: rgba(31,36,48,.74); line-height: 1.8; font-size: 13.5px; }

    .side-stack{ display:flex; flex-direction:column; gap: 14px; }
    .side-card{
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 52px rgba(20,30,50,.09);
      padding: 16px;
    }
    .side-card-2{
      background:
        radial-gradient(620px 320px at 10% 0%, rgba(255,61,127,.12), transparent 60%),
        rgba(255,255,255,.62);
    }
    .side-card-title{ font-weight: 1000; letter-spacing:-.2px; }
    .side-card-desc{ margin-top: 8px; color: rgba(31,36,48,.72); line-height:1.8; font-size: 13.5px; }
    .side-items{ margin-top: 12px; display:flex; flex-direction:column; gap: 12px; }
    .side-item{ display:flex; gap: 12px; align-items:flex-start; }
    .side-ico{
      width: 34px; height: 34px; border-radius: 14px;
      background: linear-gradient(135deg, rgba(255,61,127,.18), rgba(106,92,255,.16));
      border: 1px solid rgba(22,26,36,.10);
      position:relative; flex: 0 0 auto;
      box-shadow: 0 16px 34px rgba(106,92,255,.12);
    }
    .side-ico::after{
      content:""; position:absolute; inset: 10px;
      border-radius: 12px;
      background: linear-gradient(180deg, rgba(255,61,127,.55), rgba(0,179,255,.45));
    }
    .side-ico-2{
      background: linear-gradient(135deg, rgba(0,179,255,.18), rgba(255,176,32,.16));
    }
    .side-ico-2::after{ background: linear-gradient(180deg, rgba(0,179,255,.55), rgba(255,176,32,.45)); }
    .side-ico-3{
      background: linear-gradient(135deg, rgba(106,92,255,.18), rgba(255,61,127,.16));
    }
    .side-ico-3::after{ background: linear-gradient(180deg, rgba(106,92,255,.55), rgba(255,61,127,.45)); }

    .side-item-title{ font-weight: 1000; }
    .side-item-desc{ margin-top: 6px; color: rgba(31,36,48,.70); font-size: 12.5px; line-height:1.6; }
    .side-actions{ display:flex; gap: 12px; flex-wrap:wrap; margin-top: 14px; }

    .qr-wrap{ margin-top: 12px; display:flex; gap: 12px; align-items:center; }
    .qr-frame{
      width: 92px; height: 92px;
      border-radius: 18px;
      border: 1px solid rgba(22,26,36,.12);
      background: rgba(255,255,255,.72);
      box-shadow: 0 18px 44px rgba(20,30,50,.10);
      display:flex; align-items:center; justify-content:center;
      overflow:hidden;
    }
    .qr-img{ width: 82px; height: 82px; object-fit: contain; }
    .qr-meta{ display:flex; flex-direction:column; gap: 6px; }
    .qr-name{ font-weight: 1000; }
    .qr-sub{ color: rgba(31,36,48,.70); font-size: 12.5px; font-weight: 800; }

    .token-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 14px;
      align-items:start;
    }
    .token-card{
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 52px rgba(20,30,50,.09);
      padding: 16px;
    }
    .token-card-2{
      background:
        radial-gradient(620px 320px at 20% 0%, rgba(106,92,255,.14), transparent 60%),
        rgba(255,255,255,.62);
    }
    .token-title{ font-weight: 1000; letter-spacing:-.2px; }
    .token-desc{ margin-top: 8px; color: rgba(31,36,48,.72); line-height:1.8; font-size: 13.5px; }
    .price-list{ margin-top: 12px; display:flex; flex-direction:column; gap: 10px; }
    .price-item{
      border-radius: 16px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      padding: 12px;
      display:flex; flex-wrap:wrap; align-items:baseline; justify-content:space-between;
      gap: 10px;
    }
    .price-name{ font-weight: 1000; }
    .price-value{ font-weight: 1000; color: rgba(29,78,216,.98); }
    .price-note{ width: 100%; color: rgba(31,36,48,.70); font-size: 12.5px; line-height:1.6; font-weight: 800; }

    .token-tip{
      margin-top: 14px;
      border-radius: 16px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.60);
      padding: 14px;
    }
    .tip-title{ font-weight: 1000; }
    .tip-list{
      margin: 10px 0 0;
      padding-left: 18px;
      color: rgba(31,36,48,.74);
      line-height:1.8;
      font-size: 13.5px;
    }

    .token-actions{ margin-top: 14px; display:flex; gap: 12px; flex-wrap:wrap; }
    .token-steps{ margin-top: 12px; display:flex; flex-direction:column; gap: 12px; }
    .tstep{
      border-radius: 16px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      padding: 12px;
      display:flex; gap: 12px;
      align-items:flex-start;
    }
    .tstep-left{ flex: 0 0 auto; }
    .tstep-num{
      width: 34px; height: 34px; border-radius: 14px;
      display:flex; align-items:center; justify-content:center;
      font-weight: 1000;
      color: rgba(31,36,48,.80);
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.66);
      box-shadow: 0 14px 30px rgba(20,30,50,.08);
    }
    .tstep-title{ font-weight: 1000; }
    .tstep-desc{ margin-top: 6px; color: rgba(31,36,48,.72); line-height:1.7; font-size: 13px; }

    .token-quote{
      margin-top: 14px;
      border-radius: 16px;
      border: 1px solid rgba(22,26,36,.10);
      background: linear-gradient(135deg, rgba(255,61,127,.12), rgba(106,92,255,.10));
      padding: 14px;
      position:relative;
      overflow:hidden;
    }
    .quote-mark{
      position:absolute;
      right: 14px; top: -6px;
      font-size: 62px;
      font-weight: 1000;
      color: rgba(31,36,48,.10);
      line-height: 1;
    }
    .quote-text{
      font-weight: 900;
      color: rgba(31,36,48,.78);
      line-height:1.8;
      font-size: 13.5px;
      position:relative;
    }

    .training-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .training-card{
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 52px rgba(20,30,50,.09);
      padding: 16px;
    }
    .training-card-2{
      background:
        radial-gradient(620px 320px at 20% 0%, rgba(0,179,255,.12), transparent 60%),
        rgba(255,255,255,.62);
    }
    .training-list{ margin-top: 10px; display:flex; flex-direction:column; gap: 10px; }
    .training-item{
      display:flex; gap: 10px; align-items:center;
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      font-weight: 950;
      color: rgba(31,36,48,.78);
    }
    .bullet{
      width: 9px; height: 9px; border-radius: 50%;
      background: linear-gradient(180deg, var(--a), var(--b));
      box-shadow: 0 14px 26px rgba(255,61,127,.18);
      flex:0 0 auto;
    }
    .training-note{
      margin-top: 14px;
      border-radius: 16px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.60);
      padding: 14px;
    }
    .note-title{ font-weight: 1000; }
    .note-desc{ margin-top: 8px; color: rgba(31,36,48,.72); line-height:1.8; font-size: 13.5px; }
    .training-actions{ margin-top: 14px; display:flex; gap: 12px; flex-wrap:wrap; }

    .train-points{ margin-top: 10px; display:flex; flex-direction:column; gap: 12px; }
    .tp{
      border-radius: 16px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      padding: 12px;
    }
    .tp-title{ font-weight: 1000; }
    .tp-desc{ margin-top: 6px; color: rgba(31,36,48,.72); line-height:1.8; font-size: 13.5px; }
    .training-mini{ margin-top: 14px; display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; }
    .mini-stat{
      border-radius: 16px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      padding: 12px;
    }
    .mini-stat-num{ font-weight: 1000; }
    .mini-stat-desc{ margin-top: 6px; color: rgba(31,36,48,.72); font-size: 12.5px; line-height:1.5; font-weight: 850; }

    .help-grid{
      display:grid;
      grid-template-columns: repeat(12,1fr);
      gap: 14px;
      align-items:stretch;
    }
    .help-card{
      grid-column: span 4;
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 52px rgba(20,30,50,.09);
      padding: 16px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .help-card:hover{
      transform: translateY(-2px);
      border-color: rgba(37,99,235,.26);
      box-shadow: 0 26px 70px rgba(20,30,50,.13);
    }
    .help-card-2{
      background:
        radial-gradient(620px 320px at 20% 0%, rgba(255,61,127,.12), transparent 60%),
        rgba(255,255,255,.62);
    }
    .help-card-3{
      background:
        radial-gradient(620px 320px at 20% 0%, rgba(0,179,255,.12), transparent 60%),
        rgba(255,255,255,.62);
    }
    .help-title{ font-weight: 1000; letter-spacing:-.2px; font-size: 16px; }
    .help-desc{ margin-top: 8px; color: rgba(31,36,48,.72); line-height:1.8; font-size: 13.5px; }
    .help-list{ margin-top: 12px; display:flex; flex-direction:column; gap: 10px; }
    .help-row{ display:flex; align-items:center; gap: 12px; padding: 10px 12px; border-radius: 16px; border: 1px solid rgba(22,26,36,.10); background: rgba(255,255,255,.62); }
    .help-badge{ width: 22px; height: 22px; border-radius: 9px; display:flex; align-items:center; justify-content:center; font-weight: 1000; border: 1px solid rgba(22,26,36,.10); background: rgba(255,255,255,.70); }
    .help-text{ font-weight: 950; color: rgba(31,36,48,.78); }

    .help-steps{ margin-top: 12px; display:flex; flex-direction:column; gap: 12px; }
    .hstep{ display:flex; gap: 12px; align-items:flex-start; }
    .hstep-dot{ width: 12px; height: 12px; border-radius: 50%; margin-top: 6px; background: linear-gradient(180deg, var(--c), var(--b)); box-shadow: 0 14px 26px rgba(0,179,255,.18); }
    .hstep-dot-2{ background: linear-gradient(180deg, var(--a), var(--b)); }
    .hstep-dot-3{ background: linear-gradient(180deg, var(--d), var(--a)); }
    .hstep-title{ font-weight: 1000; }
    .hstep-desc{ margin-top: 6px; color: rgba(31,36,48,.72); line-height:1.8; font-size: 13.5px; }

    .help-cta{ margin-top: 14px; display:flex; flex-direction:column; gap: 10px; }
    .help-mini{ margin-top: 14px; display:flex; flex-direction:column; gap: 10px; }
    .help-mini-item{
      display:flex; gap: 10px; align-items:center;
      color: rgba(31,36,48,.72);
      font-weight: 850;
      font-size: 13.5px;
      line-height:1.6;
    }
    .mini-ico{ width: 20px; height: 20px; border-radius: 10px; border: 1px solid rgba(22,26,36,.10); background: rgba(255,255,255,.70); position:relative; flex:0 0 auto; }
    .mini-ico::after{ content:""; position:absolute; inset: 6px; border-radius: 8px; background: linear-gradient(135deg, var(--a), var(--b)); }
    .mini-ico-2::after{ background: linear-gradient(135deg, var(--c), var(--d)); }

    .faq-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 14px;
      align-items:start;
    }
    .faq-item{
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 52px rgba(20,30,50,.09);
      padding: 0;
      overflow:hidden;
      margin-bottom: 12px;
      transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    }
    .faq-item.open{
      border-color: rgba(37,99,235,.26);
      box-shadow: 0 26px 70px rgba(20,30,50,.13);
    }
    .faq-q{
      width:100%;
      text-align:left;
      background: transparent;
      border: none;
      padding: 14px 14px;
      cursor:pointer;
      display:flex; align-items:center; justify-content:space-between; gap: 12px;
      font-weight: 980;
      color: rgba(31,36,48,.88);
      font-size: 14.5px;
    }
    .faq-q:focus{ outline:none; box-shadow: var(--focus); }
    .faq-ico{
      width: 30px; height: 30px; border-radius: 14px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.65);
      position:relative; flex:0 0 auto;
      transition: transform .2s ease, border-color .2s ease;
    }
    .faq-ico::after{
      content:"";
      position:absolute; left: 50%; top: 50%;
      width: 12px; height: 2px;
      background: rgba(31,36,48,.75);
      transform: translate(-50%,-50%);
      border-radius: 2px;
    }
    .faq-ico::before{
      content:"";
      position:absolute; left: 50%; top: 50%;
      width: 2px; height: 12px;
      background: rgba(31,36,48,.75);
      transform: translate(-50%,-50%);
      border-radius: 2px;
    }

    .faq-item.open .faq-ico{
      transform: rotate(45deg);
      border-color: rgba(37,99,235,.25);
    }

    .faq-a{
      padding: 0 14px 14px;
    }
    .faq-a-inner{
      padding-top: 6px;
      color: rgba(31,36,48,.72);
      line-height:1.85;
      font-size: 13.5px;
      font-weight: 800;
    }

    .faq-aside{
      position:sticky;
      top: 88px;
      display:flex;
      flex-direction:column;
      gap: 14px;
    }
    .faq-aside-card{
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background:
        radial-gradient(620px 320px at 20% 0%, rgba(255,61,127,.12), transparent 60%),
        rgba(255,255,255,.62);
      box-shadow: 0 18px 52px rgba(20,30,50,.09);
      padding: 16px;
    }
    .faq-aside-title{ font-weight: 1000; letter-spacing:-.2px; }
    .faq-aside-desc{ margin-top: 8px; color: rgba(31,36,48,.72); line-height:1.8; font-size: 13.5px; }
    .faq-aside-tags{
      margin-top: 12px;
      display:flex; flex-wrap:wrap; gap: 10px;
    }
    .tag-btn{
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.65);
      cursor:pointer;
      font-weight: 980;
      color: rgba(31,36,48,.80);
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .tag-btn:hover{
      transform: translateY(-1px);
      border-color: rgba(37,99,235,.30);
      background: rgba(37,99,235,.08);
    }
    .faq-aside-actions{ margin-top: 14px; }
    .faq-aside-foot{ margin-top: 10px; color: rgba(31,36,48,.62); font-size: 12.5px; font-weight: 850; }

    .aside-news{
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 52px rgba(20,30,50,.09);
      padding: 16px;
      overflow:hidden;
    }
    .aside-news-head{
      display:flex; align-items:center; justify-content:space-between; gap: 12px;
      margin-bottom: 10px;
    }
    .aside-news-title{ font-weight: 1000; letter-spacing:-.2px; }
    .aside-news-more{
      text-decoration:none;
      font-weight: 950;
      color: rgba(29,78,216,.98);
      padding: 8px 10px;
      border-radius: 12px;
      border: 1px solid rgba(37,99,235,.18);
      background: rgba(37,99,235,.07);
    }
    .news-list{ display:flex; flex-direction:column; gap: 10px; }
    .news-item{
      text-decoration:none;
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      color: rgba(31,36,48,.80);
      font-weight: 900;
      line-height:1.5;
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .news-item:hover{
      transform: translateY(-1px);
      border-color: rgba(255,61,127,.25);
      background: rgba(255,61,127,.06);
    }

    .wiki-grid{
      display:grid;
      grid-template-columns: repeat(12,1fr);
      gap: 14px;
    }
    .wiki-card{
      grid-column: span 4;
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 52px rgba(20,30,50,.09);
      padding: 16px;
    }
    .wiki-card-2{
      background:
        radial-gradient(620px 320px at 20% 0%, rgba(106,92,255,.14), transparent 60%),
        rgba(255,255,255,.62);
    }
    .wiki-card-3{
      background:
        radial-gradient(620px 320px at 20% 0%, rgba(255,176,32,.14), transparent 60%),
        rgba(255,255,255,.62);
    }
    .wiki-title{ font-weight: 1000; letter-spacing:-.2px; font-size: 16px; }
    .wiki-steps{ margin-top: 12px; display:flex; flex-direction:column; gap: 12px; }
    .wiki-step{
      display:flex; gap: 12px; align-items:flex-start;
      padding: 12px;
      border-radius: 16px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
    }
    .wiki-step-num{
      width: 34px; height: 34px; border-radius: 14px;
      display:flex; align-items:center; justify-content:center;
      font-weight: 1000;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.72);
      color: rgba(31,36,48,.80);
      flex:0 0 auto;
      box-shadow: 0 14px 30px rgba(20,30,50,.08);
    }
    .wiki-step-title{ font-weight: 1000; }
    .wiki-step-desc{ margin-top: 6px; color: rgba(31,36,48,.72); line-height:1.8; font-size: 13.5px; }
    .wiki-chips{ margin-top: 12px; display:flex; flex-wrap:wrap; gap: 10px; }
    .cloud-tag{
      display:inline-flex;
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      font-weight: 950;
      font-size: 12.5px;
      color: rgba(31,36,48,.80);
    }
    .cloud-tag-2{ border-color: rgba(37,99,235,.22); background: rgba(37,99,235,.07); }
    .cloud-tag-3{ border-color: rgba(0,179,255,.22); background: rgba(0,179,255,.07); }
    .cloud-tag-4{ border-color: rgba(106,92,255,.22); background: rgba(106,92,255,.08); }
    .cloud-tag-5{ border-color: rgba(255,61,127,.22); background: rgba(255,61,127,.07); }
    .cloud-tag-6{ border-color: rgba(29,78,216,.22); background: rgba(29,78,216,.07); }
    .cloud-tag-7{ border-color: rgba(255,176,32,.25); background: rgba(255,176,32,.08); }
    .cloud-tag-8{ border-color: rgba(0,179,255,.22); background: rgba(0,179,255,.07); }

    .chip-25{ border-color: rgba(255,61,127,.22); background: rgba(255,61,127,.07); }
    .chip-26{ border-color: rgba(0,179,255,.22); background: rgba(0,179,255,.07); }
    .chip-27{ border-color: rgba(106,92,255,.22); background: rgba(106,92,255,.08); }
    .chip-28{ border-color: rgba(255,176,32,.25); background: rgba(255,176,32,.08); }
    .chip-29{ border-color: rgba(37,99,235,.22); background: rgba(37,99,235,.07); }
    .chip-30{ border-color: rgba(29,78,216,.22); background: rgba(29,78,216,.07); }

    .wiki-foot{ margin-top: 14px; }

    .news-grid{
      display:grid;
      grid-template-columns: repeat(12,1fr);
      gap: 14px;
    }
    .news-card{
      grid-column: span 4;
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 52px rgba(20,30,50,.09);
      padding: 16px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .news-card:hover{
      transform: translateY(-2px);
      border-color: rgba(37,99,235,.26);
      box-shadow: 0 26px 70px rgba(20,30,50,.13);
    }
    .news-card-2{
      background:
        radial-gradient(620px 320px at 20% 0%, rgba(255,61,127,.12), transparent 60%),
        rgba(255,255,255,.62);
    }
    .news-card-3{
      background:
        radial-gradient(620px 320px at 20% 0%, rgba(0,179,255,.12), transparent 60%),
        rgba(255,255,255,.62);
    }
    .news-card-top{ display:flex; align-items:center; gap: 12px; }
    .news-dot{
      width: 12px; height: 12px; border-radius: 50%;
      box-shadow: 0 14px 26px rgba(31,36,48,.10);
      flex: 0 0 auto;
    }
    .news-dot-1{ background: linear-gradient(180deg, var(--a), var(--b)); }
    .news-dot-2{ background: linear-gradient(180deg, var(--c), var(--d)); }
    .news-dot-3{ background: linear-gradient(180deg, var(--b), var(--c)); }
    .news-card-title{ font-weight: 1000; letter-spacing:-.2px; }
    .news-card-desc{ margin-top: 10px; color: rgba(31,36,48,.72); line-height: 1.85; font-size: 13.5px; }
    .news-card-link{
      display:inline-block;
      margin-top: 12px;
      text-decoration:none;
      font-weight: 1000;
      color: rgba(29,78,216,.98);
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid rgba(37,99,235,.18);
      background: rgba(37,99,235,.07);
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .news-card-link:hover{ transform: translateY(-1px); border-color: rgba(37,99,235,.30); background: rgba(37,99,235,.10); }

    .review-grid{
      display:grid;
      grid-template-columns: repeat(12,1fr);
      gap: 14px;
    }
    .review-card{
      grid-column: span 4;
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 52px rgba(20,30,50,.09);
      padding: 16px;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
      min-height: 220px;
      display:flex; flex-direction:column; gap: 10px;
    }
    .review-card:hover{
      transform: translateY(-2px);
      border-color: rgba(255,61,127,.25);
      box-shadow: 0 26px 70px rgba(20,30,50,.13);
    }
    .review-card-2{ background:
      radial-gradient(620px 320px at 20% 0%, rgba(0,179,255,.12), transparent 60%),
      rgba(255,255,255,.62);
    }
    .review-card-3{ background:
      radial-gradient(620px 320px at 20% 0%, rgba(106,92,255,.14), transparent 60%),
      rgba(255,255,255,.62);
    }
    .review-card-4{ background:
      radial-gradient(620px 320px at 20% 0%, rgba(255,176,32,.14), transparent 60%),
      rgba(255,255,255,.62);
    }
    .review-card-5{ background:
      radial-gradient(620px 320px at 20% 0%, rgba(37,99,235,.12), transparent 60%),
      rgba(255,255,255,.62);
    }
    .review-card-6{ background:
      radial-gradient(620px 320px at 20% 0%, rgba(255,61,127,.12), transparent 60%),
      rgba(255,255,255,.62);
    }
    .review-top{ display:flex; align-items:center; gap: 12px; }
    .avatar{
      width: 44px; height: 44px; border-radius: 18px;
      display:flex; align-items:center; justify-content:center;
      font-weight: 1000;
      background: linear-gradient(135deg, rgba(255,61,127,.18), rgba(106,92,255,.16));
      border: 1px solid rgba(22,26,36,.10);
      box-shadow: 0 18px 44px rgba(20,30,50,.10);
      flex:0 0 auto;
      color: rgba(31,36,48,.86);
    }
    .review-card-2 .avatar{ background: linear-gradient(135deg, rgba(0,179,255,.18), rgba(255,176,32,.16)); }
    .review-card-3 .avatar{ background: linear-gradient(135deg, rgba(106,92,255,.18), rgba(255,61,127,.16)); }
    .review-card-4 .avatar{ background: linear-gradient(135deg, rgba(255,176,32,.18), rgba(0,179,255,.16)); }
    .review-card-5 .avatar{ background: linear-gradient(135deg, rgba(37,99,235,.18), rgba(106,92,255,.16)); }
    .review-card-6 .avatar{ background: linear-gradient(135deg, rgba(255,61,127,.18), rgba(0,179,255,.16)); }

    .review-title{ font-weight: 1000; letter-spacing:-.2px; }
    .review-meta{ margin-top: 4px; color: rgba(31,36,48,.66); font-weight: 850; font-size: 12.5px; }
    .review-text{ color: rgba(31,36,48,.72); line-height: 1.9; font-weight: 800; font-size: 13.5px; margin-top: 2px; }

    .quick-grid{
      display:grid;
      grid-template-columns: repeat(12,1fr);
      gap: 14px;
    }
    .quick-card{
      grid-column: span 3;
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 52px rgba(20,30,50,.09);
      padding: 16px;
      text-decoration:none;
      color: inherit;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex; flex-direction:column; gap: 10px;
      min-height: 150px;
    }
    .quick-card:hover{
      transform: translateY(-2px);
      border-color: rgba(37,99,235,.26);
      box-shadow: 0 26px 70px rgba(20,30,50,.13);
    }
    .quick-card-2{
      background:
        radial-gradient(620px 320px at 20% 0%, rgba(0,179,255,.12), transparent 60%),
        rgba(255,255,255,.62);
    }
    .quick-card-3{
      background:
        radial-gradient(620px 320px at 20% 0%, rgba(106,92,255,.14), transparent 60%),
        rgba(255,255,255,.62);
    }
    .quick-card-4{
      background:
        radial-gradient(620px 320px at 20% 0%, rgba(255,61,127,.12), transparent 60%),
        rgba(255,255,255,.62);
    }
    .quick-title{ font-weight: 1000; letter-spacing:-.2px; font-size: 16px; }
    .quick-desc{ color: rgba(31,36,48,.72); line-height: 1.8; font-weight: 850; font-size: 13.5px; }
    .quick-cta{ margin-top: auto; font-weight: 1000; color: rgba(29,78,216,.98); }

    .contact-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items:start;
    }
    .contact-card{
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 52px rgba(20,30,50,.09);
      padding: 16px;
    }
    .contact-card-2{
      background:
        radial-gradient(620px 320px at 20% 0%, rgba(255,61,127,.12), transparent 60%),
        rgba(255,255,255,.62);
    }
    .contact-title{ font-weight: 1000; letter-spacing:-.2px; font-size: 16px; }
    .contact-items{ margin-top: 12px; display:flex; flex-direction:column; gap: 12px; }
    .contact-item{
      display:flex; align-items:baseline; justify-content:space-between; gap: 12px;
      padding: 12px;
      border-radius: 16px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
    }
    .contact-label{ font-weight: 950; color: rgba(31,36,48,.70); }
    .contact-value a{ color: rgba(29,78,216,.98); font-weight: 1000; text-decoration:none; }
    .contact-actions{ margin-top: 14px; display:flex; gap: 12px; flex-wrap:wrap; }

    .qr-large{
      margin-top: 12px;
      display:flex; gap: 12px; align-items:center;
      border-radius: 16px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      padding: 14px;
    }
    .qr-large-img{
      width: 110px; height: 110px;
      object-fit: contain;
      border-radius: 18px;
      border: 1px solid rgba(22,26,36,.12);
      background: rgba(255,255,255,.72);
      box-shadow: 0 18px 44px rgba(20,30,50,.10);
      flex: 0 0 auto;
    }
    .qr-large-text{ display:flex; flex-direction:column; gap: 6px; }
    .qr-large-name{ font-weight: 1000; }
    .qr-large-desc{ color: rgba(31,36,48,.72); font-weight: 850; line-height:1.6; }

    .contact-mini{ margin-top: 14px; display:flex; flex-direction:column; gap: 10px; }
    .mini-row{
      border-radius: 16px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      padding: 12px;
      display:flex; gap: 10px; align-items:flex-start;
    }
    .mini-badge{
      flex:0 0 auto;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.72);
      font-weight: 1000;
      color: rgba(31,36,48,.82);
    }
    .mini-badge-2{
      border-color: rgba(37,99,235,.22);
      background: rgba(37,99,235,.07);
      color: rgba(29,78,216,.98);
    }
    .mini-row-text{ color: rgba(31,36,48,.72); font-weight: 850; line-height:1.7; font-size: 13.5px; }

    .contact-bottom{ margin-top: 14px; }

    .join-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 14px;
      align-items:start;
    }
    .join-card{
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 52px rgba(20,30,50,.09);
      padding: 16px;
    }
    .join-card-2{
      background:
        radial-gradient(620px 320px at 20% 0%, rgba(0,179,255,.12), transparent 60%),
        rgba(255,255,255,.62);
    }
    .join-actions{ margin-top: 14px; display:flex; gap: 12px; flex-wrap:wrap; }

    .timeline{ margin-top: 10px; display:flex; flex-direction:column; gap: 14px; position:relative; }
    .tline{
      display:flex; gap: 12px; align-items:flex-start;
    }
    .tpoint{
      width: 14px; height: 14px; border-radius: 50%;
      margin-top: 6px;
      background: linear-gradient(180deg, var(--a), var(--b));
      box-shadow: 0 14px 26px rgba(255,61,127,.18);
      flex:0 0 auto;
    }
    .tpoint-2{ background: linear-gradient(180deg, var(--c), var(--d)); }
    .tpoint-3{ background: linear-gradient(180deg, var(--b), var(--c)); }
    .tpoint-4{ background: linear-gradient(180deg, var(--d), var(--a)); }
    .tcontent{ padding: 12px; border-radius: 16px; border: 1px solid rgba(22,26,36,.10); background: rgba(255,255,255,.62); flex: 1 1 auto; }
    .t-title{ font-weight: 1000; }
    .t-desc{ margin-top: 6px; color: rgba(31,36,48,.72); line-height:1.8; font-size: 13.5px; }

    .join-cta{ margin-top: 14px; }

    .tag-cloud{
      border-radius: var(--radius);
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.60);
      box-shadow: 0 18px 52px rgba(20,30,50,.08);
      padding: 16px;
      display:flex; gap: 14px; align-items:flex-start; justify-content:space-between;
      flex-wrap:wrap;
    }
    .tag-cloud-title{ font-weight: 1000; letter-spacing:-.2px; }
    .tag-cloud-desc{ margin-top: 8px; color: rgba(31,36,48,.70); line-height:1.8; font-size: 13.5px; font-weight: 850; }
    .tag-cloud-right{ display:flex; flex-wrap:wrap; gap: 10px; }

    .site-footer{
      padding: 24px 0 28px;
      border-top: 1px solid rgba(22,26,36,.08);
      background:
        radial-gradient(820px 380px at 10% 0%, rgba(255,61,127,.12), transparent 60%),
        radial-gradient(820px 380px at 80% 0%, rgba(106,92,255,.12), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.55));
    }
    .footer-container{ padding-top: 6px; }
    .footer-top{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 14px;
      align-items:start;
    }
    .footer-brand{ display:flex; gap: 12px; align-items:flex-start; }
    .footer-brand .ai-page-logo{ width: 44px; height: 44px; }
    .footer-brand-text{ display:flex; flex-direction:column; gap: 6px; }
    .footer-name{ font-weight: 1000; letter-spacing:-.2px; }
    .footer-sub{ color: rgba(31,36,48,.72); line-height:1.6; font-weight: 850; font-size: 12.5px; }

    .footer-col{ }
    .footer-title{ font-weight: 1000; margin-bottom: 10px; letter-spacing:-.2px; }
    .footer-links{
      display:flex; flex-direction:column; gap: 8px;
    }
    .footer-links a{
      text-decoration:none;
      color: rgba(31,36,48,.78);
      font-weight: 900;
      padding: 9px 10px;
      border-radius: 14px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
      width: fit-content;
      max-width: 100%;
    }
    .footer-links a:hover{
      transform: translateY(-1px);
      border-color: rgba(37,99,235,.30);
      background: rgba(37,99,235,.07);
      color: rgba(31,36,48,.92);
    }
    .footer-links-2{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
    .footer-links-2 a{ width: auto; }

    .footer-bottom{
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid rgba(22,26,36,.08);
      display:flex; align-items:center; justify-content:space-between; gap: 12px;
      flex-wrap: wrap;
    }
    .copyright{
      font-weight: 900;
      color: rgba(31,36,48,.76);
    }
    .footer-meta{
      margin-top: 6px;
      color: rgba(31,36,48,.66);
      font-weight: 850;
      font-size: 12.5px;
    }
    .footer-meta a{
      color: rgba(29,78,216,.98);
      text-decoration:none;
      font-weight: 1000;
    }

    .footer-right{ display:flex; gap: 12px; align-items:center; }
    .ai-page-home-link{
      text-decoration:none;
      color: rgba(31,36,48,.86);
      font-weight: 1000;
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid rgba(22,26,36,.10);
      background: rgba(255,255,255,.62);
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .ai-page-home-link:hover{ transform: translateY(-1px); border-color: rgba(255,61,127,.30); background: rgba(255,61,127,.07); }
    .to-top{
      text-decoration:none;
      color: rgba(29,78,216,.98);
      font-weight: 1000;
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid rgba(37,99,235,.18);
      background: rgba(37,99,235,.07);
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .to-top:hover{ transform: translateY(-1px); border-color: rgba(37,99,235,.30); background: rgba(37,99,235,.10); }

    .to-top-fab{
      position: fixed;
      right: 16px;
      bottom: 92px;
      width: 46px; height: 46px;
      border-radius: 18px;
      border: 1px solid rgba(22,26,36,.12);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 44px rgba(20,30,50,.12);
      cursor:pointer;
      font-weight: 1000;
      color: rgba(31,36,48,.86);
      display:flex; align-items:center; justify-content:center;
      transition: transform .2s ease, opacity .2s ease;
      opacity: .95;
      z-index: 60;
    }
    .to-top-fab:hover{ transform: translateY(-2px); opacity:1; }
    .floating-contact{
      position: fixed;
      right: 16px;
      bottom: 28px;
      display:flex; align-items:center; gap: 10px;
      padding: 12px 14px;
      border-radius: 18px;
      border: 1px solid rgba(22,26,36,.12);
      background: rgba(255,255,255,.80);
      box-shadow: 0 18px 44px rgba(20,30,50,.12);
      text-decoration:none;
      color: rgba(31,36,48,.86);
      font-weight: 1000;
      z-index: 60;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .floating-contact:hover{ transform: translateY(-2px); box-shadow: 0 26px 70px rgba(20,30,50,.16); }
    .floating-ico{
      width: 34px; height: 34px;
      border-radius: 14px;
      border: 1px solid rgba(22,26,36,.10);
      background: linear-gradient(135deg, rgba(29,78,216,.14), rgba(106,92,255,.14));
      position:relative;
    }
    .floating-ico::after{
      content:"";
      position:absolute; inset: 9px;
      border-radius: 12px;
      background: linear-gradient(180deg, rgba(29,78,216,.85), rgba(255,61,127,.70));
    }
    .floating-text{ font-size: 13px; }

    .mobile-wrap{ display:none; }

    /* reveal */
    [data-reveal]{ opacity: 0; transform: translateY(8px); transition: opacity .6s ease, transform .6s ease; }
    .is-visible{ opacity: 1; transform: translateY(0); }

    @media (max-width: 980px){
      .nav-desktop{ display:none; }
      .menu-btn{ display:flex; }
      .mobile-wrap{ display:block; }
      .mobile-overlay{
        position:fixed; inset:0;
        background: rgba(17,24,39,.38);
        z-index: 80;
      }
      .mobile-panel{
        position:fixed;
        right: 14px;
        top: 76px;
        width: min(360px, calc(100% - 28px));
        max-height: calc(100vh - 96px);
        overflow:auto;
        z-index: 90;
        transform: translateY(-10px);
        opacity: 0;
        pointer-events:none;
        transition: opacity .2s ease, transform .2s ease;
        border-radius: 20px;
        border: 1px solid rgba(22,26,36,.12);
        background: rgba(255,255,255,.86);
        box-shadow: 0 26px 80px rgba(20,30,50,.18);
      }
      .mobile-panel.open{
        opacity: 1;
        transform: translateY(0);
        pointer-events:auto;
      }
      .mobile-head{
        position:sticky; top:0;
        background: rgba(255,255,255,.92);
        border-bottom: 1px solid rgba(22,26,36,.08);
        padding: 12px 14px;
        display:flex; align-items:center; justify-content:space-between;
        gap: 12px;
      }
      .mobile-title{ font-weight: 1000; letter-spacing:-.2px; }
      .menu-close{
        width: 38px; height: 38px;
        border-radius: 16px;
        border: 1px solid rgba(22,26,36,.12);
        background: rgba(255,255,255,.75);
        cursor:pointer;
        font-size: 22px;
        font-weight: 900;
      }
      .menu-close:focus{ outline:none; box-shadow: var(--focus); }
      .mobile-links{ padding: 12px 14px 14px; display:flex; flex-direction:column; gap: 8px; }
      .mobile-link{
        text-decoration:none;
        font-weight: 950;
        color: rgba(31,36,48,.86);
        padding: 12px 12px;
        border-radius: 16px;
        border: 1px solid rgba(22,26,36,.10);
        background: rgba(255,255,255,.62);
      }
      .mobile-link:hover{ border-color: rgba(37,99,235,.30); background: rgba(37,99,235,.07); }
      .mobile-cta{ padding: 0 14px 14px; display:flex; flex-direction:column; gap: 10px; }

      .hero-grid{ grid-template-columns: 1fr; }
      .hero-metrics{ grid-template-columns: 1fr; }
      .two-col{ grid-template-columns: 1fr; }
      .cards-grid{ grid-template-columns: 1fr; }
      .service-card{ grid-column: span 12; }
      .flow-steps{ grid-template-columns: 1fr; }
      .industry-card{ grid-column: span 12; }
      .map-card{ grid-template-columns: 1fr; }
      .process-grid{ grid-template-columns: 1fr; }
      .case-card{ grid-column: span 12; }
      .compare-layout{ grid-template-columns: 1fr; }
      .rating-card{ position:relative; top:auto; }
      .match-grid{ grid-template-columns: 1fr; }
      .faq-grid{ grid-template-columns: 1fr; }
      .faq-aside{ position:relative; top:auto; }
      .token-grid{ grid-template-columns: 1fr; }
      .training-grid{ grid-template-columns: 1fr; }
      .help-card{ grid-column: span 12; }
      .wiki-card{ grid-column: span 12; }
      .news-card{ grid-column: span 12; }
      .review-card{ grid-column: span 12; }
      .quick-card{ grid-column: span 12; }
      .contact-grid{ grid-template-columns: 1fr; }
      .join-grid{ grid-template-columns: 1fr; }
      .footer-top{ grid-template-columns: 1fr; }
      .footer-right{ width: 100%; justify-content:flex-start; }
      .floating-text{ display:none; }
    }

    @media (prefers-reduced-motion: reduce){
      *{ scroll-behavior: auto !important; }
      .hint-dot, .geo-ring{ animation: none !important; }
      .btn, .metric-card, .service-card, .case-card, .review-card, .news-card, .help-card, .mini-card, .industry-card{ transition: none !important; }
    }