:root{
      --bg:#fbf3f6;
      --bg2:#ffffff;
      --text:#19191f;
      --muted:#5b5b66;
      --muted2:#777786;
      --border:rgba(20,20,28,.10);
      --shadow:0 18px 50px rgba(20,18,28,.10);
      --shadow2:0 10px 28px rgba(20,18,28,.10);
      --shadow3:0 6px 18px rgba(20,18,28,.08);
      --rose:#d91b5c;
      --rose2:#ff4f86;
      --rose3:#ff7aa8;
      --ink:#14141a;
      --blue:#2f6bff;
      --green:#0ea46a;
      --sand:#f4efe8;
      --card:#ffffff;
      --glass:rgba(255,255,255,.74);
      --focus:rgba(217,27,92,.25);
      --radius:18px;
      --radius2:24px;
      --container:1120px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    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", "Noto Sans", sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 500px at 20% -10%, rgba(255,79,134,.20), transparent 55%),
        radial-gradient(800px 520px at 85% 0%, rgba(217,27,92,.16), transparent 52%),
        linear-gradient(180deg, #fbf3f6 0%, #ffffff 52%, #fbf3f6 100%);
      min-height:100vh;
    }

    .skip-link{
      position:absolute;
      left:-999px; top:12px;
      background:#fff;
      color:var(--ink);
      padding:10px 12px;
      border:1px solid var(--border);
      border-radius:12px;
      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,.66);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(20,20,28,.06);
      transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
    }
    .site-header.scrolled{
      background:rgba(255,255,255,.78);
      box-shadow: 0 10px 30px rgba(20,18,28,.08);
    }

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

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:260px;
    }
    .brand-link{display:flex; align-items:center; gap:12px; text-decoration:none}
    .ai-page-logo{
      width:46px;
      height:auto;
      border-radius:14px;
      background:rgba(255,255,255,.85);
      border:1px solid rgba(20,20,28,.08);
      padding:6px;
      box-shadow: 0 8px 18px rgba(217,27,92,.10);
    }
    .brand-text{display:flex; flex-direction:column; line-height:1.1}
    .brand-name{font-weight:800; letter-spacing:.2px}
    .brand-sub{font-size:12px; color:var(--muted2); margin-top:4px}

    .nav{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      flex:1;
      gap:14px;
    }

    .nav-toggle{
      display:none;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(20,20,28,.10);
      background:rgba(255,255,255,.65);
      color:var(--ink);
      font-weight:700;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    }
    .nav-toggle:hover{box-shadow: var(--shadow3)}
    .nav-toggle-icon{
      width:18px; height:12px; display:inline-block; position:relative;
    }
    .nav-toggle-icon::before,
    .nav-toggle-icon::after{
      content:"";
      position:absolute; left:0; right:0;
      height:2px; border-radius:2px;
      background:rgba(20,20,28,.70);
      top:0;
    }
    .nav-toggle-icon::after{top:auto; bottom:0}
    .nav-toggle-icon{
      background:linear-gradient(180deg, rgba(20,20,28,.70), rgba(20,20,28,.70));
      background-size:100% 2px;
      background-repeat:no-repeat;
      background-position:center;
    }

    .nav-right{display:flex; align-items:center; justify-content:flex-end; gap:14px; flex:1}
    .nav-desktop-links{display:flex; align-items:center; gap:16px}
    .nav-link{
      color:rgba(20,20,28,.78);
      text-decoration:none;
      font-weight:650;
      font-size:14px;
      padding:10px 10px;
      border-radius:12px;
      transition: background .15s ease, color .15s ease, transform .15s ease;
    }
    .nav-link:hover{background:rgba(217,27,92,.08); color:var(--ink); transform: translateY(-1px)}
    .nav-cta{display:flex; align-items:center; gap:10px}

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:12px 14px;
      border-radius:14px;
      border:1px solid rgba(20,20,28,.10);
      text-decoration:none;
      cursor:pointer;
      font-weight:800;
      color:var(--ink);
      background: #fff;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:focus{outline: none; box-shadow:0 0 0 4px var(--focus)}
    .btn:hover{transform: translateY(-1px); box-shadow: var(--shadow3)}
    .btn:active{transform: translateY(0px); box-shadow:none}

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

    .btn-primary{
      background: linear-gradient(135deg, rgba(217,27,92,1), rgba(255,79,134,1));
      color:#fff;
      border-color: rgba(217,27,92,.2);
      box-shadow: 0 18px 40px rgba(217,27,92,.18);
    }
    .btn-primary:hover{box-shadow: 0 22px 55px rgba(217,27,92,.23)}
    .btn-secondary{
      background: linear-gradient(135deg, rgba(47,107,255,.14), rgba(217,27,92,.10));
      border-color: rgba(47,107,255,.22);
      color:rgba(15,15,22,.92);
    }
    .btn-ghost{
      background: rgba(255,255,255,.65);
      border-color: rgba(20,20,28,.10);
      color: rgba(20,20,28,.86);
    }
    .btn-link-like{
      padding:10px 8px;
      border:1px solid transparent;
      background:transparent;
      color: rgba(20,20,28,.78);
      font-weight:850;
      text-decoration:none;
    }
    .btn-link-like:hover{
      background: rgba(217,27,92,.08);
      border-color: rgba(217,27,92,.14);
      box-shadow:none;
      transform: translateY(-1px);
    }

    .btn-block{width:100%}

    .hero-wrap{
      position:relative;
      overflow:hidden;
      padding:34px 0 22px;
    }
    .hero-bg{
      position:absolute;
      inset:-140px -160px auto -160px;
      height:520px;
      background:
        radial-gradient(420px 320px at 20% 30%, rgba(255,79,134,.32), transparent 62%),
        radial-gradient(520px 360px at 80% 10%, rgba(217,27,92,.26), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,0));
      filter: saturate(1.1);
      pointer-events:none;
    }
    .container-hero{
      display:grid;
      grid-template-columns: 1.18fr .82fr;
      gap:20px;
      align-items:start;
      position:relative;
    }

    .hero-left{
      padding:12px 0 10px;
    }
    .hero-badge-row{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
      margin-bottom:14px;
    }
    .badge{
      display:inline-flex; align-items:center; justify-content:center;
      padding:8px 12px;
      border-radius:999px;
      font-size:12px;
      font-weight:900;
      border:1px solid rgba(20,20,28,.10);
      background:rgba(255,255,255,.65);
    }
    .badge-hot{
      background: linear-gradient(135deg, rgba(217,27,92,1), rgba(255,79,134,1));
      border-color: rgba(217,27,92,.25);
      color:#fff;
      box-shadow: 0 16px 40px rgba(217,27,92,.20);
    }
    .badge-soft{
      color:rgba(20,20,28,.88);
      border-color: rgba(217,27,92,.14);
      background: rgba(255,255,255,.70);
    }

    .hero-title{
      font-size:40px;
      margin:0;
      line-height:1.15;
      letter-spacing:-.6px;
    }
    .hero-desc{
      margin:16px 0 18px;
      color: rgba(20,20,28,.76);
      font-size:15.5px;
      line-height:1.75;
      max-width:640px;
      font-weight:650;
    }

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

    .hero-meta{
      display:flex;
      gap:14px;
      margin-top:18px;
      flex-wrap:wrap;
    }
    .meta-item{
      flex:1;
      min-width:190px;
      background:rgba(255,255,255,.55);
      border:1px solid rgba(20,20,28,.08);
      border-radius:16px;
      padding:12px 12px;
    }
    .meta-top{
      display:flex; align-items:center; gap:10px;
      font-weight:900;
      color: rgba(20,20,28,.9);
    }
    .dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, rgba(217,27,92,1), rgba(255,79,134,1));
      box-shadow: 0 10px 24px rgba(217,27,92,.25);
    }
    .meta-bottom{
      color:var(--muted2);
      margin-top:6px;
      font-weight:700;
      font-size:13px;
    }

    .hero-right{
      position:relative;
      padding:10px 0;
    }
    .hero-panel{
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.60));
      border:1px solid rgba(20,20,28,.08);
      border-radius:var(--radius2);
      box-shadow: var(--shadow2);
      overflow:hidden;
    }
    .panel-top{
      padding:16px 16px 10px;
      border-bottom:1px solid rgba(20,20,28,.06);
      background:
        radial-gradient(620px 220px at 10% 0%, rgba(255,79,134,.18), transparent 50%),
        radial-gradient(520px 200px at 92% 30%, rgba(217,27,92,.14), transparent 52%),
        rgba(255,255,255,.55);
    }
    .panel-title{font-weight:950; letter-spacing:-.2px}
    .panel-sub{margin-top:6px; font-weight:750; font-size:13px}

    .panel-grid{
      padding:14px 14px 8px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .mini-card{
      background: rgba(255,255,255,.68);
      border:1px solid rgba(20,20,28,.08);
      border-radius:16px;
      padding:12px 12px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:110px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .mini-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(20,18,28,.10);
      border-color: rgba(217,27,92,.18);
    }
    .mini-icon{color: rgba(217,27,92,1)}
    .mini-title{font-weight:950}
    .mini-desc{color:var(--muted2); font-weight:700; font-size:12.8px; margin-top:6px; line-height:1.45}

    .panel-bottom{
      padding:14px 16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border-top:1px solid rgba(20,20,28,.06);
    }
    .small-title{font-weight:950}
    .muted{color:var(--muted2)}
    .panel-bottom-left{display:flex; flex-direction:column; gap:4px}
    .panel-bottom-right{display:flex; align-items:center}

    .hero-float{
      margin-top:12px;
      display:grid;
      gap:12px;
    }
    .float-item{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,20,28,.08);
      border-radius:var(--radius);
      padding:12px 14px;
      box-shadow: 0 12px 28px rgba(20,18,28,.06);
    }
    .float-label{font-weight:950; font-size:13px; margin-bottom:10px}
    .float-tags{display:flex; gap:8px; flex-wrap:wrap}
    .tag{
      display:inline-flex;
      padding:7px 10px;
      border-radius:999px;
      background: rgba(20,20,28,.04);
      border:1px solid rgba(20,20,28,.08);
      font-size:12px;
      font-weight:850;
      color: rgba(20,20,28,.80);
    }
    .tag-rose{
      background: rgba(217,27,92,.10);
      border-color: rgba(217,27,92,.18);
      color: rgba(140,10,52,1);
    }
    .tag-rose, .tag{transition: transform .15s ease}
    .tag:hover{transform: translateY(-1px)}

    .main{padding:0 0 40px}
    .section{
      padding:60px 0;
    }
    .section-alt{
      background: linear-gradient(180deg, rgba(217,27,92,.06), transparent 55%);
    }
    .section-alt2{
      background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,79,134,.06));
    }
    .section-alt3{
      background: linear-gradient(180deg, rgba(217,27,92,.04), rgba(255,255,255,.0));
    }
    .section-head{
      text-align:left;
      margin-bottom:22px;
    }
    .kicker{
      font-weight:950;
      color: rgba(217,27,92,1);
      letter-spacing:.3px;
      font-size:13px;
      margin-bottom:10px;
      text-transform:none;
    }
    .h2{
      margin:0;
      font-size:30px;
      letter-spacing:-.4px;
      line-height:1.25;
    }
    .h3{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .section-desc{
      margin:12px 0 0;
      color:rgba(20,20,28,.72);
      line-height:1.8;
      font-weight:650;
      max-width:760px;
    }

    .split-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
      align-items:stretch;
    }

    .card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,20,28,.08);
      border-radius:var(--radius2);
      box-shadow: 0 10px 26px rgba(20,18,28,.06);
      padding:18px;
    }
    .card-soft{
      background: linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.62));
    }
    .card-border{
      background: rgba(255,255,255,.72);
    }
    .card-strong{
      background: linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.58));
      position:relative;
      overflow:hidden;
    }
    .card-strong::before{
      content:"";
      position:absolute;
      inset:-40px -80px auto auto;
      width:220px; height:220px;
      background: radial-gradient(circle at 30% 30%, rgba(217,27,92,.22), transparent 58%);
      pointer-events:none;
    }
    .card-accent{
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.58));
      position:relative;
      overflow:hidden;
    }
    .card-accent::after{
      content:"";
      position:absolute;
      inset:auto auto -90px -90px;
      width:220px; height:220px;
      background: radial-gradient(circle at 40% 40%, rgba(255,79,134,.18), transparent 62%);
      pointer-events:none;
    }

    .card-title{
      font-weight:950;
      letter-spacing:-.2px;
      font-size:16px;
      margin-bottom:10px;
      position:relative;
      z-index:1;
    }

    .divider{
      height:1px;
      background: rgba(20,20,28,.08);
      margin:14px 0;
      position:relative;
      z-index:1;
    }

    .list-checked{display:grid; gap:10px; position:relative; z-index:1}
    .checked-item{
      display:flex; gap:10px; align-items:flex-start;
      font-weight:750;
      color: rgba(20,20,28,.78);
      line-height:1.6;
    }
    .check{
      width:18px; height:18px;
      border-radius:6px;
      background: rgba(217,27,92,.12);
      border:1px solid rgba(217,27,92,.18);
      color: rgba(140,10,52,1);
      display:inline-flex; align-items:center; justify-content:center;
      font-weight:1000;
      flex:0 0 auto;
      margin-top:1px;
    }

    .stat-row{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:12px;
      margin-top:8px;
      position:relative;
      z-index:1;
    }
    .stat{
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,20,28,.08);
      border-radius:16px;
      padding:12px;
      min-height:94px;
    }
    .stat-num{font-weight:1000; letter-spacing:-.2px}
    .stat-desc{color:var(--muted2); margin-top:7px; font-weight:750; font-size:13px; line-height:1.45}

    .callout{
      margin-top:14px;
      display:flex; gap:12px;
      align-items:center;
      justify-content:space-between;
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(217,27,92,.14);
      background:
        radial-gradient(420px 160px at 0% 0%, rgba(255,79,134,.14), transparent 58%),
        rgba(255,255,255,.62);
      position:relative;
      z-index:1;
    }
    .callout-wide{padding:16px}
    .callout-mini{padding:14px}
    .callout-title{font-weight:1000; letter-spacing:-.2px}
    .callout-right{display:flex; align-items:center}
    .small-foot{display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin-top:12px; color:var(--muted2); font-weight:700; position:relative; z-index:1}
    .sep{opacity:.55}
    .inline-link{
      color: rgba(217,27,92,1);
      font-weight:900;
      text-decoration:none;
      border-bottom:1px solid rgba(217,27,92,.25);
    }
    .inline-link:hover{border-bottom-color: rgba(217,27,92,.55)}

    .service-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .service-card{
      padding:18px;
      border-radius:var(--radius2);
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,20,28,.08);
      box-shadow: 0 10px 26px rgba(20,18,28,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:240px;
      display:flex;
      flex-direction:column;
    }
    .service-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 44px rgba(20,18,28,.12);
      border-color: rgba(217,27,92,.18);
    }
    .service-top{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .service-icon{
      width:42px; height:42px;
      border-radius:16px;
      background: rgba(217,27,92,.10);
      border:1px solid rgba(217,27,92,.18);
      display:flex; align-items:center; justify-content:center;
      color: rgba(217,27,92,1);
      flex:0 0 auto;
    }
    .service-desc{margin:6px 0 12px; color:rgba(20,20,28,.72); font-weight:700; line-height:1.7}
    .service-list{margin:0; padding-left:18px; color: rgba(20,20,28,.78); font-weight:800}
    .service-list li{margin:7px 0; font-size:13.5px}

    .section-foot{margin-top:18px}
    .token-strip{
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      padding:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,20,28,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 10px 26px rgba(20,18,28,.06);
    }
    .token-title{font-weight:1000; letter-spacing:-.2px}
    .token-right{display:flex; align-items:center; gap:10px; flex-wrap:wrap}

    .two-col{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .chip-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:6px}
    .chip{
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(20,20,28,.10);
      background: rgba(255,255,255,.62);
      font-weight:900;
      color: rgba(20,20,28,.85);
      box-shadow: 0 10px 22px rgba(20,18,28,.04);
    }
    .chip-2{background: rgba(47,107,255,.08); border-color: rgba(47,107,255,.20)}
    .chip-3{background: rgba(217,27,92,.10); border-color: rgba(217,27,92,.20)}
    .chip-4{background: rgba(14,164,106,.08); border-color: rgba(14,164,106,.20)}
    .chip-5{background: rgba(20,20,28,.04);}

    .margin-top-12{margin-top:12px}

    .bullet-list{margin:0; padding-left:18px; color: rgba(20,20,28,.78); font-weight:800}
    .bullet-list li{margin:10px 0; line-height:1.55}
    .bullet-list-tight li{margin:8px 0}

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

    .grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
    .solution-card{
      padding:18px;
      border-radius:var(--radius2);
      background: rgba(255,255,255,.70);
      border:1px solid rgba(20,20,28,.08);
      box-shadow: 0 10px 26px rgba(20,18,28,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:170px;
    }
    .solution-card:hover{
      transform: translateY(-3px);
      border-color: rgba(217,27,92,.18);
      box-shadow: 0 18px 44px rgba(20,18,28,.12);
    }
    .solution-title{font-weight:1000; letter-spacing:-.2px; font-size:16px}
    .solution-desc{margin-top:8px; font-weight:750; line-height:1.7}
    .solution-tags{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

    .timeline{
      position:relative;
      border-radius:var(--radius2);
      border:1px solid rgba(20,20,28,.08);
      background: rgba(255,255,255,.62);
      padding:18px;
      overflow:hidden;
      box-shadow: 0 10px 26px rgba(20,18,28,.06);
    }
    .timeline-line{
      position:absolute;
      left:18px; top:22px; bottom:22px;
      width:2px;
      background: linear-gradient(180deg, rgba(217,27,92,.45), rgba(255,79,134,.10));
      opacity:.6;
    }
    .timeline-item{
      position:relative;
      display:flex;
      gap:14px;
      padding:16px 0;
      align-items:flex-start;
    }
    .timeline-item + .timeline-item{border-top:1px dashed rgba(20,20,28,.10)}
    .timeline-step{
      width:44px; height:44px;
      border-radius:16px;
      background: rgba(217,27,92,.10);
      border:1px solid rgba(217,27,92,.18);
      color: rgba(140,10,52,1);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      z-index:1;
      flex:0 0 auto;
    }
    .timeline-title{font-weight:1000; letter-spacing:-.2px}
    .timeline-content{padding-top:2px}

    .map-card{position:relative}
    .network-list{margin-top:10px; display:grid; gap:12px}
    .network-item{display:flex; gap:12px; align-items:flex-start}
    .network-dot{
      width:14px; height:14px;
      border-radius:6px;
      background: rgba(217,27,92,.16);
      border:1px solid rgba(217,27,92,.22);
      margin-top:4px;
      flex:0 0 auto;
    }
    .network-title{font-weight:1000; letter-spacing:-.2px}

    .contact-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:10px;
    }
    .contact-item{
      padding:12px;
      border-radius:16px;
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,20,28,.08);
    }
    .contact-label{font-weight:850; font-size:13px}
    .contact-link{
      display:block;
      margin-top:8px;
      color: rgba(20,20,28,.90);
      font-weight:1000;
      text-decoration:none;
      overflow-wrap:anywhere;
    }
    .contact-link:hover{color: rgba(217,27,92,1)}
    .contact-text{margin-top:8px; font-weight:1000; color:rgba(20,20,28,.90)}

    .kefu-row{
      margin-top:14px;
      display:flex; gap:14px; align-items:center; justify-content:space-between; flex-wrap:wrap;
    }
    .kefu-info{min-width:180px}
    .kefu-title{font-weight:1000}
    .kefu-qr{
      width:92px; height:92px;
      border-radius:18px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(20,20,28,.08);
      padding:8px;
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 12px 26px rgba(20,18,28,.06);
    }
    .kefu-qr img{max-width:100%; height:auto; display:block; border-radius:12px}

    .process-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .process-card{
      padding:18px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,20,28,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 10px 26px rgba(20,18,28,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:210px;
      display:flex;
      flex-direction:column;
    }
    .process-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 44px rgba(20,18,28,.12);
      border-color: rgba(217,27,92,.18);
    }
    .process-step{
      font-weight:1000;
      color: rgba(217,27,92,1);
      font-size:12px;
      letter-spacing:.2px;
    }
    .process-title{
      margin-top:8px;
      font-weight:1000;
      letter-spacing:-.2px;
      font-size:16px;
    }
    .process-desc{margin-top:8px; font-weight:750; line-height:1.75}
    .process-foot{
      margin-top:auto;
      padding-top:12px;
    }
    .mini-pill{
      display:inline-flex;
      padding:8px 12px;
      border-radius:999px;
      background: rgba(20,20,28,.04);
      border:1px solid rgba(20,20,28,.08);
      font-weight:900;
      font-size:12.5px;
      color: rgba(20,20,28,.82);
    }
    .mini-pill-rose{background: rgba(217,27,92,.10); border-color: rgba(217,27,92,.18); color: rgba(140,10,52,1)}
    .mini-pill-soft{background: rgba(47,107,255,.10); border-color: rgba(47,107,255,.20); color: rgba(14,44,136,1)}
    .mini-pill-sand{background: rgba(244,239,232,.92); border-color: rgba(20,20,28,.10); color: rgba(86,49,14,1)}

    .proof-strip{
      margin-top:18px;
      display:flex; gap:12px;
      flex-wrap:wrap;
      justify-content:space-between;
    }
    .proof-item{
      flex:1;
      min-width:200px;
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,20,28,.08);
      border-radius:18px;
      padding:14px;
      display:flex; flex-direction:column; gap:6px;
    }
    .proof-title{font-weight:1000; letter-spacing:-.2px}
    .proof-item .muted{font-weight:800}

    .cases-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
      align-items:stretch;
    }
    .case-card{
      background: rgba(255,255,255,.70);
      border:1px solid rgba(20,20,28,.08);
      border-radius:var(--radius2);
      box-shadow: 0 10px 26px rgba(20,18,28,.06);
      overflow:hidden;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex;
      flex-direction:column;
    }
    .case-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 44px rgba(20,18,28,.12);
      border-color: rgba(217,27,92,.18);
    }
    .case-media{
      height:110px;
      background:
        radial-gradient(420px 120px at 10% 40%, rgba(255,79,134,.30), transparent 60%),
        radial-gradient(420px 140px at 90% 0%, rgba(217,27,92,.22), transparent 55%),
        linear-gradient(135deg, rgba(255,255,255,.2), rgba(255,255,255,.65));
      border-bottom:1px solid rgba(20,20,28,.06);
    }
    .case-media.media-2{
      background:
        radial-gradient(420px 120px at 0% 60%, rgba(47,107,255,.22), transparent 60%),
        radial-gradient(420px 140px at 100% 0%, rgba(255,79,134,.18), transparent 55%),
        linear-gradient(135deg, rgba(255,255,255,.2), rgba(255,255,255,.65));
    }
    .case-media.media-3{
      background:
        radial-gradient(420px 120px at 20% 10%, rgba(14,164,106,.20), transparent 60%),
        radial-gradient(420px 140px at 100% 20%, rgba(217,27,92,.18), transparent 55%),
        linear-gradient(135deg, rgba(255,255,255,.2), rgba(255,255,255,.65));
    }
    .case-body{
      padding:16px;
      display:flex;
      flex-direction:column;
      gap:10px;
      flex:1;
    }
    .case-title{font-weight:1000; letter-spacing:-.2px; font-size:16px}
    .case-desc{line-height:1.75; font-weight:750}
    .case-meta{display:flex; gap:8px; flex-wrap:wrap; margin-top:4px}
    .case-chip{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(20,20,28,.10);
      background: rgba(20,20,28,.04);
      font-weight:900;
      font-size:12px;
      color: rgba(20,20,28,.82);
    }
    .case-actions{margin-top:auto; display:flex; gap:10px; flex-wrap:wrap}

    .compare-top{
      display:grid;
      grid-template-columns: .52fr 1.48fr;
      gap:14px;
      align-items:stretch;
    }
    .rating-card{
      padding:18px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,20,28,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 10px 26px rgba(20,18,28,.06);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:12px;
    }
    .rating-row{display:flex; align-items:flex-end; justify-content:space-between; gap:12px}
    .stars{font-size:22px; letter-spacing:-2px; color: rgba(217,27,92,1)}
    .star{display:inline-block}
    .rating-score{text-align:right}
    .score-num{font-size:34px; font-weight:1100; letter-spacing:-.6px; line-height:1}
    .score-sub{margin-top:6px; font-weight:900; color:var(--muted2)}
    .rating-text{font-weight:850}

    .compare-card{
      padding:18px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,20,28,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 10px 26px rgba(20,18,28,.06);
    }
    .compare-title{font-weight:1100; letter-spacing:-.2px; font-size:16px}
    .compare-note{margin-top:6px; font-weight:750; line-height:1.6}
    .segmented{
      margin-top:12px;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .seg-btn{
      border-radius:999px;
      padding:10px 12px;
      border:1px solid rgba(20,20,28,.10);
      background: rgba(255,255,255,.62);
      font-weight:950;
      cursor:pointer;
      transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
    }
    .seg-btn:hover{transform: translateY(-1px); box-shadow: var(--shadow3)}
    .seg-btn-active{
      background: rgba(217,27,92,.12);
      border-color: rgba(217,27,92,.24);
      color: rgba(140,10,52,1);
    }

    .table-wrap{margin-top:14px; overflow:auto; border-radius:16px; border:1px solid rgba(20,20,28,.08)}
    .table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:560px;
      background: rgba(255,255,255,.72);
    }
    .table th, .table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(20,20,28,.08);
      text-align:left;
      vertical-align:top;
    }
    .table thead th{
      background: rgba(20,20,28,.03);
      font-weight:1000;
      color: rgba(20,20,28,.85);
      font-size:13px;
      border-bottom:1px solid rgba(20,20,28,.10);
    }
    .table tbody tr:last-child td{border-bottom:none}
    .ok{font-weight:1100; color: rgba(14,164,106,1)}
    .mid{font-weight:1000; color: rgba(20,20,28,.72)}
    .compare-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}

    .compare-view-cards .highlight-grid{
      display:grid; grid-template-columns: repeat(2, 1fr); gap:12px;
      margin-top:14px;
    }
    .highlight-item{
      padding:14px;
      border-radius:18px;
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,20,28,.08);
    }
    .highlight-title{font-weight:1100; letter-spacing:-.2px}
    .highlight-tag{
      margin-top:10px;
      display:inline-flex;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,20,28,.10);
      background: rgba(20,20,28,.04);
      font-weight:1000;
      color: rgba(20,20,28,.82);
      font-size:12.5px;
    }
    .highlight-tag-rose{background: rgba(217,27,92,.10); border-color: rgba(217,27,92,.18); color: rgba(140,10,52,1)}
    .highlight-tag-sand{background: rgba(244,239,232,.95); border-color: rgba(20,20,28,.10); color: rgba(86,49,14,1)}
    .highlight-tag-soft{background: rgba(47,107,255,.10); border-color: rgba(47,107,255,.18); color: rgba(14,44,136,1)}

    .form{
      margin-top:10px;
      position:relative;
      z-index:1;
    }
    .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .field{display:flex; flex-direction:column; gap:8px}
    .field-full{grid-column:1 / -1}
    label{font-weight:950; color: rgba(20,20,28,.86); font-size:13px}
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(20,20,28,.12);
      background: rgba(255,255,255,.76);
      color: rgba(20,20,28,.92);
      font-weight:750;
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease, background .15s ease;
    }
    textarea{resize: vertical; min-height:100px}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(217,27,92,.38);
      box-shadow: 0 0 0 4px rgba(217,27,92,.18);
      background: rgba(255,255,255,.90);
    }

    .form-foot{margin-top:14px}
    .form-hint{
      margin-top:10px;
      font-weight:750;
      font-size:12.8px;
      line-height:1.55;
    }

    .token-layout{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .table-compact th, .table-compact td{padding:11px 12px}
    .table-compact{min-width:520px}

    .steps-mini{margin-top:12px; display:grid; gap:12px}
    .steps-mini-item{
      display:flex; gap:12px;
      padding:12px 12px;
      border-radius:18px;
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,20,28,.08);
      align-items:flex-start;
    }
    .steps-mini-step{
      width:34px; height:34px;
      border-radius:14px;
      background: rgba(217,27,92,.10);
      border:1px solid rgba(217,27,92,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:1100;
      color: rgba(140,10,52,1);
      flex:0 0 auto;
      margin-top:2px;
    }
    .steps-mini-title{font-weight:1100}
    .quick-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}

    .floating-ads{
      margin-top:14px;
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .soft-card{
      padding:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,20,28,.08);
      background: rgba(255,255,255,.66);
      box-shadow: 0 10px 26px rgba(20,18,28,.06);
    }
    .soft-card-2{
      background:
        radial-gradient(420px 180px at 20% 0%, rgba(47,107,255,.18), transparent 55%),
        rgba(255,255,255,.64);
    }
    .soft-card-title{font-weight:1100; letter-spacing:-.2px}
    .inline-btn{
      display:inline-flex;
      margin-top:10px;
      font-weight:1000;
      color: rgba(217,27,92,1);
      text-decoration:none;
      border-bottom:1px solid rgba(217,27,92,.28);
      padding-bottom:4px;
    }
    .inline-btn:hover{border-bottom-color: rgba(217,27,92,.55)}

    .training-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:stretch;
    }
    .two-col-slim{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:10px;
    }
    .tick-list{display:grid; gap:10px}
    .tick-item{
      display:flex; gap:10px; align-items:flex-start;
      font-weight:850;
      color: rgba(20,20,28,.80);
      line-height:1.6;
    }

    .audience-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:10px;
    }
    .audience-item{
      padding:12px;
      border-radius:18px;
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,20,28,.08);
      min-height:92px;
    }
    .audience-title{font-weight:1100; letter-spacing:-.2px; font-size:13.8px}
    .audience-desc{margin-top:8px; font-weight:780; line-height:1.6; font-size:13px}

    .help-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .help-links{display:grid; gap:10px; margin-top:10px}
    .help-link{
      text-decoration:none;
      display:flex; align-items:center; justify-content:flex-start;
      gap:10px;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(20,20,28,.10);
      background: rgba(255,255,255,.62);
      font-weight:1000;
      color: rgba(20,20,28,.84);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .help-link:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow3);
      border-color: rgba(217,27,92,.18);
    }
    .help-ico{
      width:34px; height:34px;
      border-radius:14px;
      background: rgba(217,27,92,.10);
      border:1px solid rgba(217,27,92,.18);
      display:flex; align-items:center; justify-content:center;
      color: rgba(140,10,52,1);
      flex:0 0 auto;
    }
    .help-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}

    .faq-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .faq-col{display:flex; flex-direction:column; gap:12px}
    .faq-item{
      border-radius:var(--radius2);
      border:1px solid rgba(20,20,28,.08);
      background: rgba(255,255,255,.66);
      box-shadow: 0 10px 26px rgba(20,18,28,.05);
      overflow:hidden;
    }
    .faq-q{
      width:100%;
      padding:14px 14px;
      border:none;
      background:transparent;
      color: rgba(20,20,28,.92);
      font-weight:1000;
      letter-spacing:-.2px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      cursor:pointer;
    }
    .faq-q:focus{outline:none; box-shadow: inset 0 0 0 3px rgba(217,27,92,.18)}
    .faq-icon{
      width:34px; height:34px;
      border-radius:14px;
      background: rgba(20,20,28,.04);
      border:1px solid rgba(20,20,28,.08);
      display:flex; align-items:center; justify-content:center;
      color: rgba(20,20,28,.82);
      font-size:18px;
      flex:0 0 auto;
    }
    .faq-a{
      padding:0 14px 14px;
      color: rgba(20,20,28,.74);
      font-weight:760;
      line-height:1.8;
      font-size:14px;
    }

    .wiki-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .wiki-card{
      padding:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,20,28,.08);
      background: rgba(255,255,255,.70);
      box-shadow: 0 10px 26px rgba(20,18,28,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:140px;
      display:flex; flex-direction:column;
    }
    .wiki-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 44px rgba(20,18,28,.12);
      border-color: rgba(217,27,92,.18);
    }
    .wiki-title{font-weight:1100; letter-spacing:-.2px}
    .wiki-desc{margin-top:8px; font-weight:760; line-height:1.75}
    .wiki-card a{margin-top:auto}

    .news-grid{
      display:grid;
      grid-template-columns: 1.25fr .75fr;
      gap:14px;
      align-items:start;
    }
    .news-card{
      padding:18px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,20,28,.08);
      background: rgba(255,255,255,.70);
      box-shadow: 0 10px 26px rgba(20,18,28,.06);
    }
    .news-card-top{display:flex; align-items:flex-end; justify-content:space-between; gap:12px}
    .news-title{font-weight:1100; letter-spacing:-.2px}
    .news-list{
      list-style:none;
      padding:0;
      margin:14px 0 0;
      display:grid;
      gap:10px;
    }
    .news-list a{
      text-decoration:none;
      font-weight:950;
      color: rgba(20,20,28,.86);
      background: rgba(20,20,28,.03);
      border:1px solid rgba(20,20,28,.08);
      border-radius:16px;
      padding:12px 12px;
      display:block;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .news-list a:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow3);
      border-color: rgba(217,27,92,.18);
    }

    .news-side{
      display:grid;
      gap:14px;
    }
    .side-card{
      padding:18px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,20,28,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 10px 26px rgba(20,18,28,.06);
    }
    .side-title{font-weight:1100; letter-spacing:-.2px}
    .side-actions{margin-top:12px; display:grid; gap:10px}
    .side-divider{height:1px; background: rgba(20,20,28,.08); margin:14px 0}
    .side-kpi{display:grid; grid-template-columns:repeat(3, 1fr); gap:10px}
    .kpi-item{
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(20,20,28,.08);
      background: rgba(255,255,255,.62);
    }
    .kpi-num{font-weight:1100}
    .side-kpi .muted{margin-top:6px}

    .ad-card{
      padding:18px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,20,28,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 10px 26px rgba(20,18,28,.06);
    }
    .ad-card-title{font-weight:1100; letter-spacing:-.2px; margin-bottom:10px}
    .ad-media-row{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
    }
    .ad-media-col{
      margin-top:10px;
    }
    .ad-media-wrap{
      border-radius:18px;
      overflow:hidden;
      border:1px solid rgba(20,20,28,.08);
      background: rgba(20,20,28,.03);
      box-shadow: 0 10px 26px rgba(20,18,28,.04);
    }
    .ad-media-wrap img{
      width:100%;
      height:auto;
      display:block;
      object-fit:contain;
    }
    .ad-foot{margin-top:10px; font-weight:800; font-size:12.8px}

    .contact-block{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .contact-rows{margin-top:10px; display:grid; gap:10px}
    .contact-row{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      padding:12px;
      border-radius:18px;
      background: rgba(255,255,255,.62);
      border:1px solid rgba(20,20,28,.08);
    }
    .contact-key{font-weight:900}
    .contact-val{font-weight:1100; color: rgba(20,20,28,.90)}
    .contact-card-foot{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}

    .quick-form-actions{margin-top:12px; display:flex; gap:10px; flex-wrap:wrap}
    .social-proof{margin-top:16px}
    .social-title{font-weight:1100}
    .badge-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}

    .pill{
      display:inline-flex;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(20,20,28,.10);
      background: rgba(255,255,255,.62);
      font-weight:1000;
      color: rgba(20,20,28,.84);
      font-size:12.8px;
    }
    .pill-soft{background: rgba(47,107,255,.10); border-color: rgba(47,107,255,.20)}
    .pill-rose{background: rgba(217,27,92,.10); border-color: rgba(217,27,92,.20); color: rgba(140,10,52,1)}

    .partner-mini{margin-top:18px}
    .partner-title{font-weight:1100; letter-spacing:-.2px; margin-bottom:10px}
    .partner-links{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .partner-links a{
      color: rgba(20,20,28,.86);
      text-decoration:none;
      font-weight:950;
      background: rgba(20,20,28,.03);
      border:1px solid rgba(20,20,28,.08);
      border-radius:16px;
      padding:10px 12px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      overflow-wrap:anywhere;
    }
    .partner-links a:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow3);
      border-color: rgba(217,27,92,.18);
    }

    .join-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:stretch;
    }
    .join-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}

    .review-rows{display:grid; gap:12px; margin-top:12px}
    .review-row{display:flex; gap:12px; align-items:flex-start; padding:12px; border-radius:18px; background: rgba(255,255,255,.62); border:1px solid rgba(20,20,28,.08)}
    .review-avatar{
      width:44px; height:44px;
      border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      font-weight:1100;
      color: rgba(140,10,52,1);
      background: rgba(217,27,92,.10);
      border:1px solid rgba(217,27,92,.18);
      flex:0 0 auto;
    }
    .review-title{font-weight:1100; letter-spacing:-.2px}
    .callout-wide{margin-top:14px}

    .platform-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .platform-card{padding:18px}
    .platform-list{margin-top:10px; display:grid; gap:12px}
    .platform-item{display:flex; gap:12px; align-items:flex-start}
    .platform-ico{
      width:42px; height:42px;
      border-radius:16px;
      background: rgba(217,27,92,.10);
      border:1px solid rgba(217,27,92,.18);
      display:flex; align-items:center; justify-content:center;
      color: rgba(140,10,52,1);
      font-weight:1100;
      flex:0 0 auto;
    }
    .platform-title{font-weight:1100; letter-spacing:-.2px}
    .platform-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}

    .reviews-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .review-card{
      padding:18px;
      border-radius:var(--radius2);
      border:1px solid rgba(20,20,28,.08);
      background: rgba(255,255,255,.70);
      box-shadow: 0 10px 26px rgba(20,18,28,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex; flex-direction:column; gap:10px;
      min-height:250px;
    }
    .review-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 44px rgba(20,18,28,.12);
      border-color: rgba(217,27,92,.18);
    }
    .review-top{display:flex; gap:12px; align-items:flex-start}
    .review-meta{margin-top:4px; font-weight:800; font-size:12.8px}
    .review-text{margin:0; color: rgba(20,20,28,.76); font-weight:760; line-height:1.8}
    .review-stars{color: rgba(217,27,92,1); font-size:18px; margin-top:auto}

    .site-footer{
      background: linear-gradient(180deg, rgba(255,255,255,.0), rgba(20,20,28,.03));
      border-top:1px solid rgba(20,20,28,.08);
      padding:28px 0 22px;
    }
    .footer-container{padding:0 18px}
    .footer-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:18px;
      padding-bottom:16px;
    }
    .footer-brand{display:flex; gap:12px; align-items:flex-start}
    .footer-logo{
      width:46px; height:auto;
      border-radius:14px;
      background: rgba(255,255,255,.85);
      border:1px solid rgba(20,20,28,.10);
      padding:6px;
      box-shadow: 0 10px 26px rgba(217,27,92,.10);
    }
    .footer-title{font-weight:1100; letter-spacing:-.2px}
    .footer-desc{
      margin-top:6px;
      color: rgba(20,20,28,.72);
      font-weight:760;
      line-height:1.6;
      max-width:460px;
    }

    .footer-cols{display:flex; gap:18px; flex-wrap:wrap; justify-content:flex-end}
    .footer-col{
      min-width:170px;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(20,20,28,.08);
      background: rgba(255,255,255,.60);
    }
    .footer-col-title{font-weight:1100; letter-spacing:-.2px; margin-bottom:10px}
    .footer-link{
      display:block;
      text-decoration:none;
      color: rgba(20,20,28,.80);
      font-weight:900;
      padding:8px 0;
      border-bottom:1px dashed rgba(20,20,28,.10);
    }
    .footer-link:last-child{border-bottom:none}
    .footer-link:hover{color: rgba(217,27,92,1)}

    .footer-bottom{
      border-top:1px solid rgba(20,20,28,.08);
      padding-top:14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }
    .footer-left{font-weight:850}
    .footer-right{display:flex; align-items:center; gap:10px; font-weight:900}
    .ai-page-home-link{
      color: rgba(217,27,92,1);
      font-weight:1000;
      text-decoration:none;
      border-bottom:1px solid rgba(217,27,92,.28);
      padding-bottom:3px;
    }
    .ai-page-home-link:hover{border-bottom-color: rgba(217,27,92,.55)}

    .footer-top-link{
      color: rgba(20,20,28,.82);
      text-decoration:none;
      font-weight:1000;
      border-bottom:1px solid rgba(20,20,28,.20);
      padding-bottom:3px;
    }
    .footer-top-link:hover{color: rgba(217,27,92,1); border-bottom-color: rgba(217,27,92,.35)}

    .to-top{
      position:fixed;
      right:16px;
      bottom:92px;
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(20,20,28,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 36px rgba(20,18,28,.14);
      color: rgba(20,20,28,.92);
      font-weight:1100;
      cursor:pointer;
      opacity:0;
      pointer-events:none;
      transition: opacity .18s ease, transform .18s ease, background .18s ease;
      z-index:60;
    }
    .to-top:hover{transform: translateY(-2px); background: rgba(255,255,255,.92)}

    .floating-kefu{
      position:fixed;
      right:16px;
      bottom:16px;
      display:flex;
      flex-direction:column;
      gap:10px;
      z-index:70;
    }
    .kefu-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:12px 14px;
      border-radius:18px;
      border:1px solid rgba(217,27,92,.18);
      background: rgba(255,255,255,.82);
      box-shadow: 0 16px 40px rgba(217,27,92,.14);
      color: rgba(140,10,52,1);
      text-decoration:none;
      font-weight:1100;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
      min-width:142px;
    }
    .kefu-btn:hover{transform: translateY(-2px); box-shadow: 0 22px 56px rgba(217,27,92,.20); background: rgba(255,255,255,.95)}
    .kefu-btn-2{
      border-color: rgba(47,107,255,.22);
      box-shadow: 0 16px 40px rgba(47,107,255,.12);
      color: rgba(14,44,136,1);
      background: rgba(255,255,255,.82);
    }
    .kefu-dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, rgba(217,27,92,1), rgba(255,79,134,1));
      box-shadow: 0 10px 24px rgba(217,27,92,.25);
    }

    .skip-link:focus, .btn:focus, input:focus, select:focus, textarea:focus{outline:none}

    .reveal-in{
      opacity:1 !important;
      transform: translateY(0) !important;
    }
    [data-reveal]{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .55s ease, transform .55s ease;
    }

    @media (max-width: 980px){
      .container{max-width: 980px}
      .container-hero{grid-template-columns: 1fr; gap:14px}
      .hero-title{font-size:34px}
      .service-grid{grid-template-columns: repeat(2, 1fr)}
      .process-grid{grid-template-columns: repeat(2, 1fr)}
      .split-grid{grid-template-columns: 1fr}
      .cases-grid{grid-template-columns: 1fr}
      .compare-top{grid-template-columns: 1fr}
      .token-layout{grid-template-columns: 1fr}
      .training-grid{grid-template-columns: 1fr}
      .audience-grid{grid-template-columns: 1fr 1fr}
      .wiki-grid{grid-template-columns: 1fr 1fr}
      .news-grid{grid-template-columns: 1fr}
      .contact-block{grid-template-columns: 1fr}
      .platform-grid{grid-template-columns: 1fr}
      .reviews-grid{grid-template-columns: 1fr}
      .faq-grid{grid-template-columns: 1fr}
      .partner-links{grid-template-columns: 1fr 1fr}
      .hero-float{grid-template-columns:1fr}
      .nav-desktop-links{display:none}
      .nav-toggle{display:inline-flex}
      .nav-cta{display:none}
      .nav-right{justify-content:flex-end}
    }

    @media (max-width: 520px){
      .hero-title{font-size:28px}
      .hero-desc{font-size:14.5px}
      .panel-grid{grid-template-columns: 1fr 1fr}
      .mini-card{min-height:104px}
      .service-grid{grid-template-columns: 1fr}
      .process-grid{grid-template-columns: 1fr}
      .form-grid{grid-template-columns: 1fr}
      .token-right .floating-ads{grid-template-columns:1fr}
      .wiki-grid{grid-template-columns: 1fr}
      .reviews-grid{grid-template-columns: 1fr}
      .footer-top{flex-direction:column}
      .footer-cols{justify-content:flex-start}
      .footer-col{width:100%}
      .to-top{bottom:98px}
    }

    .mobile-menu{
      position:fixed;
      inset:0;
      background: rgba(10,10,14,.22);
      backdrop-filter: blur(6px);
      display:none;
      z-index:80;
    }
    .mobile-menu.open{display:block}
    .mobile-menu-inner{
      background: rgba(255,255,255,.92);
      border-top-left-radius: 22px;
      border-top-right-radius: 22px;
      border:1px solid rgba(20,20,28,.10);
      border-bottom:none;
      margin-top:64px;
      max-height: calc(100vh - 64px);
      overflow:auto;
      box-shadow: 0 30px 90px rgba(20,18,28,.20);
      padding:14px 14px 18px;
    }
    .mobile-menu-top{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding:10px 6px 12px;
      border-bottom: 1px solid rgba(20,20,28,.08);
      margin-bottom:10px;
    }
    .mobile-brand{display:flex; flex-direction:column; gap:8px}
    .mobile-close{
      width:42px; height:42px;
      border-radius:16px;
      border:1px solid rgba(20,20,28,.10);
      background: rgba(255,255,255,.8);
      font-size:24px;
      font-weight:1000;
      cursor:pointer;
    }
    .mobile-links{display:grid; gap:10px; padding:8px 4px}
    .mobile-link{
      text-decoration:none;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(20,20,28,.10);
      background: rgba(20,20,28,.03);
      font-weight:1000;
      color: rgba(20,20,28,.84);
      transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
    }
    .mobile-link:hover{
      transform: translateY(-2px);
      border-color: rgba(217,27,92,.18);
      box-shadow: var(--shadow3);
    }

    .mobile-actions{
      padding:14px 4px 0;
      display:grid;
      gap:10px;
    }
    .muted-link{color: rgba(20,20,28,.72); text-decoration:none; font-weight:900; border-bottom:1px solid rgba(20,20,28,.20); padding-bottom:3px; align-self:flex-start}
    .muted-link:hover{color: rgba(217,27,92,1); border-bottom-color: rgba(217,27,92,.35)}
    .mobile-links-2{display:flex; gap:12px; flex-wrap:wrap; align-items:center}
    .btn-block{width:100%}