:root{
      --bg:#fff7f9;
      --surface:#ffffff;
      --surface-2:#fff1f6;
      --text:#1f2430;
      --muted:#5a6272;
      --muted-2:#7a8396;
      --line:rgba(20,24,33,.10);
      --shadow: 0 18px 50px rgba(24, 14, 33, .12);
      --shadow-soft: 0 10px 30px rgba(24, 14, 33, .10);
      --pink:#d92a66;
      --pink-2:#ff4f86;
      --rose:#ff7aa8;
      --rose-2:#ff9bbb;
      --accent:#b11f4f;
      --brand:#d92a66;
      --ok:#0b7a52;
      --warn:#b26b00;
      --radius:18px;
      --radius-sm:12px;
      --container: 1140px;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 450px at 10% 0%, rgba(217,42,102,.14), rgba(255,255,255,0) 60%),
        radial-gradient(700px 380px at 90% 10%, rgba(255,79,134,.14), rgba(255,255,255,0) 58%),
        linear-gradient(180deg, #fff 0%, var(--bg) 25%, #ffffff 100%);
      overflow-x:hidden;
    }

    .skip-link{
      position:absolute;left:-999px;top:10px;
      background:#111827;color:#fff;padding:10px 12px;border-radius:10px;
      z-index:9999;
    }
    .skip-link:focus{left:12px}

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

    .site-header{
      position:sticky;top:0;z-index:50;
      background:rgba(255,255,255,.72);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(20,24,33,.08);
    }
    .header-inner{
      display:flex;align-items:center;justify-content:space-between;
      height:74px;
      gap:16px;
    }
    .brand-link{display:inline-flex;align-items:center;gap:12px;text-decoration:none}
    .brand img{width:140px;max-width:160px}

    .nav-desktop{
      display:flex;align-items:center;gap:18px;flex-wrap:wrap;
      justify-content:center;
    }
    .nav-link{
      color:var(--muted);
      text-decoration:none;
      font-weight:600;
      font-size:14px;
      padding:10px 8px;
      border-radius:12px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
    }
    .nav-link:hover{
      background:rgba(217,42,102,.08);
      color:var(--text);
      transform: translateY(-1px);
    }

    .header-actions{display:flex;align-items:center;gap:12px}
    .btn{
      display:inline-flex;align-items:center;justify-content:center;gap:10px;
      border-radius:14px;
      padding:11px 14px;
      border:1px solid rgba(20,24,33,.10);
      text-decoration:none;
      font-weight:700;
      font-size:14px;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:active{transform: translateY(0)}
    .btn-primary{
      background: linear-gradient(135deg, var(--pink) 0%, var(--pink-2) 100%);
      color:#fff;
      border-color: rgba(217,42,102,.35);
      box-shadow: 0 14px 40px rgba(217,42,102,.22);
    }
    .btn-primary:hover{
      transform: translateY(-1px);
      box-shadow: 0 18px 55px rgba(217,42,102,.26);
    }
    .btn-ghost{
      background: rgba(255,255,255,.8);
      color:var(--text);
      border-color: rgba(20,24,33,.14);
    }
    .btn-ghost:hover{
      transform: translateY(-1px);
      background: rgba(255,255,255,.98);
      border-color: rgba(217,42,102,.30);
      box-shadow: var(--shadow-soft);
    }
    .btn-soft{
      background: rgba(217,42,102,.08);
      border-color: rgba(217,42,102,.18);
      color: var(--accent);
      padding:10px 12px;
      border-radius:14px;
      font-weight:800;
      text-decoration:none;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
    }
    .btn-soft:hover{
      transform: translateY(-1px);
      background: rgba(217,42,102,.12);
      border-color: rgba(217,42,102,.30);
      box-shadow: 0 14px 35px rgba(217,42,102,.18);
    }
    .btn-alt{
      background: rgba(255,79,134,.10);
      border-color: rgba(255,79,134,.20);
      color:#9f1c4a;
    }
    .btn-block{width:100%}
    .btn-sm{padding:9px 12px;font-size:13px;border-radius:12px}
    .btn-lg{padding:12px 16px;border-radius:16px;font-size:15px}

    .burger{
      width:46px;height:44px;border-radius:14px;
      border:1px solid rgba(20,24,33,.14);
      background: rgba(255,255,255,.75);
      display:none;
      flex-direction:column;align-items:center;justify-content:center;
      gap:5px;cursor:pointer;
    }
    .burger-line{
      width:18px;height:2px;background:var(--text);border-radius:3px;
      display:block;
    }
    .burger-close{gap:0}
    .burger-close .burger-line{width:20px}
    .burger-close .burger-line:nth-child(1){transform: rotate(45deg) translate(2px,1px)}
    .burger-close .burger-line:nth-child(2){transform: rotate(-45deg) translate(1px,-1px)}

    .mobile-nav{
      display:none;
      border-top:1px solid rgba(20,24,33,.08);
      background: rgba(255,255,255,.92);
    }
    .mobile-nav-inner{padding:18px 16px 22px}
    .mobile-nav-top{display:flex;align-items:center;justify-content:space-between;gap:14px}
    .mobile-brand img{width:120px}
    .mobile-links{display:flex;flex-direction:column;gap:10px;margin-top:14px}
    .mobile-link{
      padding:12px 12px;border-radius:14px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.8);
      text-decoration:none;color:var(--text);
      font-weight:800;
    }
    .mobile-cta{display:flex;gap:12px;margin-top:14px}
    .btn-block{width:100%}
    .mobile-links-bottom{margin-top:14px;display:flex;flex-direction:column;gap:8px;color:var(--muted);font-weight:700;font-size:13px}
    .inline-link{color:var(--brand);text-decoration:none;font-weight:800}
    .inline-link:hover{text-decoration:underline}
    .mini-meta{line-height:1.3}

    .hero{
      position:relative;
      padding:46px 0 22px;
    }
    .hero-bg{
      position:absolute;inset:0;
      background:
        radial-gradient(700px 420px at 20% 20%, rgba(255,79,134,.22), rgba(255,255,255,0) 62%),
        radial-gradient(600px 340px at 80% 35%, rgba(217,42,102,.18), rgba(255,255,255,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,241,246,.85));
      pointer-events:none;
      z-index:0;
    }
    .hero-inner{position:relative;z-index:1;display:grid;grid-template-columns: 1.05fr .95fr;gap:22px;align-items:start}
    .eyebrow{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
    .pill{
      padding:7px 10px;border-radius:999px;
      background: rgba(217,42,102,.10);
      color: var(--accent);
      font-weight:900;font-size:12px;
      border:1px solid rgba(217,42,102,.18);
    }
    .pill-soft{
      background: rgba(255,255,255,.75);
      color: var(--text);
      border-color: rgba(20,24,33,.12);
    }
    .dot{color:var(--muted)}
    .hero-title{
      margin:14px 0 10px;
      font-size:38px;line-height:1.14;
      letter-spacing:-.02em;
    }
    .hero-sub{
      margin:0;
      color:var(--muted);
      font-size:16px;line-height:1.7;
      max-width:56ch;
      font-weight:600;
    }
    .hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}

    .hero-grid{
      margin-top:22px;
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
    }
    .metric-card{
      display:flex;gap:12px;align-items:flex-start;
      padding:14px 14px;border-radius:16px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 30px rgba(24,14,33,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:86px;
    }
    .metric-card:hover{
      transform: translateY(-2px);
      border-color: rgba(217,42,102,.28);
      box-shadow: 0 18px 45px rgba(217,42,102,.14);
    }
    .metric-icon{color: var(--pink); width:34px; height:34px; display:flex;align-items:center;justify-content:center;border-radius:12px;background: rgba(217,42,102,.10); border:1px solid rgba(217,42,102,.18)}
    .metric-title{font-weight:950;font-size:14px}
    .metric-desc{color:var(--muted);font-weight:700;font-size:13px;margin-top:4px;line-height:1.4}

    .trust-row{
      margin-top:18px;
      display:flex;gap:12px;flex-wrap:wrap;
    }
    .trust-item{
      display:flex;align-items:center;gap:10px;
      padding:10px 12px;border-radius:16px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(20,24,33,.10);
      box-shadow: 0 10px 30px rgba(24,14,33,.05);
    }
    .trust-badge{
      display:inline-flex;align-items:center;justify-content:center;
      width:38px;height:28px;border-radius:14px;
      background: rgba(217,42,102,.12);
      color: var(--accent);
      font-weight:1000;
      border:1px solid rgba(217,42,102,.20);
      font-size:13px;
    }
    .trust-badge-2{background: rgba(255,79,134,.10); border-color: rgba(255,79,134,.18)}
    .trust-badge-3{background: rgba(177,31,79,.08); border-color: rgba(177,31,79,.16)}
    .trust-label{color:var(--muted);font-weight:800;font-size:13px}

    .hero-right{position:relative}
    .glass-panel{
      border-radius:22px;
      border:1px solid rgba(20,24,33,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,241,246,.68));
      box-shadow: var(--shadow);
      overflow:hidden;
      padding:18px;
      animation: floatIn .7s ease both;
    }
    @keyframes floatIn{
      from{opacity:0;transform: translateY(10px)}
      to{opacity:1;transform: translateY(0)}
    }
    .panel-top{padding:2px 4px 12px}
    .panel-title{font-weight:1000;font-size:16px}
    .panel-sub{color:var(--muted);font-weight:700;margin-top:6px;line-height:1.5;font-size:13px}

    .quick-form{display:flex;flex-direction:column;gap:12px}
    .form-row{display:flex;gap:12px}
    .field{display:flex;flex-direction:column;gap:7px;flex:1}
    .field-label{font-size:12px;font-weight:900;color:var(--muted)}
    input,select,textarea{
      border-radius:14px;
      border:1px solid rgba(20,24,33,.14);
      background: rgba(255,255,255,.86);
      padding:11px 12px;
      outline:none;
      font-size:14px;
      font-weight:700;
      color:var(--text);
      transition: border-color .15s ease, box-shadow .15s ease, transform .05s ease;
    }
    textarea{resize:vertical;min-height:100px;max-height:220px}
    input:focus,select:focus,textarea:focus{
      border-color: rgba(217,42,102,.40);
      box-shadow: 0 0 0 4px rgba(217,42,102,.14);
    }

    .form-actions{display:flex;flex-direction:column;gap:10px}
    .form-hint{color:var(--muted-2);font-weight:700;font-size:12px;line-height:1.4}
    .panel-divider{height:1px;background: rgba(20,24,33,.08);margin:12px 0}

    .panel-bottom{display:flex;flex-direction:column;gap:12px}
    .mini-points{display:flex;flex-direction:column;gap:10px}
    .mini-point{display:flex;align-items:center;gap:10px;color:var(--muted);font-weight:800;font-size:13px}
    .mini-dot{width:10px;height:10px;border-radius:4px;background: rgba(217,42,102,.18);border:1px solid rgba(217,42,102,.26)}
    .panel-links{display:flex;align-items:center;gap:10px;color:var(--muted);font-weight:900;font-size:13px}
    .sep{color: rgba(20,24,33,.25)}

    .floating-tags{
      position:absolute;
      left:-8px;
      bottom:-18px;
      display:flex;flex-wrap:wrap;gap:10px;
      padding:10px;
      width: min(420px, 100%);
      pointer-events:none;
      z-index:0;
      opacity:.95;
    }
    .tag{
      padding:8px 10px;border-radius:999px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.70);
      color: var(--text);
      font-weight:900;
      font-size:12px;
      box-shadow: 0 10px 30px rgba(24,14,33,.05);
    }
    .tag-soft{
      background: rgba(255,255,255,.76);
      border-color: rgba(217,42,102,.18);
      color: #8f1d46;
    }

    .section{padding:56px 0}
    .section-alt{
      background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,241,246,.45));
      border-top:1px solid rgba(20,24,33,.06);
      border-bottom:1px solid rgba(20,24,33,.06);
    }
    .section-head{margin-bottom:22px}
    .section-kicker{
      font-weight:1000;color: var(--accent);
      font-size:12px;
      letter-spacing:.08em;
      text-transform:uppercase;
    }
    .section-title{margin:10px 0 10px;font-size:30px;line-height:1.2;letter-spacing:-.02em}
    .section-desc{margin:0;color:var(--muted);font-weight:700;line-height:1.7;font-size:15px;max-width:72ch}

    .split-cards{
      display:grid;grid-template-columns: 1fr 1fr 1fr; gap:14px;
    }
    .info-card{
      border-radius:20px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.78);
      padding:18px;
      box-shadow: 0 14px 40px rgba(24,14,33,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:250px;
    }
    .info-card:hover{transform: translateY(-2px);border-color: rgba(217,42,102,.26);box-shadow: 0 20px 55px rgba(217,42,102,.14)}
    .info-card-accent{
      background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,241,246,.74));
    }
    .info-icon{
      width:44px;height:44px;border-radius:16px;
      display:flex;align-items:center;justify-content:center;
      color: var(--pink);
      background: rgba(217,42,102,.10);
      border:1px solid rgba(217,42,102,.18);
    }
    .card-title{margin:14px 0 8px;font-size:16px;font-weight:1000}
    .card-text{margin:0;color:var(--muted);font-weight:700;line-height:1.7;font-size:14px}

    .check-list{margin:14px 0 0; padding-left:0; list-style:none;display:flex;flex-direction:column;gap:10px}
    .check-list li{display:flex;align-items:flex-start;gap:10px;color:var(--muted);font-weight:800}
    .check-list li::before{
      content:"✓";
      color: var(--ok);
      font-weight:1000;
      width:18px;height:18px;
      display:inline-flex;align-items:center;justify-content:center;
      border-radius:6px;
      background: rgba(11,122,82,.10);
      border:1px solid rgba(11,122,82,.18);
      flex:0 0 auto;
    }

    .split-micro{
      margin-top:14px;
      display:grid;grid-template-columns:1fr 1fr;gap:12px;
    }
    .micro{
      padding:12px;border-radius:16px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.72);
    }
    .micro-top{font-weight:1000;font-size:12px;color:var(--muted)}
    .micro-mid{font-weight:1000;font-size:14px;margin-top:6px}
    .micro-bottom{color:var(--muted);font-weight:800;font-size:12px;margin-top:4px;line-height:1.4}

    .chips{margin-top:14px;display:flex;flex-wrap:wrap;gap:10px}
    .chip{
      padding:8px 10px;border-radius:999px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.75);
      color: var(--text);
      font-weight:900;font-size:12px;
    }
    .chip-outline{background: rgba(255,255,255,.65);border-color: rgba(217,42,102,.22);color:#8f1d46}

    .cap-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .cap-card{
      border-radius:20px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.80);
      padding:18px;
      box-shadow: 0 14px 40px rgba(24,14,33,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:220px;
      display:flex;flex-direction:column;gap:10px;
    }
    .cap-card:hover{transform: translateY(-2px);border-color: rgba(217,42,102,.26);box-shadow: 0 22px 60px rgba(217,42,102,.14)}
    .cap-top{display:flex;align-items:center;justify-content:space-between;gap:12px}
    .cap-badge{
      padding:7px 10px;border-radius:999px;
      background: rgba(217,42,102,.12);
      color: var(--accent);
      font-weight:1000;font-size:12px;
      border:1px solid rgba(217,42,102,.18);
    }
    .cap-badge-2{background: rgba(255,79,134,.10);border-color: rgba(255,79,134,.18)}
    .cap-badge-3{background: rgba(255,122,168,.10);border-color: rgba(255,122,168,.18)}
    .cap-badge-4{background: rgba(177,31,79,.08);border-color: rgba(177,31,79,.16)}
    .cap-badge-5{background: rgba(255,79,134,.08);border-color: rgba(217,42,102,.16);color:#a11c52}
    .cap-badge-6{background: rgba(217,42,102,.10);border-color: rgba(217,42,102,.18);color:#8f1d46}

    .cap-icon{color:var(--pink); width:42px;height:42px;border-radius:16px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(217,42,102,.18);background: rgba(217,42,102,.10)}
    .cap-title{margin:0;font-size:16px;font-weight:1000}
    .cap-text{margin:0;color:var(--muted);font-weight:700;line-height:1.7;font-size:14px}
    .cap-card .btn{margin-top:auto}

    .timeline{
      display:flex;flex-direction:column;gap:12px;
    }
    .time-item{
      border-radius:20px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.78);
      padding:16px;
      display:flex;gap:14px;align-items:flex-start;
      box-shadow: 0 14px 40px rgba(24,14,33,.05);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .time-item:hover{transform: translateY(-2px);border-color: rgba(217,42,102,.26);box-shadow: 0 20px 55px rgba(217,42,102,.12)}
    .time-step{
      width:44px;height:44px;border-radius:18px;
      background: rgba(217,42,102,.10);
      border:1px solid rgba(217,42,102,.18);
      display:flex;align-items:center;justify-content:center;
      font-weight:1000;color: var(--accent);
      flex:0 0 auto;
    }
    .time-title{margin:0;font-size:16px;font-weight:1000}
    .time-text{margin:8px 0 0;color:var(--muted);font-weight:700;line-height:1.7;font-size:14px;max-width:70ch}

    .callout{
      margin-top:16px;
      border-radius:22px;
      border:1px solid rgba(217,42,102,.18);
      background: linear-gradient(135deg, rgba(217,42,102,.10), rgba(255,255,255,.8));
      padding:18px;
      display:flex;align-items:center;justify-content:space-between;gap:14px;
      box-shadow: 0 18px 50px rgba(217,42,102,.10);
    }
    .callout-title{font-weight:1000;font-size:16px}
    .callout-desc{color:var(--muted);font-weight:700;line-height:1.7;margin-top:6px;font-size:14px}

    .industry-grid{
      display:grid;grid-template-columns: repeat(3, minmax(0,1fr));gap:14px;
    }
    .industry-card{
      border-radius:20px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.82);
      padding:18px;
      box-shadow: 0 14px 40px rgba(24,14,33,.05);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:210px;
      display:flex;flex-direction:column;gap:12px;
    }
    .industry-card:hover{transform: translateY(-2px);border-color: rgba(217,42,102,.26);box-shadow: 0 22px 60px rgba(217,42,102,.12)}
    .industry-title{font-weight:1000;font-size:16px}
    .industry-list{margin:0;padding-left:16px;color:var(--muted);font-weight:800;line-height:1.9}
    .industry-list li{margin:2px 0}
    .industry-card .inline-link{margin-top:auto}

    .network-grid{
      display:grid;grid-template-columns: repeat(3, minmax(0,1fr));gap:14px;
    }
    .network-card{
      border-radius:20px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.80);
      padding:18px;
      box-shadow: 0 14px 40px rgba(24,14,33,.05);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .network-card:hover{transform: translateY(-2px);border-color: rgba(217,42,102,.26);box-shadow: 0 22px 60px rgba(217,42,102,.12)}
    .network-title{font-weight:1000;font-size:16px;margin-bottom:8px}
    .network-text{margin:0;color:var(--muted);font-weight:700;line-height:1.7}
    .network-marks{margin-top:12px;display:flex;flex-wrap:wrap;gap:10px}
    .mark{
      padding:8px 10px;border-radius:999px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.7);
      color: var(--text);
      font-weight:900;font-size:12px;
    }
    .mark-alt{border-color: rgba(217,42,102,.20);background: rgba(217,42,102,.08);color:#8f1d46}

    .partners-row{
      margin-top:14px;
      border-radius:22px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.78);
      padding:16px;
      display:flex;align-items:center;justify-content:space-between;gap:14px;
      box-shadow: 0 14px 40px rgba(24,14,33,.05);
    }
    .partners-title{font-weight:1000;font-size:16px}
    .partners-desc{margin-top:6px;color:var(--muted);font-weight:700;line-height:1.7;font-size:14px}

    .process-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .process-card{
      border-radius:20px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.82);
      padding:18px;
      box-shadow: 0 14px 40px rgba(24,14,33,.05);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:180px;
    }
    .process-card:hover{transform: translateY(-2px);border-color: rgba(217,42,102,.26);box-shadow: 0 22px 60px rgba(217,42,102,.12)}
    .process-top{display:flex;align-items:center;gap:12px}
    .process-num{
      width:42px;height:42px;border-radius:18px;
      background: rgba(217,42,102,.10);
      border:1px solid rgba(217,42,102,.18);
      color: var(--accent);
      display:flex;align-items:center;justify-content:center;
      font-weight:1000;
    }
    .process-title{font-weight:1000;font-size:15px}
    .process-text{margin:12px 0 0;color:var(--muted);font-weight:700;line-height:1.7;font-size:14px}

    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .case-card{
      display:flex;flex-direction:column;gap:10px;
      text-decoration:none;
      border-radius:20px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.82);
      padding:18px;
      box-shadow: 0 14px 40px rgba(24,14,33,.05);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:190px;
    }
    .case-card:hover{
      transform: translateY(-2px);
      border-color: rgba(217,42,102,.26);
      box-shadow: 0 22px 60px rgba(217,42,102,.12);
    }
    .case-top{display:flex;align-items:center;justify-content:space-between;gap:12px}
    .case-badge{
      padding:7px 10px;border-radius:999px;
      background: rgba(217,42,102,.12);
      border:1px solid rgba(217,42,102,.18);
      color: var(--accent);
      font-weight:1000;font-size:12px;
    }
    .case-badge-2{background: rgba(255,79,134,.10);border-color: rgba(255,79,134,.18)}
    .case-badge-3{background: rgba(255,122,168,.10);border-color: rgba(255,122,168,.18);color:#a11c52}
    .case-badge-4{background: rgba(177,31,79,.08);border-color: rgba(177,31,79,.16);color:#8f1d46}
    .case-badge-5{background: rgba(255,79,134,.08);border-color: rgba(217,42,102,.16);color:#8f1d46}
    .case-badge-6{background: rgba(217,42,102,.10);border-color: rgba(217,42,102,.18);color:#8f1d46}
    .case-arrow{color: rgba(217,42,102,.85);font-weight:1000}
    .case-title{margin:0;font-weight:1000;font-size:16px}
    .case-text{margin:0;color:var(--muted);font-weight:700;line-height:1.7;font-size:14px}

    .article-strip{
      margin-top:18px;
      border-radius:22px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.78);
      padding:16px;
      display:grid;grid-template-columns: 1fr 1.05fr;gap:14px;align-items:start;
      box-shadow: 0 14px 40px rgba(24,14,33,.05);
    }
    .article-title{font-weight:1000;font-size:16px;margin-top:6px}
    .article-desc{margin:10px 0 0;color:var(--muted);font-weight:700;line-height:1.7;font-size:14px}
    .article-list{display:flex;flex-direction:column;gap:10px}
    .article-item{
      display:flex;gap:12px;align-items:flex-start;
      text-decoration:none;
      border-radius:18px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.74);
      padding:12px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .article-item:hover{
      transform: translateY(-1px);
      border-color: rgba(217,42,102,.26);
      box-shadow: 0 18px 45px rgba(217,42,102,.12);
    }
    .article-dot{
      width:10px;height:10px;border-radius:4px;
      background: rgba(217,42,102,.18);
      border:1px solid rgba(217,42,102,.26);
      margin-top:6px;flex:0 0 auto;
    }
    .article-meta{display:flex;flex-direction:column;gap:6px}
    .article-name{font-weight:1000;color:var(--text);line-height:1.35;font-size:14px}
    .article-time{color:var(--muted-2);font-weight:800;font-size:12px}

    .compare-wrap{
      border-radius:24px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.78);
      padding:16px;
      box-shadow: 0 20px 60px rgba(24,14,33,.06);
    }
    .compare-top{display:grid;grid-template-columns: 320px 1fr;gap:14px;align-items:stretch}
    .rating-card{
      border-radius:22px;
      border:1px solid rgba(217,42,102,.18);
      background: linear-gradient(135deg, rgba(217,42,102,.12), rgba(255,255,255,.82));
      padding:16px;
      display:flex;flex-direction:column;gap:10px;
      box-shadow: 0 18px 55px rgba(217,42,102,.12);
    }
    .rating-num{font-size:44px;line-height:1;font-weight:1100;color: var(--accent)}
    .rating-sub{color:var(--muted);font-weight:900}
    .stars{color:#f59e0b;font-size:16px;letter-spacing:2px}
    .rating-tag{margin-top:2px;padding:9px 10px;border-radius:16px;background: rgba(255,255,255,.78);border:1px solid rgba(20,24,33,.10);font-weight:1000;color:#8a1440}
    .compare-note{
      border-radius:22px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.72);
      padding:16px;
    }
    .note-title{font-weight:1000;font-size:16px;margin-bottom:10px}
    .note-list{margin:0;padding-left:18px;color:var(--muted);font-weight:900;line-height:1.9}

    .compare-table-wrap{margin-top:14px}
    .table-scroll{overflow:auto}
    .compare-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:760px;
    }
    .compare-table th,.compare-table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(20,24,33,.08);
      text-align:left;
      vertical-align:top;
      font-weight:800;
      color:var(--text);
    }
    .compare-table th{
      position:sticky;top:0;
      background: rgba(255,241,246,.92);
      z-index:1;
      border-top-left-radius:16px;border-top-right-radius:16px;
      font-size:13px;
      color:#35111f;
    }
    .good{color: var(--ok);font-weight:1000}
    .mid{color: #6b7280;font-weight:1000}

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

    .match-grid{display:grid;grid-template-columns: 1fr 1fr;gap:14px}
    .form-card{
      border-radius:22px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 14px 40px rgba(24,14,33,.05);
      padding:18px;
    }
    .form-card-head{margin-bottom:14px}
    .form-card-title{font-weight:1100;font-size:16px}
    .form-card-sub{color:var(--muted);font-weight:800;margin-top:6px;line-height:1.7;font-size:14px}

    .side-stack{display:flex;flex-direction:column;gap:14px}
    .side-card{
      border-radius:22px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 40px rgba(24,14,33,.05);
      padding:18px;
    }
    .side-card-accent{
      background: linear-gradient(135deg, rgba(217,42,102,.10), rgba(255,255,255,.84));
      border-color: rgba(217,42,102,.20);
    }
    .side-title{font-weight:1100;font-size:16px}
    .side-desc{color:var(--muted);font-weight:800;line-height:1.7;font-size:14px;margin-top:8px}
    .stack-list{margin:12px 0 0;padding-left:16px;color:var(--muted);font-weight:900;line-height:1.9}
    .price-row{margin-top:12px;display:grid;grid-template-columns:1fr 1fr;gap:12px}
    .price-box{border-radius:18px;border:1px solid rgba(20,24,33,.10);background: rgba(255,255,255,.74);padding:12px}
    .price-label{color:var(--muted);font-weight:950;font-size:12px}
    .price-value{margin-top:6px;font-weight:1100}
    .team-badges{margin-top:12px;display:flex;flex-wrap:wrap;gap:10px}

    .token-layout{display:grid;grid-template-columns: 1fr 1fr;gap:14px}
    .token-card{
      border-radius:22px;
      border:1px solid rgba(217,42,102,.18);
      background: linear-gradient(135deg, rgba(217,42,102,.10), rgba(255,255,255,.86));
      box-shadow: 0 18px 55px rgba(217,42,102,.10);
      padding:18px;
    }
    .token-title{font-weight:1100;font-size:16px}
    .token-desc{margin-top:8px;color:var(--muted);font-weight:800;line-height:1.7;font-size:14px}
    .token-points{margin-top:14px;display:flex;flex-direction:column;gap:12px}
    .token-point{display:flex;gap:12px;align-items:flex-start}
    .token-icon{
      width:28px;height:28px;border-radius:12px;
      background: rgba(217,42,102,.10);
      border:1px solid rgba(217,42,102,.18);
      display:flex;align-items:center;justify-content:center;
      color: var(--accent);font-weight:1000;flex:0 0 auto;
      margin-top:2px;
    }
    .token-point-title{font-weight:1100}
    .token-point-desc{margin-top:5px;color:var(--muted);font-weight:800;line-height:1.6;font-size:13px}
    .token-cta{margin-top:16px;display:flex;gap:12px;flex-wrap:wrap}

    .card-surface{
      border-radius:22px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 14px 40px rgba(24,14,33,.05);
      padding:18px;
    }
    .token-table-head{margin-bottom:12px}
    .token-table-title{font-weight:1100;font-size:16px}
    .token-table-sub{margin-top:8px;color:var(--muted);font-weight:800;line-height:1.7;font-size:14px}
    .mini-price-table{width:100%;border-collapse:collapse;min-width:520px}
    .mini-price-table th,.mini-price-table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(20,24,33,.08);
      text-align:left;
      font-weight:900;
    }
    .mini-price-table th{
      background: rgba(255,241,246,.92);
      color:#35111f;
      font-size:13px;
      position:sticky;top:0;
      z-index:1;
    }
    .token-table-foot{
      margin-top:12px;
      display:flex;gap:12px;align-items:flex-start;
      padding-top:12px;border-top:1px solid rgba(20,24,33,.08);
    }
    .foot-badge{
      padding:8px 10px;border-radius:14px;
      background: rgba(217,42,102,.10);
      border:1px solid rgba(217,42,102,.18);
      color: var(--accent);
      font-weight:1100;
      flex:0 0 auto;
    }
    .foot-text{color:var(--muted);font-weight:800;line-height:1.7;font-size:13px}

    .trust-strip{
      margin-top:14px;
      display:grid;grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
    }
    .trust-strip-item{
      border-radius:22px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.78);
      padding:16px;
      display:flex;gap:12px;align-items:flex-start;
      box-shadow: 0 14px 40px rgba(24,14,33,.05);
    }
    .trust-strip-icon{
      width:34px;height:34px;border-radius:14px;
      background: rgba(217,42,102,.10);
      border:1px solid rgba(217,42,102,.18);
      display:flex;align-items:center;justify-content:center;
      color: var(--accent);font-weight:1100;
      flex:0 0 auto;
      margin-top:2px;
    }
    .trust-strip-title{font-weight:1100}
    .trust-strip-desc{margin-top:6px;color:var(--muted);font-weight:800;line-height:1.6;font-size:13px}

    .training-grid{display:grid;grid-template-columns: 1fr 1.05fr;gap:14px}
    .training-card{
      border-radius:22px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 14px 40px rgba(24,14,33,.05);
      padding:18px;
    }
    .training-title{font-weight:1100;font-size:16px}
    .training-desc{margin-top:8px;color:var(--muted);font-weight:800;line-height:1.7;font-size:14px}
    .training-list{margin:14px 0 0;padding:0;list-style:none;display:flex;flex-direction:column;gap:10px;color:var(--muted);font-weight:900}
    .li-dot{display:inline-block;width:9px;height:9px;border-radius:4px;background: rgba(217,42,102,.18);border:1px solid rgba(217,42,102,.26);margin-right:10px;transform: translateY(1px)}
    .training-cta{margin-top:16px;display:flex;gap:12px;flex-wrap:wrap}
    .learning-steps{display:grid;grid-template-columns: 1fr 1fr;gap:12px}
    .learn-card{
      border-radius:22px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.78);
      padding:16px;
      box-shadow: 0 14px 40px rgba(24,14,33,.05);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .learn-card:hover{transform: translateY(-2px);border-color: rgba(217,42,102,.26);box-shadow: 0 22px 60px rgba(217,42,102,.12)}
    .learn-num{
      width:42px;height:42px;border-radius:18px;
      background: rgba(217,42,102,.10);
      border:1px solid rgba(217,42,102,.18);
      color: var(--accent);
      display:flex;align-items:center;justify-content:center;
      font-weight:1100;
    }
    .learn-title{margin-top:12px;font-weight:1100}
    .learn-text{margin-top:8px;color:var(--muted);font-weight:800;line-height:1.7;font-size:13px}

    .training-side{margin-top:12px}
    .tag-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:12px}

    .faq-layout{display:grid;grid-template-columns: .95fr 1.05fr;gap:14px;align-items:start}
    .faq-mini-card{
      border-radius:22px;border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 14px 40px rgba(24,14,33,.05);
      padding:18px;
    }
    .faq-mini-title{font-weight:1100;font-size:16px}
    .faq-mini-desc{margin-top:8px;color:var(--muted);font-weight:800;line-height:1.7;font-size:14px}
    .quick-links{margin-top:12px;display:flex;flex-wrap:wrap;gap:10px}
    .quick-link{
      padding:10px 12px;border-radius:999px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.74);
      color:var(--text);
      font-weight:950;text-decoration:none;
      transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
      font-size:13px;
    }
    .quick-link:hover{transform: translateY(-1px);border-color: rgba(217,42,102,.26);box-shadow: 0 18px 45px rgba(217,42,102,.12)}
    .link-cloud{padding:18px}
    .cloud-title{font-weight:1100}
    .cloud-tags{margin-top:12px;display:flex;flex-wrap:wrap;gap:10px}

    .accordion{
      border-radius:22px;border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 14px 40px rgba(24,14,33,.05);
      padding:14px;
    }
    .accordion-title{margin:6px 10px 12px;font-weight:1100}
    .acc-item{
      border-radius:18px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.74);
      margin:10px;
      overflow:hidden;
      transition: border-color .15s ease, transform .15s ease;
    }
    .acc-item[open]{border-color: rgba(217,42,102,.26)}
    .acc-summary{
      cursor:pointer;
      padding:14px 14px;
      list-style:none;
      font-weight:1000;
      color:var(--text);
      outline:none;
    }
    .acc-summary::-webkit-details-marker{display:none}
    .acc-content{
      padding:0 14px 14px;
      color:var(--muted);
      font-weight:800;
      line-height:1.8;
      font-size:14px;
      animation: accIn .18s ease both;
    }
    @keyframes accIn{
      from{opacity:0;transform: translateY(-2px)}
      to{opacity:1;transform: translateY(0)}
    }

    .wiki-grid{
      display:grid;grid-template-columns: repeat(4, minmax(0,1fr));gap:14px;
    }
    .wiki-card{
      border-radius:22px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 14px 40px rgba(24,14,33,.05);
      padding:18px;
      min-height:148px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .wiki-card:hover{transform: translateY(-2px);border-color: rgba(217,42,102,.26);box-shadow: 0 22px 60px rgba(217,42,102,.12)}
    .wiki-card-2{background: linear-gradient(135deg, rgba(217,42,102,.10), rgba(255,255,255,.84))}
    .wiki-card-3{background: linear-gradient(135deg, rgba(255,79,134,.10), rgba(255,255,255,.84))}
    .wiki-card-4{background: linear-gradient(135deg, rgba(255,122,168,.10), rgba(255,255,255,.84))}
    .wiki-title{font-weight:1100;font-size:16px}
    .wiki-text{margin-top:10px;color:var(--muted);font-weight:800;line-height:1.7;font-size:14px}

    .partners-inline{
      margin-top:16px;
      border-radius:22px;border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.78);
      padding:16px;
      box-shadow: 0 14px 40px rgba(24,14,33,.05);
    }
    .partners-inline-title{font-weight:1100;margin-bottom:12px}
    .partners-inline-links{display:flex;flex-wrap:wrap;gap:12px}
    .partners-inline-links a{
      padding:10px 12px;border-radius:999px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.74);
      color:var(--text);
      font-weight:900;text-decoration:none;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      font-size:13px;
    }
    .partners-inline-links a:hover{transform: translateY(-1px);border-color: rgba(217,42,102,.26);box-shadow: 0 18px 45px rgba(217,42,102,.12)}

    .news-grid{
      display:grid;grid-template-columns: repeat(4, minmax(0,1fr));gap:14px;
    }
    .news-card{
      grid-column: span 1;
      border-radius:22px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 14px 40px rgba(24,14,33,.05);
      padding:18px;
      text-decoration:none;
      color:inherit;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:190px;
      display:flex;flex-direction:column;gap:10px;
    }
    .news-card:hover{transform: translateY(-2px);border-color: rgba(217,42,102,.26);box-shadow: 0 22px 60px rgba(217,42,102,.12)}
    .news-card-2{background: linear-gradient(135deg, rgba(217,42,102,.10), rgba(255,255,255,.86))}
    .news-card-3{background: linear-gradient(135deg, rgba(255,79,134,.10), rgba(255,255,255,.86))}
    .news-top{display:flex;align-items:center;justify-content:space-between}
    .news-type{
      padding:7px 10px;border-radius:999px;
      background: rgba(217,42,102,.10);
      border:1px solid rgba(217,42,102,.18);
      color: var(--accent);
      font-weight:1000;font-size:12px;
    }
    .news-arrow{color: rgba(217,42,102,.85);font-weight:1100}
    .news-title{font-weight:1100;font-size:16px;line-height:1.35}
    .news-desc{color:var(--muted);font-weight:800;line-height:1.7;font-size:14px;margin-top:auto}

    .contact-grid{display:grid;grid-template-columns: 1.05fr .95fr;gap:14px;align-items:start}
    .contact-card{padding:18px;border-radius:22px}
    .contact-title{font-weight:1100;font-size:16px}
    .contact-sub{margin-top:8px;color:var(--muted);font-weight:800;line-height:1.6;font-size:13px}
    .contact-form{margin-top:14px;display:flex;flex-direction:column;gap:12px}
    .contact-side{display:flex;flex-direction:column;gap:14px}
    .contact-side-card{
      padding:18px;border-radius:22px;border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 14px 40px rgba(24,14,33,.05);
    }
    .contact-side-title{font-weight:1100;font-size:16px}
    .contact-side-desc{margin-top:8px;color:var(--muted);font-weight:800;line-height:1.7;font-size:14px}
    .contact-line{display:flex;gap:12px;align-items:center;justify-content:space-between;margin-top:12px;padding-top:12px;border-top:1px solid rgba(20,24,33,.08)}
    .contact-line:first-of-type{border-top:none;padding-top:0;margin-top:14px}
    .contact-key{color:var(--muted);font-weight:950;font-size:13px}
    .contact-val{font-weight:950}
    .qr-card{
      padding:18px;border-radius:22px;border:1px solid rgba(217,42,102,.18);
      background: linear-gradient(135deg, rgba(217,42,102,.10), rgba(255,255,255,.86));
      box-shadow: 0 18px 55px rgba(217,42,102,.10);
    }
    .qr-title{font-weight:1100;font-size:16px}
    .qr-sub{margin-top:8px;color:var(--muted);font-weight:800;line-height:1.7;font-size:14px}
    .qr-wrap{margin-top:12px;display:flex;align-items:center;justify-content:center;border-radius:20px;padding:10px;background: rgba(255,255,255,.7);border:1px solid rgba(20,24,33,.10)}
    .qr-img{width:160px;max-width:100%;height:auto;border-radius:16px}
    .qr-foot{margin-top:10px;color:var(--muted-2);font-weight:800;line-height:1.6;font-size:13px}

    .btn-row{margin-top:14px;display:flex;flex-direction:column;gap:10px}

    .reviews-head{margin-bottom:14px}
    .reviews-title{margin:10px 0 0;font-size:18px;font-weight:1100}
    .reviews-sub{margin-top:8px;color:var(--muted);font-weight:800;line-height:1.7;font-size:14px}
    .review-grid{
      display:grid;grid-template-columns: repeat(3, minmax(0,1fr));gap:14px;
    }
    .review-card{
      border-radius:22px;border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 14px 40px rgba(24,14,33,.05);
      padding:18px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:190px;
      display:flex;flex-direction:column;gap:12px;
    }
    .review-card:hover{transform: translateY(-2px);border-color: rgba(217,42,102,.26);box-shadow: 0 22px 60px rgba(217,42,102,.12)}
    .review-card-2{background: linear-gradient(135deg, rgba(217,42,102,.10), rgba(255,255,255,.86))}
    .review-card-3{background: linear-gradient(135deg, rgba(255,79,134,.10), rgba(255,255,255,.86))}
    .review-top{display:flex;gap:12px;align-items:flex-start}
    .avatar{
      width:44px;height:44px;border-radius:18px;
      background: rgba(217,42,102,.10);
      border:1px solid rgba(217,42,102,.18);
      display:flex;align-items:center;justify-content:center;
      font-weight:1100;color: var(--accent);
      flex:0 0 auto;
    }
    .review-name{font-weight:1100}
    .review-rate{margin-top:4px;color:#f59e0b;font-weight:1100}
    .review-text{color:var(--muted);font-weight:800;line-height:1.8;font-size:14px}
    .review-foot{margin-top:auto;color:var(--muted-2);font-weight:900;font-size:12px}

    .join-grid{display:grid;grid-template-columns: 1.05fr .95fr;gap:14px;align-items:start}
    .join-card{
      border-radius:22px;border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 14px 40px rgba(24,14,33,.05);
      padding:18px;
    }
    .join-title{font-weight:1100;font-size:16px}
    .join-list{margin:14px 0 0;padding:0;list-style:none;display:flex;flex-direction:column;gap:12px;color:var(--muted);font-weight:900;line-height:1.6}
    .join-actions{margin-top:16px;display:flex;gap:12px;flex-wrap:wrap}
    .join-side{display:flex;flex-direction:column;gap:14px}
    .segmented{
      margin-top:14px;display:flex;gap:10px;flex-wrap:wrap
    }
    .seg-btn{
      padding:10px 12px;border-radius:999px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.74);
      font-weight:950;cursor:pointer;
      transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease, background .15s ease;
      color:var(--text);
    }
    .seg-btn:hover{transform: translateY(-1px);border-color: rgba(217,42,102,.26);box-shadow: 0 18px 45px rgba(217,42,102,.12)}
    .seg-btn.is-active{
      border-color: rgba(217,42,102,.28);
      background: rgba(217,42,102,.10);
      color:#8f1d46;
    }
    .seg-detail{margin-top:12px}
    .seg-title{font-weight:1100}
    .seg-text{margin-top:8px;color:var(--muted);font-weight:800;line-height:1.7;font-size:14px}
    .thumb-row{margin-top:12px;display:flex;gap:12px}
    .thumb{
      flex:1;border-radius:20px;border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.74);
      padding:12px;text-align:center;font-weight:1100;color:var(--muted)
    }
    .thumb-alt{border-color: rgba(217,42,102,.22);background: rgba(217,42,102,.08);color:#8f1d46}

    .site-footer{
      background: rgba(255,255,255,.78);
      border-top:1px solid rgba(20,24,33,.08);
      padding:34px 0 28px;
      color:var(--text);
    }
    .footer-inner{padding:0 18px}
    .footer-top{
      display:grid;grid-template-columns: 1fr 1fr 1fr;gap:14px;align-items:start;
    }
    .footer-col{
      border-radius:22px;
      border:1px solid rgba(20,24,33,.08);
      background: rgba(255,241,246,.40);
      padding:18px;
    }
    .footer-desc{margin-top:10px;color:var(--muted);font-weight:800;line-height:1.7;font-size:14px}
    .footer-links-row{margin-top:14px;display:flex;gap:12px;flex-wrap:wrap}
    .footer-title{font-weight:1100;font-size:16px;margin-bottom:12px}
    .footer-anchor{display:flex;flex-direction:column;gap:10px}
    .footer-anchor a{
      text-decoration:none;color:var(--text);
      font-weight:950;
      padding:10px 12px;border-radius:16px;
      border:1px solid rgba(20,24,33,.10);
      background: rgba(255,255,255,.7);
      transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
    }
    .footer-anchor a:hover{transform: translateY(-1px);border-color: rgba(217,42,102,.26);box-shadow: 0 18px 45px rgba(217,42,102,.12)}
    .footer-contact{display:flex;flex-direction:column;gap:10px}
    .footer-line{display:flex;gap:12px;justify-content:space-between;align-items:center}
    .footer-key{color:var(--muted);font-weight:950;font-size:13px}
    .footer-val{font-weight:1000}
    .footer-qr{margin-top:14px;display:flex;align-items:center;justify-content:center}
    .footer-divider{height:1px;background: rgba(20,24,33,.08);margin:16px 0}
    .footer-bottom{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}
    .footer-bottom-right{display:flex;gap:12px;flex-wrap:wrap}
    .footer-bottom-right a{
      text-decoration:none;color:var(--brand);
      font-weight:1000;
      border-bottom:1px dashed rgba(217,42,102,.35);
    }
    .footer-bottom-right a:hover{border-bottom-style:solid}

    .to-top{
      position:fixed;right:16px;bottom:18px;
      width:46px;height:46px;border-radius:18px;
      border:1px solid rgba(20,24,33,.14);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 55px rgba(24,14,33,.12);
      color:var(--text);
      font-weight:1100;
      cursor:pointer;
      display:flex;align-items:center;justify-content:center;
      transform: translateY(20px);
      opacity:0;
      pointer-events:none;
      transition: opacity .2s ease, transform .2s ease, background .2s ease, border-color .2s ease;
      z-index:60;
    }
    .to-top.show{
      opacity:1;transform: translateY(0);pointer-events:auto;
    }
    .to-top:hover{border-color: rgba(217,42,102,.28);background: rgba(255,241,246,.90)}

    .float-customer{
      position:fixed;left:16px;bottom:18px;
      padding:12px 14px;border-radius:20px;
      background: linear-gradient(135deg, rgba(217,42,102,.95), rgba(255,79,134,.95));
      color:#fff;text-decoration:none;
      font-weight:1100;
      border:1px solid rgba(217,42,102,.35);
      box-shadow: 0 18px 55px rgba(217,42,102,.22);
      display:flex;align-items:center;gap:10px;
      z-index:60;
      transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
    }
    .float-customer:hover{transform: translateY(-2px);filter:saturate(1.05);box-shadow: 0 22px 70px rgba(217,42,102,.26)}
    .float-dot{
      width:10px;height:10px;border-radius:4px;background: rgba(255,255,255,.95);
      box-shadow: 0 0 0 6px rgba(255,255,255,.18);
    }
    .float-text{font-size:14px}

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

    @media (max-width: 980px){
      .nav-desktop{display:none}
      .burger{display:flex}
      .hero-inner{grid-template-columns: 1fr;gap:16px}
      .hero-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
      .split-cards{grid-template-columns: 1fr; }
      .cap-grid{grid-template-columns: 1fr; }
      .industry-grid{grid-template-columns: 1fr; }
      .network-grid{grid-template-columns: 1fr; }
      .process-grid{grid-template-columns: 1fr 1fr}
      .case-grid{grid-template-columns: 1fr}
      .article-strip{grid-template-columns: 1fr}
      .compare-top{grid-template-columns: 1fr}
      .compare-actions{justify-content:flex-start}
      .match-grid{grid-template-columns: 1fr}
      .token-layout{grid-template-columns: 1fr}
      .trust-strip{grid-template-columns: 1fr}
      .training-grid{grid-template-columns: 1fr}
      .learning-steps{grid-template-columns: 1fr 1fr}
      .faq-layout{grid-template-columns: 1fr}
      .wiki-grid{grid-template-columns: 1fr 1fr}
      .news-grid{grid-template-columns: 1fr 1fr}
      .contact-grid{grid-template-columns: 1fr}
      .review-grid{grid-template-columns: 1fr}
      .join-grid{grid-template-columns: 1fr}
      .footer-top{grid-template-columns: 1fr}
      .mobile-nav{display:block}
      .mobile-nav[hidden]{display:none}
      .float-customer{left:12px;bottom:14px}
      .to-top{right:12px;bottom:14px}
      .floating-tags{position:relative;left:auto;bottom:auto;margin-top:12px;opacity:1;pointer-events:none}
    }

    @media (max-width: 560px){
      .hero-title{font-size:30px}
      .hero-sub{font-size:15px}
      .hero-grid{grid-template-columns: 1fr}
      .form-row{flex-direction:column}
      .process-grid{grid-template-columns: 1fr}
      .learning-steps{grid-template-columns: 1fr}
      .wiki-grid{grid-template-columns: 1fr}
      .news-grid{grid-template-columns: 1fr}
      .footer-bottom-right{justify-content:flex-start}
    }

    @media (prefers-reduced-motion: reduce){
      .reveal{transition:none}
      .hero-bg, .glass-panel{animation:none}
      .to-top, .float-customer{transition:none}
      *{scroll-behavior:auto !important}
    }