:root{
      --bg0:#fff7fb;
      --bg1:#fff;
      --text:#17141a;
      --muted:#5b5262;
      --muted2:#7a7183;

      --rose:#e84b7a;
      --rose2:#ff6b95;
      --rose3:#ff9fbb;

      --ink:#201c22;
      --line:#ead6df;
      --card:#ffffff;
      --soft:#fff2f7;

      --shadow: 0 14px 40px rgba(232, 75, 122, .12);
      --shadow2: 0 10px 26px rgba(16, 14, 18, .08);
      --shadow3: 0 6px 16px rgba(232, 75, 122, .10);

      --radius-xl: 22px;
      --radius-lg: 16px;
      --radius-md: 12px;

      --container: 1160px;
      --pad: 18px;

      --focus: 0 0 0 4px rgba(232,75,122,.18);
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans SC", sans-serif;
      color:var(--text);
      background:
        radial-gradient(1000px 420px at 20% -10%, rgba(232,75,122,.16), transparent 55%),
        radial-gradient(900px 480px at 90% 0%, rgba(255,107,149,.13), transparent 52%),
        linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 22%, #ffffff 100%);
      overflow-x:hidden;
    }

    .skip-link{
      position:absolute;
      left:-999px;
      top:auto;
      width:1px;
      height:1px;
      overflow:hidden;
    }
    .skip-link:focus{
      left:12px; top:12px;
      width:auto; height:auto;
      padding:10px 12px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:12px;
      box-shadow: var(--shadow2);
      z-index:9999;
      outline:none;
    }

    .container{
      width:min(var(--container), calc(100% - var(--pad)*2));
      margin:0 auto;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      border-bottom:1px solid rgba(234, 214, 223, .7);
      background: rgba(255,255,255,.72);
      backdrop-filter: blur(10px);
      transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
    }
    .site-header.scrolled{
      background: rgba(255,255,255,.88);
      box-shadow: 0 12px 30px rgba(20, 14, 22, .08);
    }
    .header-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand-link{display:flex; align-items:center; gap:10px; text-decoration:none}
    .ai-page-logo{width:120px}

    .nav-desktop{
      display:flex;
      align-items:center;
      gap:18px;
    }
    .nav-link{
      text-decoration:none;
      color:var(--ink);
      font-weight:650;
      font-size:14px;
      padding:8px 10px;
      border-radius:12px;
      transition: background .2s ease, transform .2s ease, color .2s ease;
      white-space:nowrap;
    }
    .nav-link:hover{
      background: rgba(232,75,122,.08);
      transform: translateY(-1px);
      color:#110e12;
    }
    .nav-cta{
      background: linear-gradient(135deg, rgba(232,75,122,.14), rgba(255,107,149,.08));
      border:1px solid rgba(232,75,122,.22);
    }

    .nav-actions{display:flex; align-items:center; gap:12px}
    .header-btn{display:inline-flex}

    .burger{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid rgba(234,214,223,.9);
      background: rgba(255,255,255,.8);
      box-shadow: 0 10px 22px rgba(16, 14, 18, .06);
      cursor:pointer;
      align-items:center;
      justify-content:center;
      gap:4px;
      padding:0;
    }
    .burger-line{
      display:block;
      width:18px;
      height:2px;
      background: #2b2230;
      border-radius:2px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      border-radius:14px;
      border:1px solid transparent;
      padding:12px 16px;
      font-weight:800;
      text-decoration:none;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      user-select:none;
      line-height:1;
    }
    .btn:focus{outline:none; box-shadow: var(--focus)}
    .btn:active{transform: translateY(1px)}

    .btn-primary{
      color:#fff;
      background: linear-gradient(135deg, var(--rose) 0%, #ff5f92 45%, #ff8db5 100%);
      border-color: rgba(232,75,122,.55);
      box-shadow: 0 16px 34px rgba(232,75,122,.22);
    }
    .btn-primary:hover{
      box-shadow: 0 18px 44px rgba(232,75,122,.28);
      transform: translateY(-1px);
    }

    .btn-ghost{
      color:#241f27;
      background: rgba(255,255,255,.8);
      border-color: rgba(234,214,223,.95);
      box-shadow: 0 10px 24px rgba(16, 14, 18, .05);
    }
    .btn-ghost:hover{
      transform: translateY(-1px);
      border-color: rgba(232,75,122,.35);
      box-shadow: 0 14px 30px rgba(232,75,122,.12);
    }

    .btn-soft{
      color:#241f27;
      background: linear-gradient(180deg, rgba(232,75,122,.10), rgba(232,75,122,.04));
      border-color: rgba(232,75,122,.18);
      box-shadow: 0 10px 26px rgba(232,75,122,.10);
    }
    .btn-soft:hover{
      transform: translateY(-1px);
      border-color: rgba(232,75,122,.30);
      box-shadow: 0 14px 34px rgba(232,75,122,.16);
    }

    .btn-lg{padding:14px 18px; border-radius:16px}
    .btn-sm{padding:10px 12px; border-radius:12px; font-size:13px}

    .hero{
      padding:28px 0 22px;
      position:relative;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.12fr .88fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-copy{
      padding:26px 0 8px;
      position:relative;
      z-index:2;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      border:1px solid rgba(232,75,122,.22);
      background: linear-gradient(180deg, rgba(232,75,122,.10), rgba(255,255,255,.7));
      padding:10px 12px;
      border-radius:999px;
      color:#241f27;
      font-weight:800;
      font-size:13px;
      box-shadow: 0 12px 26px rgba(232,75,122,.10);
    }
    .pill-dot{
      width:10px;height:10px;border-radius:50%;
      background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,.2) 35%), linear-gradient(135deg, var(--rose), #ff7fae);
      box-shadow: 0 0 0 4px rgba(232,75,122,.14);
      flex:0 0 auto;
    }

    .hero-title{
      margin:16px 0 10px;
      font-size:42px;
      line-height:1.08;
      letter-spacing:-.6px;
    }
    .hero-sub{
      margin:0;
      color:var(--muted);
      font-size:16px;
      line-height:1.7;
      max-width:58ch;
      font-weight:620;
    }

    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:18px;
      align-items:center;
    }

    .hero-meta{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:12px;
      margin-top:18px;
    }
    .meta-item{
      border:1px solid rgba(234,214,223,.9);
      background: rgba(255,255,255,.72);
      border-radius:16px;
      padding:12px 12px;
      box-shadow: 0 10px 24px rgba(16, 14, 18, .05);
    }
    .meta-top{font-weight:900; color:#241f27; font-size:13px; margin-bottom:6px}
    .meta-bottom{color:var(--muted); font-size:12.5px; line-height:1.4; font-weight:650}

    .hero-panel{
      position:relative;
      border-radius: var(--radius-xl);
      border:1px solid rgba(234,214,223,.9);
      background: rgba(255,255,255,.68);
      box-shadow: var(--shadow2);
      overflow:hidden;
      min-height:460px;
      display:flex;
      align-items:stretch;
    }
    .hero-panel-inner{
      position:relative;
      z-index:2;
      padding:20px 18px 16px;
      display:flex;
      flex-direction:column;
      gap:16px;
      width:100%;
    }
    .panel-header .panel-title{
      font-weight:950;
      font-size:18px;
      letter-spacing:-.3px;
      margin-bottom:6px;
    }
    .panel-header .panel-sub{
      color:var(--muted);
      font-size:13.5px;
      line-height:1.5;
      font-weight:650;
    }
    .panel-cards{
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:12px;
      margin-top:4px;
      flex: 1 1 auto;
    }
    .mini-card{
      border-radius:16px;
      border:1px solid rgba(234,214,223,.95);
      background: rgba(255,255,255,.78);
      padding:12px 12px;
      box-shadow: 0 10px 24px rgba(16, 14, 18, .05);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .mini-card:hover{
      transform: translateY(-3px);
      border-color: rgba(232,75,122,.32);
      box-shadow: 0 16px 34px rgba(232,75,122,.16);
    }
    .mini-ico{font-size:20px; margin-bottom:8px}
    .mini-title{
      margin:0 0 6px;
      font-size:14px;
      font-weight:950;
      letter-spacing:-.2px;
    }
    .mini-text{
      margin:0;
      color:var(--muted);
      font-size:12.8px;
      line-height:1.45;
      font-weight:650;
    }

    .panel-foot{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      border-top:1px dashed rgba(234,214,223,.95);
      padding-top:14px;
    }
    .signal{
      display:flex;
      align-items:center;
      gap:10px;
      color:var(--muted);
      font-weight:700;
      font-size:13.2px;
    }
    .signal-dot{
      width:10px;height:10px;border-radius:50%;
      background: linear-gradient(135deg, var(--rose), #ff7fae);
      box-shadow: 0 0 0 4px rgba(232,75,122,.14);
    }

    .hero-bg{position:absolute; inset:0; pointer-events:none;}
    .orb{
      position:absolute;
      width:320px; height:320px;
      border-radius:50%;
      filter: blur(0px);
      opacity:.55;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.75), rgba(255,255,255,0) 45%), linear-gradient(135deg, rgba(232,75,122,.55), rgba(255,159,187,.20));
      transform: translateZ(0);
      animation: floaty 7.5s ease-in-out infinite;
    }
    .orb-1{left:-140px; top:-120px}
    .orb-2{right:-160px; bottom:-160px; width:360px; height:360px; animation-duration:9s}
    .gridlines{
      position:absolute;
      inset:-40px -40px;
      background:
        linear-gradient(rgba(232,75,122,.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232,75,122,.08) 1px, transparent 1px);
      background-size: 48px 48px;
      transform: rotate(-8deg);
      opacity:.22;
    }
    .sheen{
      position:absolute;
      left:-40%;
      top:-30%;
      width:80%;
      height:120%;
      background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.65), rgba(255,255,255,0));
      transform: rotate(18deg);
      opacity:.18;
      animation: sheen 6.6s ease-in-out infinite;
    }
    @keyframes floaty{
      0%,100%{transform: translate3d(0,0,0) scale(1)}
      50%{transform: translate3d(14px,18px,0) scale(1.02)}
    }
    @keyframes sheen{
      0%,100%{transform: translateX(-10%) rotate(18deg); opacity:.12}
      50%{transform: translateX(35%) rotate(18deg); opacity:.22}
    }

    .section{padding:54px 0}
    .section-soft{
      background: linear-gradient(180deg, rgba(255,255,255,.55) 0%, rgba(255,242,247,.95) 100%);
      border-top:1px solid rgba(234,214,223,.65);
      border-bottom:1px solid rgba(234,214,223,.65);
    }
    .section-head{
      margin-bottom:22px;
    }
    .section-head-tight{margin-bottom:14px}
    .h2{
      margin:0 0 10px;
      font-size:28px;
      letter-spacing:-.4px;
      line-height:1.2;
    }
    .h3{
      margin:0 0 10px;
      font-size:16px;
      letter-spacing:-.2px;
      font-weight:950;
    }
    .lead{
      margin:0;
      color:var(--muted);
      line-height:1.8;
      font-size:15.5px;
      font-weight:650;
      max-width:78ch;
    }

    .stats-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:14px;
      margin-top:16px;
    }
    .stat-card{
      border-radius:18px;
      background: rgba(255,255,255,.74);
      border:1px solid rgba(234,214,223,.92);
      padding:16px 16px;
      box-shadow: 0 12px 28px rgba(16, 14, 18, .05);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .stat-card:hover{
      transform: translateY(-4px);
      border-color: rgba(232,75,122,.30);
      box-shadow: 0 18px 42px rgba(232,75,122,.16);
    }
    .stat-num{
      font-weight:1000;
      font-size:16px;
      margin-bottom:8px;
      color:#241f27;
    }
    .stat-label{
      font-weight:950;
      color:#241f27;
      margin-bottom:8px;
      font-size:14px;
    }
    .stat-desc{
      color:var(--muted);
      font-weight:650;
      font-size:13px;
      line-height:1.5;
    }

    .about-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:18px;
      align-items:start;
    }
    .tag{
      display:inline-flex;
      padding:8px 12px;
      border-radius:999px;
      background: rgba(232,75,122,.10);
      border:1px solid rgba(232,75,122,.22);
      color:#2b2230;
      font-weight:950;
      letter-spacing:.2px;
      margin-bottom:12px;
      font-size:13px;
    }
    .feature-list{margin-top:18px; display:flex; flex-direction:column; gap:12px}
    .feature-item{
      display:flex;
      gap:12px;
      padding:12px 12px;
      border-radius:16px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(234,214,223,.92);
      box-shadow: 0 12px 26px rgba(16, 14, 18, .05);
    }
    .feature-badge{
      flex:0 0 auto;
      padding:8px 10px;
      border-radius:14px;
      font-weight:950;
      font-size:13px;
      background: linear-gradient(180deg, rgba(232,75,122,.14), rgba(232,75,122,.06));
      border:1px solid rgba(232,75,122,.20);
      color:#241f27;
      margin-top:1px;
    }
    .feature-text{color:var(--muted); font-weight:650; line-height:1.6; font-size:13.5px}

    .about-cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}

    .capabilities-card{
      position:relative;
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.72);
      border:1px solid rgba(234,214,223,.92);
      box-shadow: var(--shadow2);
      padding:18px 18px;
      overflow:hidden;
    }
    .capabilities-card::before{
      content:"";
      position:absolute;
      inset:-2px;
      background: radial-gradient(700px 240px at 10% 0%, rgba(232,75,122,.20), transparent 50%);
      pointer-events:none;
      opacity:.7;
    }
    .cap-head{position:relative; z-index:1}
    .cap-title{font-weight:1000; font-size:18px; letter-spacing:-.3px; margin-bottom:6px}
    .cap-sub{color:var(--muted); font-weight:650; font-size:13.5px; line-height:1.5}
    .cap-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:12px;
      margin-top:14px;
    }
    .cap-item{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(234,214,223,.92);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .cap-item:hover{
      transform: translateY(-3px);
      border-color: rgba(232,75,122,.30);
      box-shadow: 0 18px 40px rgba(232,75,122,.14);
    }
    .cap-ico{width:36px; height:36px; border-radius:14px; display:flex; align-items:center; justify-content:center; background: rgba(232,75,122,.10); border:1px solid rgba(232,75,122,.18); flex:0 0 auto}
    .cap-item-title{font-weight:950; font-size:13.5px; margin-bottom:4px}
    .cap-item-desc{color:var(--muted); font-weight:650; font-size:12.8px; line-height:1.45}
    .cap-actions{
      position:relative;
      z-index:1;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:14px;
    }

    .quote-card{
      margin-top:14px;
      border-radius: var(--radius-xl);
      border:1px solid rgba(234,214,223,.92);
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,242,247,.65));
      box-shadow: 0 12px 30px rgba(16, 14, 18, .05);
      padding:18px 16px;
      position:relative;
      overflow:hidden;
    }
    .quote-card::after{
      content:"";
      position:absolute;
      right:-80px;
      top:-80px;
      width:220px;height:220px;border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.7), rgba(255,255,255,0) 45%),
                  linear-gradient(135deg, rgba(232,75,122,.35), rgba(255,159,187,.10));
      opacity:.6;
      pointer-events:none;
    }
    .quote-mark{
      font-size:48px;
      line-height:1;
      font-weight:900;
      color: rgba(232,75,122,.45);
      position:relative;
      z-index:1;
    }
    .quote-text{
      position:relative;
      z-index:1;
      margin-top:10px;
      color:#2b2230;
      font-weight:800;
      line-height:1.7;
      font-size:14px;
    }
    .quote-sign{
      position:relative;
      z-index:1;
      margin-top:12px;
      color:var(--muted);
      font-weight:750;
      font-size:13px;
    }

    .service-grid{
      display:grid;
      grid-template-columns:repeat(12, minmax(0,1fr));
      gap:14px;
    }
    .service-card{
      grid-column: span 4;
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.74);
      border:1px solid rgba(234,214,223,.92);
      box-shadow: 0 12px 28px rgba(16, 14, 18, .05);
      padding:16px 16px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      overflow:hidden;
      position:relative;
    }
    .service-card::before{
      content:"";
      position:absolute;
      inset:-2px;
      background: radial-gradient(520px 180px at 20% 0%, rgba(232,75,122,.18), transparent 55%);
      opacity:.55;
      pointer-events:none;
    }
    .service-card:hover{
      transform: translateY(-4px);
      border-color: rgba(232,75,122,.30);
      box-shadow: 0 18px 44px rgba(232,75,122,.16);
    }
    .service-card-wide{grid-column: span 12}
    .service-top{position:relative; z-index:1; display:flex; align-items:center; gap:12px}
    .service-ico{
      width:46px;height:46px;
      border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(232,75,122,.10);
      border:1px solid rgba(232,75,122,.18);
      font-size:20px;
      flex:0 0 auto;
    }
    .service-text{
      position:relative; z-index:1;
      margin:10px 0 10px;
      color:var(--muted);
      font-weight:650;
      line-height:1.7;
      font-size:13.8px;
    }
    .service-list{
      position:relative; z-index:1;
      margin:0;
      padding-left:18px;
      color:var(--muted);
      font-weight:650;
      font-size:13.2px;
      line-height:1.8;
    }
    .chip-row{position:relative; z-index:1; display:flex; flex-wrap:wrap; gap:10px; margin-top:12px}
    .chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(234,214,223,.95);
      background: rgba(255,255,255,.72);
      font-weight:850;
      font-size:13px;
      color:#241f27;
      box-shadow: 0 10px 24px rgba(16, 14, 18, .04);
    }
    .chip-soft{
      background: linear-gradient(180deg, rgba(232,75,122,.12), rgba(255,255,255,.76));
      border-color: rgba(232,75,122,.20);
    }
    .chip-border{
      border-color: rgba(232,75,122,.22);
      background: rgba(255,255,255,.70);
    }

    .two-col{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:18px;
      align-items:start;
    }
    .timeline{
      margin-top:14px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .time-item{
      display:flex;
      gap:12px;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(234,214,223,.92);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 26px rgba(16, 14, 18, .05);
    }
    .time-dot{
      width:14px;height:14px;border-radius:50%;
      background: linear-gradient(135deg, var(--rose), #ff7fae);
      box-shadow: 0 0 0 5px rgba(232,75,122,.12);
      margin-top:4px;
      flex:0 0 auto;
    }
    .time-title{font-weight:1000; margin-bottom:6px}
    .time-desc{color:var(--muted); font-weight:650; line-height:1.6; font-size:13.2px}
    .quick-cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}

    .network-card{
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.72);
      border:1px solid rgba(234,214,223,.92);
      box-shadow: var(--shadow2);
      padding:18px 18px;
      position:relative;
      overflow:hidden;
    }
    .network-card::after{
      content:"";
      position:absolute;
      inset:-2px;
      background: radial-gradient(680px 240px at 90% 0%, rgba(232,75,122,.20), transparent 55%);
      opacity:.55;
      pointer-events:none;
    }
    .network-title{
      position:relative; z-index:1;
      font-weight:1000;
      font-size:16px;
      margin-bottom:10px;
    }
    .chip-grid{
      position:relative; z-index:1;
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .divider{
      height:1px;
      background: rgba(234,214,223,.95);
      margin:14px 0;
    }
    .tag-cloud{
      position:relative; z-index:1;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:8px;
    }
    .cloud-item{
      display:inline-flex;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(234,214,223,.95);
      background: rgba(255,255,255,.76);
      font-weight:900;
      color:#241f27;
      font-size:12.8px;
      box-shadow: 0 10px 24px rgba(16, 14, 18, .04);
    }
    .network-foot{
      position:relative; z-index:1;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      margin-top:10px;
    }
    .hint{
      display:flex; align-items:center; gap:10px;
      color:var(--muted);
      font-weight:700;
      font-size:13px;
      max-width:42ch;
    }
    .hint-ico{
      width:30px;height:30px;border-radius:14px;
      border:1px solid rgba(232,75,122,.18);
      background: rgba(232,75,122,.10);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }

    .side-cards{display:grid; grid-template-columns:1fr; gap:12px; margin-top:12px}
    .side-card{
      border-radius:18px;
      border:1px solid rgba(234,214,223,.92);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 26px rgba(16, 14, 18, .05);
      padding:14px 14px;
    }
    .side-card-title{font-weight:1000; margin-bottom:6px}
    .side-card-desc{color:var(--muted); font-weight:650; line-height:1.6; font-size:13.2px}

    .solution-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:14px;
    }
    .solution-card{
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.72);
      border:1px solid rgba(234,214,223,.92);
      box-shadow: 0 12px 28px rgba(16, 14, 18, .05);
      padding:16px 16px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .solution-card:hover{
      transform: translateY(-4px);
      border-color: rgba(232,75,122,.30);
      box-shadow: 0 18px 44px rgba(232,75,122,.14);
    }
    .solution-text{margin:0 0 12px; color:var(--muted); font-weight:650; line-height:1.7}
    .solution-tags{display:flex; flex-wrap:wrap; gap:10px}

    .network-map{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .map-card{
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.72);
      border:1px solid rgba(234,214,223,.92);
      box-shadow: var(--shadow2);
      padding:18px 18px;
      position:relative;
      overflow:hidden;
    }
    .map-card::before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(700px 220px at 10% 0%, rgba(232,75,122,.20), transparent 55%),
        radial-gradient(620px 220px at 90% 40%, rgba(255,159,187,.12), transparent 55%);
      opacity:.75;
      pointer-events:none;
    }
    .map-head{position:relative; z-index:1; margin-bottom:14px}
    .map-title{font-weight:1000; font-size:16px; margin-bottom:6px}
    .map-sub{color:var(--muted); font-weight:650; font-size:13.5px; line-height:1.5}
    .map-grid{
      position:relative; z-index:1;
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:12px;
      margin-top:4px;
    }
    .map-stat{
      border-radius:18px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(234,214,223,.92);
      padding:14px 14px;
      box-shadow: 0 12px 26px rgba(16, 14, 18, .05);
    }
    .map-stat-num{font-weight:1000; margin-bottom:6px}
    .map-stat-label{font-weight:950; margin-bottom:8px; font-size:13.5px}
    .map-stat-desc{color:var(--muted); font-weight:650; line-height:1.6; font-size:13.2px}
    .map-foot{
      position:relative; z-index:1;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:16px;
      align-items:center;
      justify-content:flex-start;
    }
    .map-aside{display:flex; flex-direction:column; gap:14px}
    .aside-card{
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.72);
      border:1px solid rgba(234,214,223,.92);
      box-shadow: 0 12px 28px rgba(16, 14, 18, .05);
      padding:16px 16px;
    }
    .aside-title{font-weight:1000; margin-bottom:10px}
    .aside-links{display:flex; flex-direction:column; gap:8px}
    .aside-link{
      text-decoration:none;
      color:#241f27;
      font-weight:850;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(234,214,223,.95);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 24px rgba(16, 14, 18, .04);
      transition: transform .18s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .aside-link:hover{
      transform: translateY(-2px);
      border-color: rgba(232,75,122,.30);
      box-shadow: 0 16px 38px rgba(232,75,122,.14);
    }
    .aside-hint{margin-top:10px; color:var(--muted); font-weight:650; line-height:1.6; font-size:13.2px}

    .aside-call{
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.72);
      border:1px solid rgba(234,214,223,.92);
      box-shadow: var(--shadow2);
      padding:16px 16px;
    }
    .aside-call-top{margin-bottom:10px}
    .aside-call-title{font-weight:1000; margin-bottom:6px}
    .aside-call-sub{color:var(--muted); font-weight:650; font-size:13.2px}
    .qr-wrap{display:flex; align-items:center; justify-content:center; padding:6px 0 10px}
    .qr-img{width:160px; height:auto; border-radius:18px; border:1px solid rgba(234,214,223,.95); background:#fff; box-shadow: 0 18px 44px rgba(16, 14, 18, .08)}
    .aside-call-actions{display:flex; gap:10px; flex-wrap:wrap; justify-content:space-between}
    .aside-call-actions .btn{flex:1 1 auto}

    .process-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .step-card{
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.72);
      border:1px solid rgba(234,214,223,.92);
      box-shadow: 0 12px 28px rgba(16, 14, 18, .05);
      padding:16px 16px;
      position:relative;
      overflow:hidden;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .step-card::before{
      content:"";
      position:absolute;
      inset:-2px;
      background: radial-gradient(520px 180px at 20% 0%, rgba(232,75,122,.18), transparent 55%);
      opacity:.55;
      pointer-events:none;
    }
    .step-card:hover{
      transform: translateY(-4px);
      border-color: rgba(232,75,122,.30);
      box-shadow: 0 18px 44px rgba(232,75,122,.14);
    }
    .step-num{
      position:relative; z-index:1;
      font-weight:1000;
      font-size:14px;
      color: rgba(232,75,122,.85);
      margin-bottom:10px;
      letter-spacing:.8px;
    }
    .step-text{
      position:relative; z-index:1;
      margin:0;
      color:var(--muted);
      font-weight:650;
      line-height:1.7;
      font-size:13.4px;
    }
    .process-cta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      margin-top:16px;
      padding:14px 16px;
      border-radius: var(--radius-xl);
      border:1px dashed rgba(232,75,122,.28);
      background: rgba(255,255,255,.62);
    }
    .process-note{
      display:flex; align-items:center; gap:10px;
      color:var(--muted);
      font-weight:750;
      font-size:13.8px;
    }
    .note-ico{
      width:34px;height:34px;border-radius:14px;
      border:1px solid rgba(232,75,122,.18);
      background: rgba(232,75,122,.10);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }

    .case-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .case-card{
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.72);
      border:1px solid rgba(234,214,223,.92);
      box-shadow: 0 12px 28px rgba(16, 14, 18, .05);
      overflow:hidden;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex;
      flex-direction:column;
      min-height: 420px;
    }
    .case-card:hover{
      transform: translateY(-4px);
      border-color: rgba(232,75,122,.30);
      box-shadow: 0 18px 44px rgba(232,75,122,.14);
    }
    .case-media{padding:14px 14px 0}
    .case-img{
      width:100%;
      border-radius:18px;
      border:1px solid rgba(234,214,223,.95);
      background:#fff;
      box-shadow: 0 18px 44px rgba(16, 14, 18, .08);
      max-width:100%;
      height:auto;
      object-fit: contain;
    }
    .case-body{padding:14px 16px 16px; display:flex; flex-direction:column; gap:10px; flex:1}
    .case-top{display:flex; align-items:center; justify-content:space-between; gap:10px}
    .case-kicker{font-weight:1000; color: #241f27; font-size:13px}
    .case-badge{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(232,75,122,.20);
      background: rgba(232,75,122,.10);
      color:#241f27;
      font-weight:950;
      font-size:12.5px;
    }
    .case-text{margin:0; color:var(--muted); font-weight:650; line-height:1.7; font-size:13.6px}
    .case-link{
      margin-top:auto;
      text-decoration:none;
      font-weight:950;
      color: rgba(232,75,122,.98);
      padding:10px 12px;
      border-radius:14px;
      background: rgba(232,75,122,.10);
      border:1px solid rgba(232,75,122,.20);
      width:fit-content;
      transition: transform .18s ease, box-shadow .2s ease;
    }
    .case-link:hover{transform: translateY(-2px); box-shadow: 0 18px 40px rgba(232,75,122,.14)}

    .cases-foot{
      margin-top:14px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      padding:16px 16px;
      border-radius: var(--radius-xl);
      border:1px solid rgba(234,214,223,.92);
      background: rgba(255,255,255,.68);
      box-shadow: 0 12px 28px rgba(16, 14, 18, .05);
    }
    .cases-foot-title{font-weight:1000; margin-bottom:6px}
    .cases-foot-text{color:var(--muted); font-weight:650; line-height:1.6; font-size:13.4px}

    .comparison-top{
      display:grid;
      grid-template-columns: .9fr 1.1fr;
      gap:14px;
      align-items:start;
      margin-top:10px;
    }
    .rating-card{
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.72);
      border:1px solid rgba(234,214,223,.92);
      box-shadow: var(--shadow2);
      padding:16px 16px;
      position:relative;
      overflow:hidden;
    }
    .rating-card::before{
      content:"";
      position:absolute;
      inset:-2px;
      background: radial-gradient(560px 200px at 20% 0%, rgba(232,75,122,.20), transparent 55%);
      opacity:.65;
      pointer-events:none;
    }
    .rating-row{position:relative; z-index:1; display:flex; align-items:center; justify-content:space-between; gap:12px}
    .rating-stars{color: rgba(232,75,122,.98); font-size:18px; letter-spacing:2px}
    .star{filter: drop-shadow(0 10px 20px rgba(232,75,122,.18))}
    .rating-score{display:flex; align-items:flex-end; gap:10px}
    .score-num{
      font-weight:1100;
      font-size:44px;
      line-height:1;
      letter-spacing:-1px;
      color: #241f27;
    }
    .score-den{color:var(--muted); font-weight:850; padding-bottom:8px}
    .rating-desc{position:relative; z-index:1; margin-top:10px; color:var(--muted); font-weight:650; line-height:1.7; font-size:13.8px}
    .rating-card .btn{margin-top:12px; position:relative; z-index:1; width:fit-content}

    .comparison-callout{
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.72);
      border:1px solid rgba(234,214,223,.92);
      box-shadow: var(--shadow2);
      padding:16px 16px;
    }
    .callout-title{font-weight:1000; margin-bottom:10px; font-size:16px}
    .callout-list{
      margin:0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:10px;
      color:var(--muted);
      font-weight:680;
      line-height:1.6;
      font-size:13.6px;
    }
    .check{color: rgba(232,75,122,.98); font-weight:1000; margin-right:8px}

    .comparison-table-wrap{
      margin-top:14px;
      border-radius: var(--radius-xl);
      overflow:hidden;
      border:1px solid rgba(234,214,223,.92);
      box-shadow: 0 12px 28px rgba(16, 14, 18, .05);
      background: rgba(255,255,255,.72);
    }
    .table-scroll{overflow:auto}
    .comparison-table{
      width:100%;
      border-collapse:collapse;
      min-width: 880px;
    }
    .comparison-table th, .comparison-table td{
      padding:14px 14px;
      border-bottom:1px solid rgba(234,214,223,.95);
      vertical-align:top;
      text-align:left;
      color: var(--muted);
      font-weight:650;
      font-size:13.6px;
      line-height:1.6;
    }
    .comparison-table th{
      color:#241f27;
      font-weight:1000;
      font-size:13.8px;
      background: linear-gradient(180deg, rgba(232,75,122,.12), rgba(255,255,255,.6));
    }
    .comparison-bottom{
      margin-top:14px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
    }
    .comparison-bottom-title{font-weight:1000; margin-bottom:6px}
    .comparison-bottom-text{color:var(--muted); font-weight:650; line-height:1.6; font-size:13.4px}
    .comparison-bottom-actions{display:flex; gap:12px; flex-wrap:wrap}

    .token-grid{
      display:grid;
      grid-template-columns: 1fr 1.2fr;
      gap:14px;
      align-items:start;
    }
    .token-card{
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.72);
      border:1px solid rgba(234,214,223,.92);
      box-shadow: var(--shadow2);
      padding:16px 16px;
    }
    .token-title{font-weight:1000; font-size:16px; margin-bottom:12px}
    .token-bullets{display:flex; flex-direction:column; gap:12px}
    .bullet-row{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:18px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(234,214,223,.92);
      box-shadow: 0 12px 26px rgba(16, 14, 18, .05);
    }
    .bullet-ico{
      width:34px;height:34px;border-radius:14px;
      background: rgba(232,75,122,.10);
      border:1px solid rgba(232,75,122,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:1100;
      color: rgba(232,75,122,.98);
      flex:0 0 auto;
    }
    .bullet-head{font-weight:1000; margin-bottom:6px}
    .bullet-desc{color:var(--muted); font-weight:650; line-height:1.6; font-size:13.2px}

    .token-foot{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}

    .token-compare{
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.72);
      border:1px solid rgba(234,214,223,.92);
      box-shadow: var(--shadow2);
      padding:16px 16px;
    }
    .token-compare-head{margin-bottom:12px}
    .token-compare-title{font-weight:1000; font-size:16px; margin-bottom:6px}
    .token-compare-sub{color:var(--muted); font-weight:650; line-height:1.6; font-size:13.4px}

    .price-cards{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:12px;
    }
    .price-card{
      border-radius:20px;
      border:1px solid rgba(234,214,223,.92);
      background: rgba(255,255,255,.78);
      box-shadow: 0 12px 26px rgba(16, 14, 18, .05);
      padding:14px 14px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height: 250px;
      display:flex;
      flex-direction:column;
    }
    .price-card:hover{transform: translateY(-4px); border-color: rgba(232,75,122,.30); box-shadow: 0 18px 44px rgba(232,75,122,.14)}
    .price-card-active{
      border-color: rgba(232,75,122,.38);
      background: linear-gradient(180deg, rgba(232,75,122,.14), rgba(255,255,255,.76));
      box-shadow: 0 18px 48px rgba(232,75,122,.18);
    }
    .price-top{display:flex; align-items:flex-start; justify-content:space-between; gap:10px}
    .price-name{font-weight:1100; font-size:15px}
    .price-tag{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(232,75,122,.20);
      background: rgba(232,75,122,.10);
      font-weight:950;
      color:#241f27;
      font-size:12.5px;
      white-space:nowrap;
    }
    .price-list{
      margin:12px 0 10px;
      padding-left:18px;
      color:var(--muted);
      font-weight:650;
      line-height:1.8;
      font-size:13.2px;
    }
    .price-note{
      margin-top:auto;
      color:var(--muted2);
      font-weight:680;
      line-height:1.6;
      font-size:13.2px;
    }
    .token-cta{
      margin-top:12px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      padding:14px 14px;
      border-radius: var(--radius-xl);
      border:1px dashed rgba(232,75,122,.28);
      background: rgba(255,255,255,.62);
    }
    .token-cta-text{display:flex; align-items:center; gap:10px; color:var(--muted); font-weight:750}
    .cta-ico{
      width:34px;height:34px;border-radius:14px;
      border:1px solid rgba(232,75,122,.18);
      background: rgba(232,75,122,.10);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }

    .training-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .training-card, .training-side-card, .training-left .training-card{
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.72);
      border:1px solid rgba(234,214,223,.92);
      box-shadow: var(--shadow2);
      padding:16px 16px;
    }
    .training-title-row{display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap}
    .training-title{font-weight:1000; font-size:16px}
    .training-badge{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(232,75,122,.20);
      background: rgba(232,75,122,.10);
      color:#241f27;
      font-weight:950;
      font-size:12.5px;
      white-space:nowrap;
    }
    .training-list{display:flex; flex-direction:column; gap:12px; margin-top:14px}
    .train-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(234,214,223,.92);
      background: rgba(255,255,255,.78);
      box-shadow: 0 12px 26px rgba(16, 14, 18, .05);
    }
    .train-dot{
      width:14px;height:14px;border-radius:50%;
      background: linear-gradient(135deg, var(--rose), #ff7fae);
      box-shadow: 0 0 0 5px rgba(232,75,122,.12);
      margin-top:5px;
      flex:0 0 auto;
    }
    .train-name{font-weight:1000; margin-bottom:6px}
    .train-desc{color:var(--muted); font-weight:650; line-height:1.6; font-size:13.2px}
    .training-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}

    .training-side-card{
      position:relative;
      overflow:hidden;
    }
    .training-side-card::before{
      content:"";
      position:absolute;
      inset:-2px;
      background: radial-gradient(640px 220px at 10% 0%, rgba(232,75,122,.20), transparent 55%);
      opacity:.65;
      pointer-events:none;
    }
    .training-side-card > *{position:relative; z-index:1}
    .side-title{font-weight:1000; margin-bottom:10px; font-size:15px}
    .side-bullets{display:flex; flex-direction:column; gap:10px}
    .side-bullet{color:var(--muted); font-weight:700; display:flex; align-items:center; gap:10px}
    .side-check{
      color: rgba(232,75,122,.98);
      font-weight:1100;
      width:22px;
      height:22px;
      border-radius:10px;
      border:1px solid rgba(232,75,122,.22);
      background: rgba(232,75,122,.10);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      font-size:12px;
    }
    .side-desc{color:var(--muted); font-weight:650; line-height:1.7; margin:0 0 12px; font-size:13.5px}
    .side-mini-grid{display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:10px}
    .side-mini{
      border-radius:18px;
      border:1px solid rgba(234,214,223,.92);
      background: rgba(255,255,255,.78);
      box-shadow: 0 12px 26px rgba(16, 14, 18, .05);
      padding:12px 12px;
    }
    .mini-k{font-weight:1000; margin-bottom:6px; font-size:12.8px}
    .mini-v{color:var(--muted); font-weight:650; line-height:1.6; font-size:12.7px}

    .help-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .help-card{
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.72);
      border:1px solid rgba(234,214,223,.92);
      box-shadow: 0 12px 28px rgba(16, 14, 18, .05);
      padding:16px 16px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .help-card:hover{transform: translateY(-4px); border-color: rgba(232,75,122,.30); box-shadow: 0 18px 44px rgba(232,75,122,.14)}
    .help-title{font-weight:1000; font-size:16px; margin-bottom:10px}
    .help-text{margin:0 0 12px; color:var(--muted); font-weight:650; line-height:1.7}
    .help-link{
      color: rgba(232,75,122,.98);
      font-weight:1000;
      text-decoration:none;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(232,75,122,.20);
      background: rgba(232,75,122,.10);
      width:fit-content;
      transition: transform .18s ease, box-shadow .2s ease;
    }
    .help-link:hover{transform: translateY(-2px); box-shadow: 0 18px 40px rgba(232,75,122,.14)}
    .help-quick{
      margin-top:14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      padding:16px 16px;
      border-radius: var(--radius-xl);
      border:1px dashed rgba(232,75,122,.28);
      background: rgba(255,255,255,.62);
    }
    .help-quick-title{font-weight:1000; margin-bottom:6px}
    .help-quick-desc{color:var(--muted); font-weight:650; line-height:1.6; font-size:13.4px}

    .faq-wrap{
      border-radius: var(--radius-xl);
      border:1px solid rgba(234,214,223,.92);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 28px rgba(16, 14, 18, .05);
      padding:8px;
    }
    .faq-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:8px;
      padding:8px;
    }
    .faq-item{
      border-radius:16px;
      border:1px solid rgba(234,214,223,.95);
      background: rgba(255,255,255,.78);
      padding:0;
      overflow:hidden;
      box-shadow: 0 10px 24px rgba(16, 14, 18, .04);
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    .faq-item:hover{
      border-color: rgba(232,75,122,.30);
      box-shadow: 0 16px 38px rgba(232,75,122,.12);
    }
    .faq-summary{
      cursor:pointer;
      list-style:none;
      padding:14px 14px;
      font-weight:950;
      color:#241f27;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      user-select:none;
    }
    .faq-summary::-webkit-details-marker{display:none}
    .faq-plus{
      width:34px;height:34px;border-radius:14px;
      border:1px solid rgba(232,75,122,.20);
      background: rgba(232,75,122,.10);
      display:flex; align-items:center; justify-content:center;
      color: rgba(232,75,122,.98);
      font-size:18px;
      flex:0 0 auto;
      transition: transform .2s ease;
    }
    details[open] .faq-plus{transform: rotate(45deg)}
    .faq-answer{
      padding:0 14px 14px;
      color:var(--muted);
      font-weight:650;
      line-height:1.8;
      font-size:13.8px;
    }

    .wiki-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .wiki-card{
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.72);
      border:1px solid rgba(234,214,223,.92);
      box-shadow: 0 12px 28px rgba(16, 14, 18, .05);
      padding:16px 16px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .wiki-card:hover{
      transform: translateY(-4px);
      border-color: rgba(232,75,122,.30);
      box-shadow: 0 18px 44px rgba(232,75,122,.14);
    }
    .wiki-text{margin:0; color:var(--muted); font-weight:650; line-height:1.7; font-size:13.6px}

    .wiki-cta{
      margin-top:14px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      padding:16px 16px;
      border-radius: var(--radius-xl);
      border:1px solid rgba(234,214,223,.92);
      background: rgba(255,255,255,.68);
      box-shadow: 0 12px 28px rgba(16, 14, 18, .05);
    }
    .wiki-cta-title{font-weight:1000; margin-bottom:6px}
    .wiki-cta-desc{color:var(--muted); font-weight:650; line-height:1.6; font-size:13.4px}

    .articles-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .articles-card{
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.72);
      border:1px solid rgba(234,214,223,.92);
      box-shadow: var(--shadow2);
      padding:16px 16px;
    }
    .articles-head{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; flex-wrap:wrap}
    .articles-title{font-weight:1000; font-size:16px}
    .articles-sub{color:var(--muted); font-weight:650; font-size:13.2px}
    .article-links{
      margin-top:12px;
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px 12px;
    }
    .article-link{
      text-decoration:none;
      color:#241f27;
      font-weight:900;
      font-size:13.4px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(234,214,223,.95);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 24px rgba(16, 14, 18, .04);
      transition: transform .18s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .article-link:hover{
      transform: translateY(-2px);
      border-color: rgba(232,75,122,.30);
      box-shadow: 0 16px 38px rgba(232,75,122,.12);
    }
    .articles-foot{
      margin-top:14px;
      display:flex; gap:12px; flex-wrap:wrap;
      align-items:center; justify-content:flex-start;
    }
    .articles-aside{display:flex; flex-direction:column; gap:14px}
    .aside-widget{
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.72);
      border:1px solid rgba(234,214,223,.92);
      box-shadow: var(--shadow2);
      padding:16px 16px;
    }
    .aside-widget-pink{
      background: linear-gradient(180deg, rgba(232,75,122,.14), rgba(255,255,255,.75));
    }
    .widget-title{font-weight:1000; font-size:16px; margin-bottom:10px}
    .widget-list{display:flex; flex-direction:column; gap:10px}
    .widget-link{
      text-decoration:none;
      color:#241f27;
      font-weight:900;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(234,214,223,.95);
      background: rgba(255,255,255,.78);
      transition: transform .18s ease, border-color .2s ease, box-shadow .2s ease;
      box-shadow: 0 10px 24px rgba(16, 14, 18, .04);
    }
    .widget-link:hover{
      transform: translateY(-2px);
      border-color: rgba(232,75,122,.30);
      box-shadow: 0 16px 38px rgba(232,75,122,.12);
    }
    .widget-hint{margin-top:10px; color:var(--muted); font-weight:650; line-height:1.6; font-size:13.2px}
    .widget-text{margin:0 0 12px; color:var(--muted); font-weight:650; line-height:1.7}

    .contact-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .form-card{
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.72);
      border:1px solid rgba(234,214,223,.92);
      box-shadow: var(--shadow2);
      padding:16px 16px;
    }
    .form-top{display:flex; flex-direction:column; gap:6px; margin-bottom:12px}
    .form-title{font-weight:1000; font-size:16px}
    .form-sub{color:var(--muted); font-weight:650; font-size:13.3px}
    .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-bottom:12px;
    }
    .field{display:flex; flex-direction:column; gap:7px}
    .field-label{font-weight:900; color:#241f27; font-size:13.2px}
    .input, .textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(234,214,223,.95);
      background: rgba(255,255,255,.86);
      padding:12px 12px;
      font-weight:700;
      color:#1d1820;
      box-shadow: 0 10px 24px rgba(16, 14, 18, .03);
      transition: border-color .2s ease, box-shadow .2s ease, transform .05s ease;
      outline:none;
      font-size:14px;
    }
    .input:focus, .textarea:focus{
      border-color: rgba(232,75,122,.45);
      box-shadow: var(--focus);
    }
    .textarea{resize:vertical; min-height:120px}
    .form-bottom{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      margin-top:12px;
      padding-top:14px;
      border-top:1px solid rgba(234,214,223,.95);
    }
    .form-note{
      display:flex; align-items:center; gap:10px;
      color:var(--muted);
      font-weight:700;
      font-size:13.2px;
      max-width:50ch;
    }
    .contact-mini{
      margin-top:14px;
      border-radius: var(--radius-xl);
      border:1px solid rgba(234,214,223,.92);
      background: rgba(255,242,247,.60);
      padding:14px 14px;
      box-shadow: 0 12px 28px rgba(16, 14, 18, .04);
    }
    .mini-line{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:10px 0;
      border-bottom:1px dashed rgba(234,214,223,.95);
    }
    .mini-line:last-child{border-bottom:none}
    .mini-k{color:var(--muted); font-weight:800; font-size:13px}
    .mini-v{font-weight:950; color:#241f27; text-decoration:none}

    .contact-side{display:flex; flex-direction:column; gap:14px}
    .side-contact-card{
      border-radius: var(--radius-xl);
      border:1px solid rgba(234,214,223,.92);
      background: rgba(255,255,255,.72);
      box-shadow: var(--shadow2);
      padding:16px 16px;
      overflow:hidden;
    }
    .side-contact-card-2{
      background: linear-gradient(180deg, rgba(232,75,122,.14), rgba(255,255,255,.76));
    }
    .side-contact-title{font-weight:1000; font-size:16px; margin-bottom:8px}
    .side-contact-sub{color:var(--muted); font-weight:650; line-height:1.6; margin-bottom:12px}
    .side-qr{display:flex; flex-direction:column; gap:12px; align-items:center}
    .side-qr-foot{display:flex; gap:10px; flex-wrap:wrap; justify-content:center}
    .links-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
      margin-top:10px;
    }
    .links-grid a{
      text-decoration:none;
      color:#241f27;
      font-weight:900;
      font-size:13.2px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(234,214,223,.95);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 24px rgba(16, 14, 18, .04);
      transition: transform .18s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .links-grid a:hover{transform: translateY(-2px); border-color: rgba(232,75,122,.30); box-shadow: 0 16px 38px rgba(232,75,122,.12)}
    .side-contact-foot{margin-top:14px}
    .foot-note{display:flex; align-items:center; gap:10px; color:var(--muted); font-weight:700; font-size:13.2px; margin-bottom:10px}
    .small-muted{color:var(--muted); font-weight:650; line-height:1.6; font-size:13.2px; margin-top:10px}

    .join-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .join-card{
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.72);
      border:1px solid rgba(234,214,223,.92);
      box-shadow: var(--shadow2);
      padding:16px 16px;
    }
    .join-title{font-weight:1000; font-size:16px; margin-bottom:12px}
    .join-list{
      list-style:none;
      padding:0;
      margin:0;
      display:flex;
      flex-direction:column;
      gap:10px;
      color:var(--muted);
      font-weight:700;
      line-height:1.7;
      font-size:13.6px;
    }
    .join-actions{margin-top:14px; display:flex; gap:12px; flex-wrap:wrap}
    .join-aside{display:flex; flex-direction:column; gap:14px}
    .join-aside-card{
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.72);
      border:1px solid rgba(234,214,223,.92);
      box-shadow: var(--shadow2);
      padding:16px 16px;
    }

    .reviews-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .review-card{
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.72);
      border:1px solid rgba(234,214,223,.92);
      box-shadow: 0 12px 28px rgba(16, 14, 18, .05);
      padding:16px 16px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height: 240px;
      display:flex;
      flex-direction:column;
    }
    .review-card:hover{
      transform: translateY(-4px);
      border-color: rgba(232,75,122,.30);
      box-shadow: 0 18px 44px rgba(232,75,122,.14);
    }
    .review-top{display:flex; align-items:center; gap:12px}
    .avatar{
      width:44px;height:44px;border-radius:18px;
      background: rgba(232,75,122,.10);
      border:1px solid rgba(232,75,122,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:1100;
      color: rgba(232,75,122,.98);
      flex:0 0 auto;
    }
    .review-role{font-weight:1000; margin-bottom:6px}
    .review-stars{color: rgba(232,75,122,.98); letter-spacing:2px; font-size:14px}
    .review-text{
      margin-top:12px;
      color:var(--muted);
      font-weight:650;
      line-height:1.8;
      font-size:13.8px;
    }
    .review-foot{
      margin-top:auto;
      color:var(--muted2);
      font-weight:700;
      font-size:13px;
      padding-top:12px;
      border-top:1px dashed rgba(234,214,223,.95);
    }

    .site-footer{
      background: linear-gradient(180deg, rgba(255,242,247,.7), rgba(255,255,255,.9));
      border-top:1px solid rgba(234,214,223,.75);
      padding:26px 0 22px;
      color:#241f27;
    }
    .footer-inner{display:flex; flex-direction:column; gap:14px}
    .footer-top{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:18px;
      flex-wrap:wrap;
    }
    .footer-brand{
      min-width: 260px;
      flex: 1 1 340px;
    }
    .footer-logo-row{display:flex; align-items:center; gap:12px; margin-bottom:10px}
    .footer-logo{width:86px; height:auto; border-radius:18px}
    .footer-brand-name{font-weight:1100; font-size:16px; margin-bottom:6px}
    .footer-brand-sub{color:var(--muted); font-weight:650; line-height:1.6; font-size:13.2px}

    .footer-links-inline{
      display:flex;
      flex-wrap:wrap;
      gap:10px 14px;
      margin-top:10px;
    }
    .footer-links-inline a{
      color:#241f27;
      font-weight:900;
      text-decoration:none;
      padding:8px 10px;
      border-radius:14px;
      border:1px solid rgba(234,214,223,.95);
      background: rgba(255,255,255,.76);
      transition: transform .18s ease, border-color .2s ease;
      font-size:13px;
    }
    .footer-links-inline a:hover{transform: translateY(-2px); border-color: rgba(232,75,122,.30)}

    .footer-cols{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:14px;
      flex: 1 1 560px;
      min-width: 320px;
    }
    .footer-col{
      border-radius: var(--radius-xl);
      border:1px solid rgba(234,214,223,.92);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 28px rgba(16, 14, 18, .04);
      padding:14px 14px;
    }
    .footer-col-title{font-weight:1100; margin-bottom:10px}
    .footer-col a{
      display:block;
      color:#241f27;
      text-decoration:none;
      font-weight:850;
      padding:8px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: background .2s ease, transform .18s ease, border-color .2s ease;
      margin-bottom:6px;
      font-size:13.2px;
    }
    .footer-col a:hover{
      background: rgba(232,75,122,.10);
      border-color: rgba(232,75,122,.22);
      transform: translateY(-1px);
    }
    .footer-home-link{background: rgba(232,75,122,.10); border-color: rgba(232,75,122,.22)}
    .footer-small{margin-top:10px; color:var(--muted); font-weight:650; font-size:12.8px; line-height:1.6}

    .footer-bottom{
      border-top:1px dashed rgba(234,214,223,.95);
      padding-top:14px;
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:14px;
      flex-wrap:wrap;
    }
    .footer-copyright{font-weight:900; color:#241f27}
    .footer-copyright-sub{color:var(--muted); font-weight:650; margin-top:6px; line-height:1.6; font-size:13.2px}
    .footer-social{color:var(--muted); font-weight:700; font-size:13.2px; line-height:1.7}
    .social-label{color:var(--muted2); margin-right:8px}
    .footer-social a{
      margin-left:10px;
      color:#241f27;
      text-decoration:none;
      font-weight:900;
      padding:8px 10px;
      border-radius:12px;
      border:1px solid rgba(234,214,223,.95);
      background: rgba(255,255,255,.76);
      transition: transform .18s ease, border-color .2s ease;
      display:inline-block;
      margin-top:6px;
    }
    .footer-social a:hover{transform: translateY(-2px); border-color: rgba(232,75,122,.30)}

    .float-bar{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:60;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
      pointer-events:none;
    }
    .float-chat{
      pointer-events:auto;
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px 14px;
      border-radius:18px;
      text-decoration:none;
      font-weight:950;
      color:#fff;
      background: linear-gradient(135deg, rgba(232,75,122,1), rgba(255,107,149,1));
      border:1px solid rgba(232,75,122,.55);
      box-shadow: 0 18px 44px rgba(232,75,122,.25);
      transition: transform .2s ease;
    }
    .float-chat:hover{transform: translateY(-3px)}
    .float-ico{width:34px;height:34px;border-radius:14px; display:flex; align-items:center; justify-content:center; background: rgba(255,255,255,.18); border:1px solid rgba(255,255,255,.22)}
    .float-top{
      pointer-events:auto;
      width:44px;height:44px;border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      text-decoration:none;
      font-weight:1100;
      color:#241f27;
      background: rgba(255,255,255,.85);
      border:1px solid rgba(234,214,223,.95);
      box-shadow: 0 12px 28px rgba(16, 14, 18, .08);
      transform: translateY(8px);
      opacity:0;
      transition: opacity .2s ease, transform .2s ease, border-color .2s ease;
    }
    .float-top.show{opacity:1; transform: translateY(0)}
    .float-top:hover{border-color: rgba(232,75,122,.30)}

    @media (max-width: 980px){
      .nav-desktop{display:none}
      .burger{display:inline-flex}
      .hero-grid{grid-template-columns:1fr; }
      .hero-panel{min-height: 420px}
      .hero-title{font-size:34px}
      .hero-meta{grid-template-columns:1fr; }
      .stats-grid{grid-template-columns:1fr 1fr}
      .about-grid{grid-template-columns:1fr}
      .cap-grid{grid-template-columns:1fr}
      .service-card{grid-column: span 12}
      .two-col{grid-template-columns:1fr}
      .network-map{grid-template-columns:1fr}
      .process-grid{grid-template-columns:1fr 1fr}
      .case-grid{grid-template-columns:1fr}
      .comparison-top{grid-template-columns:1fr}
      .token-grid{grid-template-columns:1fr}
      .price-cards{grid-template-columns:1fr}
      .training-grid{grid-template-columns:1fr}
      .help-grid{grid-template-columns:1fr}
      .wiki-grid{grid-template-columns:1fr 1fr}
      .articles-grid{grid-template-columns:1fr}
      .article-links{grid-template-columns:1fr}
      .contact-grid{grid-template-columns:1fr}
      .join-grid{grid-template-columns:1fr}
      .reviews-grid{grid-template-columns:1fr}
      .footer-cols{grid-template-columns:1fr}
      .float-bar{right:10px; bottom:10px}
      .qr-img{width:150px}
    }

    .mobile-menu{
      display:none;
      border-top:1px solid rgba(234,214,223,.75);
      background: rgba(255,255,255,.96);
      backdrop-filter: blur(10px);
    }
    .mobile-menu.open{display:block}
    .mobile-menu-inner{
      padding:14px 0 18px;
    }
    .mobile-links{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
    }
    .mobile-link{
      text-decoration:none;
      color:#241f27;
      font-weight:950;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(234,214,223,.95);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 24px rgba(16, 14, 18, .04);
      transition: transform .18s ease, border-color .2s ease, box-shadow .2s ease;
      font-size:13.6px;
    }
    .mobile-link:hover{
      transform: translateY(-2px);
      border-color: rgba(232,75,122,.30);
      box-shadow: 0 16px 38px rgba(232,75,122,.12);
    }
    .mobile-actions{
      display:flex; gap:12px; flex-wrap:wrap;
      margin-top:14px;
      align-items:center;
      justify-content:flex-start;
    }
    .mobile-actions .btn{flex:1 1 auto}

    @media (prefers-reduced-motion: reduce){
      *{scroll-behavior:auto !important}
      .orb, .sheen{animation:none !important}
      .mini-card, .stat-card, .service-card, .case-card, .step-card, .solution-card, .wiki-card, .review-card,
      .article-link, .aside-link, .widget-link, .help-card, .price-card {transition:none !important}
    }