:root{
      --bg0:#ffffff;
      --bg1:#fbfbff;
      --bg2:#f6f7fb;
      --card:#ffffff;
      --text:#1b2430;
      --muted:#5a6676;
      --line:rgba(27,36,48,.10);
      --shadow:0 14px 40px rgba(17,24,39,.10);
      --shadow2:0 10px 26px rgba(17,24,39,.10);
      --radius:18px;
      --radius2:24px;
      --brand1:#6d5efc;
      --brand2:#22c3a3;
      --brand3:#ff6aa2;
      --brand4:#ffb020;
      --brand5:#2f7dff;
      --focus: rgba(109,94,252,.35);
      --ease: cubic-bezier(.2,.9,.2,1);
      --container: 1120px;
    }
    *{ box-sizing:border-box; }
    html{ scroll-behavior:smooth; }
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", Arial, sans-serif;
      color:var(--text);
      background: radial-gradient(900px 500px at 20% 0%, rgba(109,94,252,.10), transparent 55%),
                  radial-gradient(800px 460px at 88% 10%, rgba(255,106,162,.10), transparent 50%),
                  linear-gradient(180deg, var(--bg1), var(--bg2));
    }
    .skip-link{
      position:absolute;left:-999px;top:8px;
      background:#fff;border:1px solid var(--line);
      padding:10px 12px;border-radius:12px;color:var(--text);
      z-index:9999;
    }
    .skip-link:focus{ left:12px; outline:3px solid var(--focus); }
    .container{ width:min(var(--container), calc(100% - 32px)); margin:0 auto; }
    .topbar{
      position:sticky; top:0; z-index:50;
      background: rgba(255,255,255,.78);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(27,36,48,.08);
    }
    .nav-container{
      min-height:68px;
      display:flex; align-items:center; justify-content:space-between;
      gap:16px;
    }
    .brand{ display:flex; align-items:center; gap:12px; min-width:160px; }
    .ai-page-logo{ width:160px; height:auto; }
    .nav-toggle{
      display:none;
      align-items:center; gap:10px;
      border:1px solid rgba(27,36,48,.12);
      background:rgba(255,255,255,.7);
      padding:10px 12px;border-radius:14px;
      color:var(--text);
      cursor:pointer;
    }
    .nav-toggle-icon{
      width:18px; height:12px; position:relative; display:inline-block;
      background: linear-gradient(var(--text), var(--text)) 0 0/100% 2px no-repeat,
                  linear-gradient(var(--text), var(--text)) 0 50%/100% 2px no-repeat,
                  linear-gradient(var(--text), var(--text)) 0 100%/100% 2px no-repeat;
      border-radius:2px;
      opacity:.85;
    }
    .nav-toggle-text{ font-size:14px; font-weight:650; }
    .nav{ display:flex; flex-wrap:nowrap; gap:18px; align-items:center; overflow:hidden; }
    .nav-link{
      font-size:14px; color:rgba(27,36,48,.78);
      text-decoration:none; padding:8px 0; white-space:nowrap;
      transition: color .2s var(--ease);
    }
    .nav-link:hover{ color:rgba(27,36,48,1); }
    .nav-actions{ display:flex; gap:10px; align-items:center; justify-content:flex-end; min-width:230px; }
    .nav-divider{ height:1px; background:transparent; }
    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      padding:10px 14px; border-radius:14px;
      border:1px solid rgba(27,36,48,.10);
      text-decoration:none; color:var(--text);
      background:#fff;
      transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
      cursor:pointer;
      user-select:none;
      font-weight:680;
      letter-spacing:.1px;
      font-size:14px;
    }
    .btn:focus{ outline:3px solid var(--focus); outline-offset:2px; }
    .btn:hover{ box-shadow:0 12px 30px rgba(17,24,39,.10); transform: translateY(-1px); }
    .btn-primary{
      color:#fff;
      border-color: rgba(109,94,252,.20);
      background: linear-gradient(135deg, var(--brand1), #3c87ff);
      box-shadow: 0 18px 44px rgba(109,94,252,.25);
    }
    .btn-primary:hover{
      box-shadow: 0 22px 52px rgba(109,94,252,.30);
      transform: translateY(-2px);
    }
    .btn-ghost{
      background: rgba(255,255,255,.65);
    }
    .btn-soft{
      background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.65));
      border-color: rgba(109,94,252,.20);
      position:relative;
      overflow:hidden;
    }
    .btn-soft::before{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(120px 50px at 20% 0%, rgba(255,106,162,.22), transparent 60%),
                  radial-gradient(120px 60px at 80% 100%, rgba(34,195,163,.22), transparent 60%);
      opacity:.65;
      pointer-events:none;
    }
    .btn-soft span, .btn-soft{ z-index:1; position:relative; }
    .btn-lg{ padding:12px 18px; border-radius:16px; font-size:15px; }
    .btn-block{ width:100%; }
    .section{ padding:56px 0; }
    .section-alt{ background: linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,255,255,.35)); border-top:1px solid rgba(27,36,48,.06); border-bottom:1px solid rgba(27,36,48,.06); }
    .section-alt2{ background: linear-gradient(180deg, rgba(246,247,251,.65), rgba(255,255,255,.35)); border-top:1px solid rgba(27,36,48,.06); border-bottom:1px solid rgba(27,36,48,.06); }

    .hero{
      padding:46px 0 28px;
      position:relative;
      overflow:hidden;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:26px;
      align-items:start;
    }
    .hero-copy{ padding:10px 0; position:relative; }
    .hero-pill{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px;border-radius:999px;
      background: rgba(255,255,255,.68);
      border:1px solid rgba(27,36,48,.10);
      color:rgba(27,36,48,.85);
      font-weight:700;
      font-size:13px;
      box-shadow: 0 12px 30px rgba(17,24,39,.06);
    }
    .hero-title{
      margin:14px 0 10px;
      font-size:40px;
      line-height:1.1;
      letter-spacing:-.6px;
    }
    .hero-subtitle{
      margin:0;
      color:rgba(27,36,48,.72);
      font-size:16px;
      line-height:1.75;
      max-width:560px;
    }
    .hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:18px; }
    .hero-links{ display:flex; gap:12px; align-items:center; margin-top:14px; color:rgba(27,36,48,.65); }
    .mini-link{ color:rgba(27,36,48,.70); text-decoration:none; font-weight:650; }
    .mini-link:hover{ color:rgba(27,36,48,1); text-decoration:underline; text-underline-offset:4px; }
    .dot{ color:rgba(27,36,48,.25); }
    .hero-meta{
      margin-top:20px;
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:12px;
    }
    .meta-item{
      border:1px solid rgba(27,36,48,.09);
      background: rgba(255,255,255,.64);
      border-radius:16px;
      padding:12px;
      display:flex; gap:10px; align-items:flex-start;
      transition: transform .18s var(--ease), box-shadow .2s var(--ease);
    }
    .meta-item:hover{ transform: translateY(-2px); box-shadow: var(--shadow2); }
    .meta-ico{ width:28px; height:28px; border-radius:10px; display:flex; align-items:center; justify-content:center; background: rgba(109,94,252,.12); border:1px solid rgba(109,94,252,.20); }
    .meta-text{ min-width:0; }
    .meta-title{ font-weight:800; font-size:14px; }
    .meta-desc{ color:rgba(27,36,48,.66); font-size:13px; margin-top:4px; line-height:1.35; }
    .hero-panel{
      background: rgba(255,255,255,.70);
      border:1px solid rgba(27,36,48,.10);
      border-radius:var(--radius2);
      box-shadow: 0 24px 70px rgba(17,24,39,.08);
      overflow:hidden;
      position:relative;
    }
    .panel-top{
      padding:18px 18px 10px;
      background: linear-gradient(180deg, rgba(255,255,255,.8), rgba(255,255,255,.4));
      border-bottom:1px solid rgba(27,36,48,.08);
    }
    .panel-title{ display:flex; align-items:center; gap:10px; font-weight:900; }
    .panel-badge{
      font-size:12px;
      font-weight:900;
      padding:6px 10px;
      border-radius:999px;
      background: rgba(255,106,162,.12);
      border:1px solid rgba(255,106,162,.25);
      color:rgba(27,36,48,.88);
    }
    .panel-sub{ margin-top:6px; color:rgba(27,36,48,.65); font-size:13px; }
    .metric-grid{
      padding:14px;
      display:grid;
      gap:12px;
    }
    .metric-card{
      border-radius:16px;
      border:1px solid rgba(27,36,48,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.55));
      padding:14px 14px 12px;
      box-shadow: 0 10px 30px rgba(17,24,39,.06);
      transition: transform .18s var(--ease), box-shadow .25s var(--ease);
    }
    .metric-card:hover{ transform: translateY(-2px); box-shadow: var(--shadow2); }
    .metric-value{
      font-size:26px;
      font-weight:950;
      letter-spacing:-.7px;
      display:flex; align-items:baseline; gap:6px;
    }
    .metric-label{ margin-top:6px; font-weight:780; font-size:13px; color:rgba(27,36,48,.82); line-height:1.35; }
    .metric-foot{ margin-top:8px; color:rgba(27,36,48,.62); font-size:12.5px; line-height:1.3; }
    .panel-actions{ padding:14px 14px 16px; border-top:1px solid rgba(27,36,48,.08); }
    .panel-note{ margin-top:8px; font-size:12.5px; color:rgba(27,36,48,.62); line-height:1.35; }

    .hero-orbit{
      position:absolute; inset:-60px -40px auto auto;
      width:420px; height:420px; pointer-events:none;
      opacity:.95;
    }
    .orb{
      position:absolute;
      border-radius:999px;
      filter: blur(.2px);
      mix-blend-mode:multiply;
      animation: floaty 10s var(--ease) infinite;
    }
    .orb-1{ width:160px; height:160px; right:60px; top:90px; background: radial-gradient(circle at 30% 30%, rgba(109,94,252,.45), rgba(109,94,252,.12), transparent 62%); animation-delay:0s; }
    .orb-2{ width:220px; height:220px; right:10px; top:10px; background: radial-gradient(circle at 40% 40%, rgba(34,195,163,.38), rgba(34,195,163,.10), transparent 62%); animation-delay:-2s; }
    .orb-3{ width:130px; height:130px; right:140px; top:30px; background: radial-gradient(circle at 30% 30%, rgba(255,106,162,.35), rgba(255,106,162,.10), transparent 62%); animation-delay:-4s; }
    @keyframes floaty{
      0%,100%{ transform: translate3d(0,0,0) scale(1); }
      50%{ transform: translate3d(-10px,12px,0) scale(1.03); }
    }

    .page-bg{ position:fixed; inset:0; pointer-events:none; z-index:-1; opacity:.9; }
    .bg-sprinkles{
      position:absolute; inset:0;
      background:
        radial-gradient(1px 1px at 10% 20%, rgba(109,94,252,.20), transparent 60%),
        radial-gradient(1px 1px at 25% 60%, rgba(255,106,162,.18), transparent 60%),
        radial-gradient(1px 1px at 70% 30%, rgba(34,195,163,.18), transparent 60%),
        radial-gradient(1px 1px at 85% 65%, rgba(47,125,255,.18), transparent 60%),
        radial-gradient(1px 1px at 45% 40%, rgba(255,176,32,.16), transparent 60%);
      animation: drift 16s var(--ease) infinite;
      opacity:.55;
    }
    @keyframes drift{
      0%,100%{ transform: translate3d(0,0,0); }
      50%{ transform: translate3d(0,-14px,0); }
    }

    .section-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:18px; }
    .section-head.split{ align-items:flex-start; }
    .split .headline-actions{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
    .section-title{
      margin:0;
      font-size:28px;
      letter-spacing:-.4px;
      line-height:1.2;
    }
    .section-desc{
      margin:10px 0 0;
      color:rgba(27,36,48,.68);
      line-height:1.7;
      font-size:15px;
      max-width:720px;
    }

    .feature-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
      margin-top:18px;
    }
    .feature-card{
      background: rgba(255,255,255,.70);
      border:1px solid rgba(27,36,48,.10);
      border-radius:18px;
      padding:16px;
      box-shadow: 0 14px 38px rgba(17,24,39,.06);
      transition: transform .18s var(--ease), box-shadow .25s var(--ease);
    }
    .feature-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow2); }
    .feature-ico{
      width:42px; height:42px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(180deg, rgba(109,94,252,.16), rgba(34,195,163,.10));
      border:1px solid rgba(109,94,252,.18);
      font-size:20px;
    }
    .feature-title{ margin:12px 0 6px; font-size:16px; font-weight:900; }
    .feature-text{ margin:0; color:rgba(27,36,48,.68); line-height:1.7; font-size:14px; }

    .service-cards{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
      margin-top:14px;
    }
    .svc-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(27,36,48,.10);
      border-radius:20px;
      padding:16px;
      box-shadow: 0 18px 44px rgba(17,24,39,.06);
      transition: transform .18s var(--ease), box-shadow .25s var(--ease), border-color .2s var(--ease);
      position:relative;
      overflow:hidden;
    }
    .svc-card::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(140px 70px at 15% 10%, rgba(109,94,252,.18), transparent 60%),
        radial-gradient(160px 80px at 90% 40%, rgba(255,106,162,.15), transparent 60%),
        radial-gradient(160px 80px at 40% 110%, rgba(34,195,163,.14), transparent 60%);
      opacity:.8; pointer-events:none;
    }
    .svc-card > *{ position:relative; z-index:1; }
    .svc-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
    .svc-tag{
      font-size:12px; font-weight:900;
      padding:7px 10px; border-radius:999px;
      background: rgba(109,94,252,.12);
      border:1px solid rgba(109,94,252,.22);
      color:rgba(27,36,48,.86);
      white-space:nowrap;
    }
    .svc-ico{ width:44px; height:44px; border-radius:18px; display:flex; align-items:center; justify-content:center;
      background: rgba(255,255,255,.65); border:1px solid rgba(27,36,48,.10);
      font-size:20px;
    }
    .svc-title{ margin:12px 0 8px; font-size:16px; font-weight:950; letter-spacing:-.2px; }
    .svc-text{ margin:0; color:rgba(27,36,48,.68); line-height:1.7; font-size:14px; }
    .svc-points{ margin-top:12px; display:flex; flex-wrap:wrap; gap:8px; }
    .chip{
      font-size:12.5px; font-weight:780;
      padding:7px 10px; border-radius:999px;
      background: rgba(255,255,255,.62);
      border:1px solid rgba(27,36,48,.10);
      color:rgba(27,36,48,.78);
    }
    .svc-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow2); border-color: rgba(109,94,252,.25); }

    .cta-strip{
      margin-top:18px;
      border-radius:22px;
      border:1px solid rgba(27,36,48,.10);
      background: linear-gradient(135deg, rgba(109,94,252,.18), rgba(34,195,163,.12), rgba(255,106,162,.10));
      padding:18px;
      display:flex; align-items:center; justify-content:space-between; gap:16px;
      box-shadow: 0 20px 60px rgba(17,24,39,.06);
      position:relative;
      overflow:hidden;
    }
    .cta-strip::after{
      content:"";
      position:absolute; right:-90px; top:-90px;
      width:220px; height:220px;
      border-radius:999px;
      background: radial-gradient(circle at 30% 30%, rgba(255,176,32,.40), rgba(255,176,32,.0) 62%);
      opacity:.75;
      pointer-events:none;
    }
    .cta-left{ max-width:720px; }
    .cta-title{ font-weight:980; letter-spacing:-.3px; font-size:18px; }
    .cta-desc{ margin-top:6px; color:rgba(27,36,48,.70); line-height:1.7; font-size:14px; }
    .cta-right{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }

    .workflow{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; margin-top:10px; }
    .flow-col{ display:flex; flex-direction:column; gap:12px; }
    .flow-step{
      border-radius:20px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.70);
      padding:14px;
      box-shadow: 0 16px 44px rgba(17,24,39,.06);
      display:flex; gap:12px; align-items:flex-start;
      transition: transform .18s var(--ease), box-shadow .25s var(--ease);
    }
    .flow-step:hover{ transform: translateY(-3px); box-shadow: var(--shadow2); }
    .step-num{
      width:46px; height:46px; border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      font-weight:980; letter-spacing:-.4px;
      background: linear-gradient(180deg, rgba(109,94,252,.16), rgba(34,195,163,.10));
      border:1px solid rgba(109,94,252,.20);
    }
    .step-title{ margin:2px 0 6px; font-size:16px; font-weight:950; }
    .step-text{ margin:0; color:rgba(27,36,48,.68); line-height:1.7; font-size:14px; }

    .callout-grid{
      margin-top:16px;
      display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:12px;
    }
    .callout{
      border-radius:18px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.65);
      padding:14px;
    }
    .callout-ico{ width:40px; height:40px; border-radius:16px; display:flex; align-items:center; justify-content:center; background: rgba(255,106,162,.12); border:1px solid rgba(255,106,162,.22); }
    .callout-title{ margin-top:10px; font-weight:930; }
    .callout-text{ margin-top:6px; color:rgba(27,36,48,.68); line-height:1.7; font-size:14px; }

    .grid-2-1{ display:grid; grid-template-columns: 1.05fr .95fr; gap:14px; align-items:start; margin-top:10px; }
    .list-panel{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(27,36,48,.10);
      border-radius:22px;
      padding:16px;
      box-shadow: 0 18px 50px rgba(17,24,39,.06);
    }
    .panel-h3{ margin:0 0 12px; font-size:16px; font-weight:950; }
    .industry-list{ display:flex; flex-direction:column; gap:12px; }
    .li{ display:flex; gap:12px; align-items:flex-start; }
    .li-dot{ width:12px; height:12px; border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(109,94,252,.85), rgba(109,94,252,.22));
      box-shadow: 0 10px 22px rgba(109,94,252,.18);
      margin-top:7px;
    }
    .li-title{ font-weight:900; }
    .li-desc{ margin-top:4px; color:rgba(27,36,48,.68); line-height:1.6; font-size:14px; }
    .panel-row{ margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; }

    .mini-map{
      background: rgba(255,255,255,.68);
      border:1px solid rgba(27,36,48,.10);
      border-radius:22px;
      padding:16px;
      box-shadow: 0 18px 50px rgba(17,24,39,.06);
      position:relative;
      overflow:hidden;
    }
    .mini-map::before{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(220px 140px at 20% 20%, rgba(109,94,252,.18), transparent 60%),
                  radial-gradient(220px 160px at 80% 20%, rgba(255,106,162,.14), transparent 60%),
                  radial-gradient(220px 160px at 60% 100%, rgba(34,195,163,.14), transparent 60%);
      opacity:.9; pointer-events:none;
    }
    .mini-map > *{ position:relative; z-index:1; }
    .mini-map-title{ font-weight:980; font-size:16px; }
    .mini-map-desc{ margin-top:6px; color:rgba(27,36,48,.66); line-height:1.7; font-size:14px; }

    .time-line{ margin-top:14px; display:flex; flex-direction:column; gap:12px; }
    .tl-item{ display:flex; gap:12px; align-items:flex-start; }
    .tl-bullet{ width:12px; height:12px; border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(34,195,163,.9), rgba(34,195,163,.18));
      box-shadow: 0 12px 22px rgba(34,195,163,.16);
      margin-top:7px;
    }
    .tl-head{ font-weight:920; }
    .tl-text{ margin-top:4px; color:rgba(27,36,48,.68); line-height:1.6; font-size:14px; }
    .map-stats{ margin-top:14px; display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:10px; }
    .ms{ border-radius:16px; border:1px solid rgba(27,36,48,.10); background: rgba(255,255,255,.60); padding:12px; }
    .ms-val{ font-weight:980; font-size:14px; }
    .ms-lab{ margin-top:6px; color:rgba(27,36,48,.66); font-size:12.5px; line-height:1.4; }

    .network-grid{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px; margin-top:14px; }
    .net-card{
      border-radius:22px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(27,36,48,.10);
      padding:16px;
      box-shadow: 0 18px 50px rgba(17,24,39,.06);
      display:flex; flex-direction:column; gap:12px;
      overflow:hidden;
      position:relative;
    }
    .net-card::before{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(220px 150px at 18% 20%, rgba(109,94,252,.14), transparent 60%),
                  radial-gradient(220px 150px at 88% 40%, rgba(255,106,162,.12), transparent 60%);
      opacity:.9; pointer-events:none;
    }
    .net-card > *{ position:relative; z-index:1; }
    .net-top{ display:flex; align-items:center; gap:10px; }
    .net-ico{ width:42px; height:42px; border-radius:16px; display:flex; align-items:center; justify-content:center;
      background: rgba(109,94,252,.12); border:1px solid rgba(109,94,252,.20); font-size:20px;
    }
    .net-title{ margin:0; font-size:16px; font-weight:980; }
    .net-list{ margin:0; padding-left:18px; display:flex; flex-direction:column; gap:8px; color:rgba(27,36,48,.70); line-height:1.6; font-size:14px; }
    .net-foot{ margin-top:auto; }

    .compare-shell{ margin-top:14px; border-radius:22px; border:1px solid rgba(27,36,48,.10); background: rgba(255,255,255,.68); box-shadow: 0 20px 60px rgba(17,24,39,.06); padding:14px; }
    .process-grid{ display:grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap:12px; align-items:stretch; }
    .proc{
      border-radius:18px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.62);
      padding:12px;
      display:flex; flex-direction:column; gap:10px;
      min-height:132px;
      transition: transform .18s var(--ease), box-shadow .25s var(--ease);
    }
    .proc:hover{ transform: translateY(-2px); box-shadow: var(--shadow2); }
    .proc-head{ display:flex; flex-direction:column; gap:6px; }
    .proc-step{ font-weight:920; font-size:12px; color:rgba(27,36,48,.58); }
    .proc-title{ font-weight:980; font-size:14px; letter-spacing:-.2px; }
    .proc-text{ color:rgba(27,36,48,.68); line-height:1.6; font-size:13.5px; }
    .process-cta{
      margin-top:14px;
      border-radius:20px;
      border:1px solid rgba(27,36,48,.10);
      background: linear-gradient(135deg, rgba(109,94,252,.18), rgba(34,195,163,.12), rgba(255,106,162,.10));
      padding:14px;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .process-cta-title{ font-weight:980; letter-spacing:-.3px; }
    .process-cta-desc{ margin-top:6px; color:rgba(27,36,48,.68); line-height:1.6; font-size:14px; }
    .process-cta-actions{ display:flex; gap:10px; flex-wrap:wrap; }

    .case-grid{
      margin-top:14px;
      display:grid; grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .case-card{
      border-radius:22px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(27,36,48,.10);
      padding:16px;
      box-shadow: 0 18px 50px rgba(17,24,39,.06);
      transition: transform .18s var(--ease), box-shadow .25s var(--ease);
      position:relative; overflow:hidden;
    }
    .case-card::before{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(200px 120px at 20% 10%, rgba(109,94,252,.16), transparent 58%),
                  radial-gradient(220px 130px at 95% 30%, rgba(255,176,32,.12), transparent 60%);
      opacity:.95; pointer-events:none;
    }
    .case-card > *{ position:relative; z-index:1; }
    .case-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow2); }
    .case-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
    .case-type{
      font-size:12px; font-weight:900;
      padding:7px 10px; border-radius:999px;
      background: rgba(34,195,163,.12); border:1px solid rgba(34,195,163,.22);
    }
    .case-scope{
      font-size:12px; font-weight:900;
      padding:7px 10px; border-radius:999px;
      background: rgba(109,94,252,.12); border:1px solid rgba(109,94,252,.22);
      color:rgba(27,36,48,.86);
    }
    .case-title{ margin:12px 0 8px; font-weight:990; font-size:15.5px; letter-spacing:-.2px; }
    .case-text{ margin:0; color:rgba(27,36,48,.68); line-height:1.7; font-size:14px; }
    .case-tags{ margin-top:12px; display:flex; flex-wrap:wrap; gap:8px; }
    .tag{
      border-radius:999px;
      padding:7px 10px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.62);
      font-size:12.5px;
      font-weight:820;
      color:rgba(27,36,48,.74);
    }
    .case-bottom{
      margin-top:14px;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .price-hint{
      display:flex; align-items:center; gap:12px;
      border-radius:20px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.68);
      padding:14px;
      max-width:720px;
    }
    .price-hint-ico{ width:40px; height:40px; border-radius:16px; display:flex; align-items:center; justify-content:center; background: rgba(109,94,252,.12); border:1px solid rgba(109,94,252,.20); }
    .price-hint-text{ color:rgba(27,36,48,.72); line-height:1.7; font-weight:700; }

    .rating-row{
      margin-top:14px;
      display:grid; grid-template-columns: .9fr 1.1fr; gap:14px;
      align-items:stretch;
    }
    .rating-badge{
      border-radius:24px;
      background: linear-gradient(135deg, rgba(109,94,252,.18), rgba(34,195,163,.12), rgba(255,106,162,.10));
      border:1px solid rgba(27,36,48,.10);
      padding:18px;
      box-shadow: 0 24px 70px rgba(17,24,39,.07);
    }
    .rb-top{ color:rgba(27,36,48,.68); font-weight:850; }
    .rb-main{ margin-top:8px; font-weight:1000; font-size:34px; letter-spacing:-1px; }
    .rb-bottom{ margin-top:6px; color:rgba(27,36,48,.72); font-weight:850; }
    .rb-score{ font-weight:1000; font-size:22px; color:rgba(27,36,48,.95); }
    .rating-quick{
      border-radius:24px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(27,36,48,.10);
      padding:18px;
      box-shadow: 0 24px 70px rgba(17,24,39,.06);
      display:flex; flex-direction:column; gap:12px;
    }
    .rq-title{ font-weight:980; letter-spacing:-.3px; }
    .rq-items{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:10px; }
    .rq{
      display:flex; gap:10px; align-items:center;
      border-radius:18px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.62);
      padding:12px;
    }
    .rq-ico{
      width:38px; height:38px; border-radius:16px; display:flex; align-items:center; justify-content:center;
      background: rgba(109,94,252,.12); border:1px solid rgba(109,94,252,.20);
      font-size:18px;
    }
    .rq-text{ font-weight:880; color:rgba(27,36,48,.78); line-height:1.3; font-size:14px; }

    .table-wrap{
      margin-top:14px;
      border-radius:22px;
      overflow:hidden;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 24px 70px rgba(17,24,39,.06);
    }
    .table-scroll{ overflow:auto; }
    .compare-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:760px;
    }
    .compare-table thead th{
      text-align:left;
      padding:14px 14px;
      font-size:14px;
      font-weight:980;
      background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.60));
      border-bottom:1px solid rgba(27,36,48,.10);
      color:rgba(27,36,48,.90);
    }
    .compare-table tbody td{
      padding:14px 14px;
      border-bottom:1px solid rgba(27,36,48,.08);
      color:rgba(27,36,48,.72);
      line-height:1.6;
      font-size:14px;
      vertical-align:top;
    }
    .compare-table tbody tr:last-child td{ border-bottom:none; }
    .good{ font-weight:980; color:rgba(27,36,48,.95); }
    .pill-good, .pill-mid{
      display:inline-flex; padding:6px 10px; border-radius:999px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.62);
      font-weight:920; font-size:12.5px;
    }
    .pill-good{ border-color: rgba(34,195,163,.25); background: rgba(34,195,163,.12); }
    .pill-mid{ border-color: rgba(255,176,32,.25); background: rgba(255,176,32,.12); }

    .table-foot{
      padding:12px 14px;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      border-top:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.55);
    }
    .table-foot-left{ display:flex; gap:10px; align-items:center; color:rgba(27,36,48,.70); font-weight:760; }
    .table-foot-ico{
      width:34px; height:34px; border-radius:14px; display:flex; align-items:center; justify-content:center;
      background: rgba(34,195,163,.12); border:1px solid rgba(34,195,163,.22);
    }

    .intake-grid{
      display:grid; grid-template-columns: 1.05fr .95fr; gap:14px; margin-top:14px;
      align-items:start;
    }
    .intake-card, .intake-side .side-block{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(27,36,48,.10);
      border-radius:22px;
      box-shadow: 0 24px 70px rgba(17,24,39,.06);
    }
    .intake-card{ padding:16px; }
    .intake-title{ font-weight:1000; letter-spacing:-.3px; font-size:16px; margin-bottom:10px; }
    .form{ display:flex; flex-direction:column; gap:12px; }
    .form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
    .field{ display:flex; flex-direction:column; gap:8px; }
    .field-label{ font-weight:900; font-size:13px; color:rgba(27,36,48,.82); }
    input, select, textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(27,36,48,.12);
      background: rgba(255,255,255,.78);
      padding:11px 12px;
      font-size:14px;
      color:var(--text);
      outline:none;
      transition: box-shadow .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
    }
    textarea{ resize:vertical; min-height:120px; max-height:260px; }
    input:focus, select:focus, textarea:focus{
      border-color: rgba(109,94,252,.42);
      box-shadow: 0 0 0 4px rgba(109,94,252,.18);
      background: #fff;
    }
    .form-actions{ display:flex; flex-direction:column; gap:8px; margin-top:2px; }
    .form-footnote{ color:rgba(27,36,48,.62); font-size:12.5px; line-height:1.4; }

    .intake-side{ display:flex; flex-direction:column; gap:12px; }
    .side-block{ padding:14px; }
    .side-title{ font-weight:980; letter-spacing:-.2px; margin-bottom:10px; }
    .side-list{ display:flex; flex-direction:column; gap:10px; }
    .side-li{ display:flex; gap:10px; align-items:flex-start; }
    .side-mark{ width:10px; height:10px; border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(255,106,162,.85), rgba(255,106,162,.18));
      margin-top:6px; box-shadow: 0 12px 22px rgba(255,106,162,.14);
    }
    .side-text{ color:rgba(27,36,48,.72); font-weight:700; line-height:1.5; font-size:14px; }
    .quick-links{ display:grid; grid-template-columns: 1fr; gap:10px; }
    .quick-link{
      text-decoration:none;
      border-radius:16px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.62);
      padding:12px;
      font-weight:900;
      color:rgba(27,36,48,.78);
      transition: transform .18s var(--ease), box-shadow .25s var(--ease);
    }
    .quick-link:hover{ transform: translateY(-2px); box-shadow: var(--shadow2); }
    .promo{
      background: linear-gradient(135deg, rgba(255,106,162,.14), rgba(109,94,252,.16), rgba(34,195,163,.10)) !important;
      position:relative; overflow:hidden;
    }
    .promo::after{
      content:"";
      position:absolute; right:-80px; bottom:-120px;
      width:220px; height:220px; border-radius:999px;
      background: radial-gradient(circle at 30% 30%, rgba(109,94,252,.28), rgba(109,94,252,0) 62%);
      opacity:.9; pointer-events:none;
    }
    .promo > *{ position:relative; z-index:1; }
    .promo-title{ font-weight:1000; letter-spacing:-.3px; }
    .promo-desc{ margin-top:6px; color:rgba(27,36,48,.68); line-height:1.6; font-weight:750; }

    .token-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap:14px; margin-top:14px; }
    .token-card, .token-side-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(27,36,48,.10);
      border-radius:22px;
      box-shadow: 0 24px 70px rgba(17,24,39,.06);
      padding:16px;
    }
    .token-side-card{ display:flex; flex-direction:column; gap:12px; }
    .token-head{ display:flex; flex-direction:column; gap:6px; }
    .token-title{ font-weight:1000; letter-spacing:-.3px; font-size:16px; }
    .token-sub{ color:rgba(27,36,48,.64); font-weight:780; }
    .token-matrix{ margin-top:12px; display:flex; flex-direction:column; gap:10px; }
    .tm-row{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      border-radius:18px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.62);
      padding:12px;
    }
    .tm-k{ font-weight:900; color:rgba(27,36,48,.82); }
    .token-note{ margin-top:12px; color:rgba(27,36,48,.64); line-height:1.6; font-size:13.5px; font-weight:720; }
    .token-side{ display:flex; flex-direction:column; gap:12px; }
    .token-side-title{ font-weight:1000; letter-spacing:-.3px; }
    .token-side-list{ display:flex; flex-direction:column; gap:10px; }
    .ts-li{ display:flex; gap:12px; align-items:flex-start; }
    .ts-dot{ width:12px; height:12px; border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(34,195,163,.95), rgba(34,195,163,.18));
      margin-top:6px; box-shadow: 0 12px 22px rgba(34,195,163,.14);
    }
    .ts-t{ color:rgba(27,36,48,.72); line-height:1.6; font-weight:780; }
    .token-side-actions{ margin-top:auto; }
    .token-quote{
      border-radius:22px;
      border:1px solid rgba(27,36,48,.10);
      background: linear-gradient(135deg, rgba(109,94,252,.14), rgba(255,176,32,.10), rgba(34,195,163,.10));
      padding:14px;
      box-shadow: 0 24px 70px rgba(17,24,39,.05);
      position:relative; overflow:hidden;
    }
    .token-quote::before{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(240px 140px at 15% 0%, rgba(255,106,162,.15), transparent 60%),
                  radial-gradient(220px 140px at 90% 60%, rgba(34,195,163,.14), transparent 60%);
      opacity:.9; pointer-events:none;
    }
    .token-quote > *{ position:relative; z-index:1; }
    .tq-ico{ width:42px; height:42px; border-radius:16px; display:flex; align-items:center; justify-content:center;
      background: rgba(255,255,255,.65); border:1px solid rgba(27,36,48,.10);
      font-size:20px;
    }
    .tq-text{ margin-top:10px; color:rgba(27,36,48,.72); line-height:1.7; font-weight:770; }

    .training-grid{ display:grid; grid-template-columns: 1.05fr .95fr; gap:14px; margin-top:14px; }
    .train-card, .train-side-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(27,36,48,.10);
      border-radius:22px;
      box-shadow: 0 24px 70px rgba(17,24,39,.06);
      padding:16px;
    }
    .train-title{ font-weight:1000; letter-spacing:-.3px; margin-bottom:12px; font-size:16px; }
    .train-rows{ display:flex; flex-direction:column; gap:12px; }
    .train-row{ display:flex; gap:12px; align-items:flex-start; border-radius:18px; border:1px solid rgba(27,36,48,.10); background: rgba(255,255,255,.62); padding:12px; }
    .train-num{
      width:34px; height:34px; border-radius:14px; display:flex; align-items:center; justify-content:center;
      background: rgba(109,94,252,.12); border:1px solid rgba(109,94,252,.20);
      font-weight:1000;
    }
    .train-name{ font-weight:980; }
    .train-desc{ margin-top:5px; color:rgba(27,36,48,.66); line-height:1.6; font-weight:720; font-size:13.5px; }
    .train-actions{ margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; }
    .train-side-title{ font-weight:1000; letter-spacing:-.3px; }
    .train-pill-grid{ display:flex; flex-wrap:wrap; gap:10px; margin-top:10px; }
    .pill{
      display:inline-flex; padding:8px 10px; border-radius:999px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.62);
      font-weight:900; color:rgba(27,36,48,.78);
      font-size:13px;
    }
    .train-props{ margin-top:12px; display:flex; flex-direction:column; gap:10px; }
    .tp{ display:flex; gap:12px; align-items:flex-start; }
    .tp-ico{
      width:36px; height:36px; border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(34,195,163,.12); border:1px solid rgba(34,195,163,.20);
      font-size:18px;
    }
    .tp-t{ font-weight:900; color:rgba(27,36,48,.80); line-height:1.4; }
    .train-side-bottom{ margin-top:auto; }
    .small-note{ color:rgba(27,36,48,.64); line-height:1.6; font-size:13px; font-weight:730; }

    .articles-grid{ display:grid; grid-template-columns: 1fr .85fr; gap:14px; margin-top:14px; }
    .article-list, .tag-cloud, .read-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(27,36,48,.10);
      border-radius:22px;
      box-shadow: 0 24px 70px rgba(17,24,39,.06);
    }
    .article-list{ padding:16px; }
    .article-list-title, .tag-cloud-title, .read-title{ font-weight:1000; letter-spacing:-.3px; margin-bottom:12px; font-size:16px; }
    .article-ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
    .article-link{
      text-decoration:none;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.62);
      padding:12px;
      border-radius:18px;
      color:rgba(27,36,48,.78);
      font-weight:860;
      line-height:1.35;
      transition: transform .18s var(--ease), box-shadow .25s var(--ease), border-color .2s var(--ease);
      display:block;
    }
    .article-link:hover{ transform: translateY(-2px); box-shadow: var(--shadow2); border-color: rgba(109,94,252,.25); }
    .article-foot{ margin-top:14px; }

    .article-right{ display:flex; flex-direction:column; gap:12px; }
    .tag-cloud{ padding:16px; }
    .tag-cloud-body{ display:flex; flex-wrap:wrap; gap:10px; }
    .cloud-tag{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.62);
      color:rgba(27,36,48,.78);
      font-weight:900;
      font-size:13px;
      transition: transform .18s var(--ease), box-shadow .25s var(--ease), border-color .2s var(--ease);
    }
    .cloud-tag:hover{ transform: translateY(-2px); box-shadow: var(--shadow2); border-color: rgba(255,106,162,.25); }
    .read-card{ padding:16px; }
    .read-items{ display:flex; flex-direction:column; gap:10px; }
    .read-item{
      display:flex; gap:12px; align-items:flex-start;
      border-radius:18px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.62);
      padding:12px;
    }
    .ri-ico{
      width:36px; height:36px; border-radius:14px; display:flex; align-items:center; justify-content:center;
      background: rgba(255,176,32,.12); border:1px solid rgba(255,176,32,.22);
      font-size:18px;
    }
    .ri-t{ font-weight:930; color:rgba(27,36,48,.80); line-height:1.4; }
    .link-more{ display:inline-block; margin-top:12px; color:rgba(109,94,252,.95); font-weight:950; text-decoration:none; }
    .link-more:hover{ text-decoration:underline; text-underline-offset:4px; }

    .wiki-grid{
      margin-top:14px;
      display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px;
    }
    .wiki-card{
      border-radius:22px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(27,36,48,.10);
      padding:16px;
      box-shadow: 0 24px 70px rgba(17,24,39,.06);
      transition: transform .18s var(--ease), box-shadow .25s var(--ease);
    }
    .wiki-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow2); }
    .wiki-title{ margin:0; font-size:16px; font-weight:1000; letter-spacing:-.3px; }
    .wiki-text{ margin:10px 0 0; color:rgba(27,36,48,.68); line-height:1.7; font-weight:730; }
    .wiki-card .link-more{ margin-top:14px; }

    .help-grid{ margin-top:14px; display:grid; grid-template-columns: 1fr 1fr 1fr; gap:14px; }
    .help-card{
      border-radius:22px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(27,36,48,.10);
      padding:16px;
      box-shadow: 0 24px 70px rgba(17,24,39,.06);
    }
    .help-card.highlight{
      background: linear-gradient(135deg, rgba(109,94,252,.18), rgba(255,106,162,.12), rgba(34,195,163,.10));
      position:relative; overflow:hidden;
    }
    .help-card.highlight::before{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(220px 160px at 0% 20%, rgba(255,176,32,.20), transparent 60%),
                  radial-gradient(220px 160px at 90% 10%, rgba(109,94,252,.18), transparent 60%);
      opacity:.85; pointer-events:none;
    }
    .help-card.highlight > *{ position:relative; z-index:1; }
    .help-title{ font-weight:1000; letter-spacing:-.3px; margin-bottom:12px; font-size:16px; }
    .help-links{ display:flex; flex-direction:column; gap:10px; }
    .help-link{
      text-decoration:none;
      border-radius:18px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.62);
      padding:12px;
      font-weight:930;
      color:rgba(27,36,48,.80);
      transition: transform .18s var(--ease), box-shadow .25s var(--ease);
      display:block;
    }
    .help-link:hover{ transform: translateY(-2px); box-shadow: var(--shadow2); }
    .help-bullets{ display:flex; flex-direction:column; gap:12px; }
    .hb{ display:flex; gap:12px; align-items:flex-start; border-radius:18px; border:1px solid rgba(27,36,48,.10); background: rgba(255,255,255,.62); padding:12px; }
    .hb-ico{ width:34px; height:34px; border-radius:14px; display:flex; align-items:center; justify-content:center; background: rgba(34,195,163,.12); border:1px solid rgba(34,195,163,.20); font-weight:1000; }
    .hb-text{ color:rgba(27,36,48,.76); line-height:1.5; font-weight:840; }
    .help-highlight-text{ color:rgba(27,36,48,.72); line-height:1.7; font-weight:760; }
    .help-highlight-actions{ margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; }

    .faq-grid{ margin-top:14px; display:grid; grid-template-columns: 1.3fr .7fr; gap:14px; align-items:start; }
    .faq-accordion{
      border-radius:22px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 24px 70px rgba(17,24,39,.06);
      padding:10px;
    }
    .acc{
      border-radius:18px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.62);
      margin:10px;
      overflow:hidden;
    }
    .acc-btn{
      width:100%;
      text-align:left;
      border:none; background:transparent;
      padding:14px 14px;
      cursor:pointer;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      font-weight:980;
      color:rgba(27,36,48,.86);
      font-size:14.5px;
    }
    .acc-btn:focus{ outline:3px solid var(--focus); outline-offset:-3px; }
    .acc-icon{
      width:36px; height:36px; border-radius:16px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.62);
      position:relative;
      flex:0 0 auto;
    }
    .acc-icon::before, .acc-icon::after{
      content:""; position:absolute; left:50%; top:50%;
      width:14px; height:2px; background: rgba(27,36,48,.72);
      transform: translate(-50%,-50%);
      border-radius:2px;
    }
    .acc-icon::after{ transform: translate(-50%,-50%) rotate(90deg); transition: transform .2s var(--ease); }
    .acc[data-open="true"] .acc-icon::after{ transform: translate(-50%,-50%) rotate(0deg); }
    .acc-panel{
      padding:0 14px 14px;
      color:rgba(27,36,48,.70);
      line-height:1.8;
      font-weight:730;
      font-size:14px;
    }
    .faq-side{
      display:flex; flex-direction:column; gap:12px;
    }
    .side-call{
      border-radius:22px;
      border:1px solid rgba(27,36,48,.10);
      background: linear-gradient(135deg, rgba(109,94,252,.18), rgba(255,106,162,.12), rgba(34,195,163,.10));
      box-shadow: 0 24px 70px rgba(17,24,39,.06);
      padding:16px;
      position:relative; overflow:hidden;
    }
    .side-call::before{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(220px 160px at 0% 0%, rgba(255,176,32,.18), transparent 60%),
                  radial-gradient(220px 160px at 90% 20%, rgba(109,94,252,.18), transparent 60%);
      opacity:.85; pointer-events:none;
    }
    .side-call > *{ position:relative; z-index:1; }
    .side-call-title{ font-weight:1000; letter-spacing:-.3px; }
    .side-call-text{ margin-top:8px; color:rgba(27,36,48,.72); line-height:1.7; font-weight:760; }
    .side-review{
      border-radius:22px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 24px 70px rgba(17,24,39,.06);
      padding:16px;
    }
    .side-review-title{ font-weight:1000; letter-spacing:-.3px; margin-bottom:12px; font-size:16px; }
    .side-review-list{ display:flex; flex-direction:column; gap:10px; }
    .sr-item{
      display:flex; gap:12px; align-items:flex-start;
      border-radius:18px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.62);
      padding:12px;
    }
    .sr-avatar{
      width:40px; height:40px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(109,94,252,.12); border:1px solid rgba(109,94,252,.20);
      font-weight:1000;
      color:rgba(27,36,48,.86);
    }
    .sr-name{ font-weight:980; }
    .sr-text{ margin-top:4px; color:rgba(27,36,48,.68); line-height:1.6; font-weight:740; }

    .review-grid{ margin-top:14px; display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px; }
    .review-card{
      border-radius:22px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.72);
      padding:16px;
      box-shadow: 0 24px 70px rgba(17,24,39,.06);
      transition: transform .18s var(--ease), box-shadow .25s var(--ease);
    }
    .review-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow2); }
    .review-top{ display:flex; gap:12px; align-items:center; }
    .review-avatar{
      width:44px; height:44px; border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,106,162,.12); border:1px solid rgba(255,106,162,.22);
      font-weight:1000;
    }
    .review-name{ font-weight:1000; letter-spacing:-.3px; }
    .review-meta{ margin-top:4px; color:rgba(27,36,48,.62); font-weight:760; font-size:13px; }
    .review-text{ margin:12px 0 0; color:rgba(27,36,48,.70); line-height:1.8; font-weight:740; }
    .review-stars{ margin-top:12px; letter-spacing:2px; color:rgba(255,176,32,.95); font-size:14px; }

    .contact-grid{ margin-top:14px; display:grid; grid-template-columns: 1fr 1fr; gap:14px; align-items:start; }
    .contact-card{
      border-radius:22px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 24px 70px rgba(17,24,39,.06);
      padding:16px;
    }
    .contact-title{ font-weight:1000; letter-spacing:-.3px; margin-bottom:12px; font-size:16px; }
    .contact-lines{ display:flex; flex-direction:column; gap:12px; }
    .cl{ display:flex; gap:12px; align-items:flex-start; }
    .cl-ico{ width:42px; height:42px; border-radius:16px; display:flex; align-items:center; justify-content:center;
      background: rgba(109,94,252,.12); border:1px solid rgba(109,94,252,.20); font-size:18px;
    }
    .cl-k{ color:rgba(27,36,48,.62); font-weight:840; font-size:13px; }
    .cl-v{ margin-top:4px; display:inline-block; color:rgba(27,36,48,.86); font-weight:950; text-decoration:none; }
    .contact-actions{ margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; }
    .qr-wrap{ display:flex; gap:14px; align-items:center; }
    .qr-img{
      width:138px; height:auto; border-radius:18px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.65);
      box-shadow: 0 18px 50px rgba(17,24,39,.08);
    }
    .qr-caption{ color:rgba(27,36,48,.68); line-height:1.6; font-weight:760; }
    .contact-divider{ height:1px; background: rgba(27,36,48,.10); margin:14px 0; }
    .contact-ways{ display:grid; grid-template-columns: 1fr; gap:12px; }
    .way{ display:flex; gap:12px; align-items:flex-start; }
    .way-ico{
      width:42px; height:42px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(34,195,163,.12); border:1px solid rgba(34,195,163,.20);
      font-size:18px;
    }
    .way-t{ font-weight:980; }
    .way-d{ margin-top:4px; color:rgba(27,36,48,.66); line-height:1.6; font-weight:740; font-size:13.5px; }
    .contact-media-row{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; margin-top:12px; }
    .media-mini{
      border-radius:22px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.65);
      padding:14px;
    }
    .media-label{ font-weight:980; letter-spacing:-.2px; }
    .media-imgs{ margin-top:12px; display:flex; gap:10px; flex-wrap:wrap; }
    .media-imgs img{
      width:calc(50% - 5px);
      min-width:120px;
      border-radius:18px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.65);
      padding:6px;
      object-fit:contain;
      height:auto;
    }

    .aff-grid{ margin-top:14px; display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
    .aff-card{
      border-radius:22px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 24px 70px rgba(17,24,39,.06);
      padding:16px;
    }
    .aff-card.accent{
      background: linear-gradient(135deg, rgba(255,176,32,.12), rgba(109,94,252,.16), rgba(34,195,163,.10));
      position:relative; overflow:hidden;
    }
    .aff-card.accent::before{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(260px 180px at 10% 10%, rgba(255,106,162,.16), transparent 60%),
                  radial-gradient(260px 180px at 90% 20%, rgba(109,94,252,.18), transparent 60%);
      opacity:.85; pointer-events:none;
    }
    .aff-card.accent > *{ position:relative; z-index:1; }
    .aff-title{ font-weight:1000; letter-spacing:-.3px; font-size:16px; margin-bottom:12px; }
    .aff-list{ display:flex; flex-direction:column; gap:12px; }
    .aff-li{ display:flex; gap:12px; align-items:flex-start; border-radius:18px; border:1px solid rgba(27,36,48,.10); background: rgba(255,255,255,.62); padding:12px; }
    .aff-ico{
      width:42px; height:42px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(109,94,252,.12); border:1px solid rgba(109,94,252,.20);
      font-size:18px;
    }
    .aff-t{ font-weight:930; color:rgba(27,36,48,.80); line-height:1.5; }
    .aff-qa{ display:flex; flex-direction:column; gap:12px; }
    .aq{
      border-radius:18px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.62);
      padding:12px;
    }
    .aq-q{ font-weight:980; }
    .aq-a{ margin-top:6px; color:rgba(27,36,48,.68); line-height:1.7; font-weight:740; }
    .aff-bottom{ margin-top:14px; }

    .footer{
      background: #0f172a;
      color: rgba(255,255,255,.90);
      border-top:1px solid rgba(255,255,255,.10);
      padding:34px 0 18px;
      margin-top:10px;
    }
    .footer-inner{ }
    .footer-top{
      display:grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap:18px;
      align-items:start;
    }
    .footer-brand img{ width:160px; height:auto; }
    .footer-desc{ margin-top:10px; color:rgba(255,255,255,.72); line-height:1.7; font-weight:700; max-width:420px; }
    .footer-title{ font-weight:1000; letter-spacing:-.2px; margin-bottom:10px; }
    .friend-links, .footer-links{
      display:flex; flex-direction:column; gap:10px;
    }
    .friend-links a, .footer-links a{
      color: rgba(255,255,255,.78);
      text-decoration:none;
      font-weight:780;
      transition: color .2s var(--ease), transform .18s var(--ease);
      width:fit-content;
    }
    .friend-links a:hover, .footer-links a:hover{ color:#fff; text-decoration:underline; text-underline-offset:4px; }
    .footer-mini{ margin-top:12px; }
    .ai-page-home-link{
      display:inline-flex; align-items:center; justify-content:center;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.06);
      color:#fff;
      text-decoration:none;
      font-weight:950;
    }
    .ai-page-home-link:hover{ background: rgba(255,255,255,.10); }
    .footer-bottom{
      margin-top:18px;
      padding-top:16px;
      border-top:1px solid rgba(255,255,255,.10);
      display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap;
      color:rgba(255,255,255,.72);
      font-weight:720;
      font-size:13px;
    }
    .footer-mail{ color:#fff; text-decoration:none; font-weight:900; }
    .footer-mail:hover{ text-decoration:underline; text-underline-offset:4px; }

    .float-actions{
      position:fixed; right:14px; bottom:16px;
      z-index:80;
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-end;
    }
    .float-btn{
      border:none;
      padding:12px 14px;
      border-radius:18px;
      background: linear-gradient(135deg, var(--brand1), #3c87ff);
      color:#fff;
      font-weight:1000;
      box-shadow: 0 20px 60px rgba(109,94,252,.35);
      cursor:pointer;
      display:flex; align-items:center; gap:10px;
      transition: transform .18s var(--ease), box-shadow .25s var(--ease);
    }
    .float-btn:hover{ transform: translateY(-2px); box-shadow: 0 26px 70px rgba(109,94,252,.42); }
    .float-ico{ width:34px; height:34px; border-radius:14px; background: rgba(255,255,255,.16); display:flex; align-items:center; justify-content:center; border:1px solid rgba(255,255,255,.20); }
    .float-txt{ font-size:14px; }
    .float-top{
      width:44px; height:44px; border-radius:16px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.75);
      box-shadow: 0 18px 50px rgba(17,24,39,.12);
      text-decoration:none; display:flex; align-items:center; justify-content:center;
      color:rgba(27,36,48,.85);
      font-weight:1000;
      transition: transform .18s var(--ease), box-shadow .25s var(--ease);
    }
    .float-top:hover{ transform: translateY(-2px); box-shadow: var(--shadow2); }

    .to-top{
      display:none;
    }

    .modal-backdrop{
      position:fixed; inset:0;
      background: rgba(2,6,23,.56);
      backdrop-filter: blur(8px);
      display:none;
      align-items:center; justify-content:center;
      z-index:120;
      padding:18px;
    }
    .modal-backdrop.show{ display:flex; }
    .modal{
      width:min(520px, 100%);
      border-radius:24px;
      background: rgba(255,255,255,.92);
      border:1px solid rgba(255,255,255,.22);
      box-shadow: 0 30px 120px rgba(0,0,0,.30);
      overflow:hidden;
    }
    .modal-head{
      padding:14px 16px;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      border-bottom:1px solid rgba(27,36,48,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.78));
    }
    .modal-title{ font-weight:1000; letter-spacing:-.3px; }
    .modal-close{
      width:40px; height:40px; border-radius:16px;
      border:1px solid rgba(27,36,48,.12);
      background: rgba(255,255,255,.75);
      cursor:pointer;
      font-size:18px; font-weight:1000;
    }
    .modal-close:focus{ outline:3px solid var(--focus); outline-offset:2px; }
    .modal-body{ padding:16px; }
    .modal-qr{
      width:100%;
      max-width:340px;
      height:auto;
      border-radius:22px;
      border:1px solid rgba(27,36,48,.10);
      background: rgba(255,255,255,.70);
      display:block; margin:0 auto;
    }
    .modal-desc{ margin-top:10px; color:rgba(27,36,48,.70); line-height:1.7; font-weight:760; text-align:center; }
    .modal-actions{ margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; justify-content:center; }

    .scroll-reveal{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .6s var(--ease), transform .6s var(--ease);
    }
    .scroll-reveal.is-visible{
      opacity:1;
      transform: translateY(0);
    }

    @media (max-width: 1040px){
      .nav{ gap:12px; }
      .service-cards{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .feature-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .case-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .process-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
      .hero-grid{ grid-template-columns: 1fr; }
      .hero-panel{ order:2; }
      .hero-copy{ order:1; }
      .rating-row{ grid-template-columns: 1fr; }
      .intake-grid{ grid-template-columns: 1fr; }
      .token-grid{ grid-template-columns: 1fr; }
      .training-grid{ grid-template-columns: 1fr; }
      .articles-grid{ grid-template-columns: 1fr; }
      .wiki-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .help-grid{ grid-template-columns: 1fr; }
      .review-grid{ grid-template-columns: 1fr; }
      .contact-grid{ grid-template-columns: 1fr; }
      .aff-grid{ grid-template-columns: 1fr; }
      .footer-top{ grid-template-columns: 1fr; }
      .nav-actions{ min-width:auto; }
      .ai-page-logo{ width:148px; }
      .hero-title{ font-size:34px; }
    }
    @media (max-width: 760px){
      .container{ width: calc(100% - 24px); }
      .nav-toggle{ display:flex; }
      .nav{ display:none; }
      .nav-actions{ display:none; }
      .hero-meta{ grid-template-columns: 1fr; }
      .service-cards{ grid-template-columns: 1fr; }
      .feature-grid{ grid-template-columns: 1fr; }
      .workflow{ grid-template-columns: 1fr; }
      .callout-grid{ grid-template-columns: 1fr; }
      .grid-2-1{ grid-template-columns: 1fr; }
      .network-grid{ grid-template-columns: 1fr; }
      .process-grid{ grid-template-columns: 1fr; }
      .case-grid{ grid-template-columns: 1fr; }
      .faq-grid{ grid-template-columns: 1fr; }
      .review-grid{ grid-template-columns: 1fr; }
      .wiki-grid{ grid-template-columns: 1fr; }
      .intake-grid{ grid-template-columns: 1fr; }
      .form-row{ grid-template-columns: 1fr; }
      .qr-wrap{ flex-direction:column; align-items:flex-start; }
      .contact-media-row{ grid-template-columns: 1fr; }
      .media-imgs img{ width: calc(50% - 5px); min-width: 120px; }
      .float-actions{ right:10px; bottom:12px; }
    }

    .mobile-nav-open .nav{
      display:flex !important;
      flex-direction:column;
      gap:10px;
      position:absolute;
      left:12px; right:12px;
      top:72px;
      background: rgba(255,255,255,.92);
      border:1px solid rgba(27,36,48,.10);
      border-radius:20px;
      padding:12px;
      box-shadow: 0 24px 70px rgba(17,24,39,.12);
      z-index:60;
      max-height:70vh;
      overflow:auto;
    }
    .mobile-nav-open .nav-link{ padding:10px 10px; border-radius:14px; background: rgba(255,255,255,.62); border:1px solid rgba(27,36,48,.08); }