:root{
      --bg:#070812;
      --bg2:#0b0c1a;
      --card:#0f1126;
      --card2:#121437;
      --text:#0f1222;
      --muted:#5b6076;
      --line:rgba(255,255,255,.10);
      --shadow: 0 14px 40px rgba(0,0,0,.25);
      --shadow-soft: 0 10px 28px rgba(15, 18, 34, .14);
      --brand1:#ff3df1;
      --brand2:#7c4dff;
      --brand3:#22d3ee;
      --brand4:#ff4d7d;
      --white:#ffffff;
      --black:#0b0b12;
      --radius:18px;
      --radius2:22px;
      --container: 1160px;
    }

    *{ 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 CJK SC", "Noto Sans SC", "Helvetica Neue", sans-serif;
      background:
        radial-gradient(1100px 540px at 20% -10%, rgba(124,77,255,.35), transparent 60%),
        radial-gradient(900px 520px at 85% 0%, rgba(255,61,241,.30), transparent 60%),
        radial-gradient(900px 500px at 55% 15%, rgba(34,211,238,.16), transparent 60%),
        linear-gradient(180deg, #050611 0%, #070812 36%, #0b0c1a 100%);
      color: rgba(255,255,255,.92);
      overflow-x:hidden;
    }

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

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

    .site-header{
      position: sticky;
      top:0;
      z-index: 50;
      backdrop-filter: blur(10px);
      background: rgba(7,8,18,.62);
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .nav-wrap{
      width: min(var(--container), calc(100% - 32px));
      margin:0 auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding: 12px 0;
    }

    .brand-link{
      display:flex; align-items:center; gap:12px; text-decoration:none; color:inherit;
      min-width: 210px;
    }
    .ai-page-logo{
      width: 38px; height: auto; border-radius: 12px;
      box-shadow: 0 10px 26px rgba(0,0,0,.35);
    }
    .brand-name{
      font-weight: 820;
      letter-spacing:.2px;
      font-size: 15px;
      line-height:1.2;
    }

    .menu-btn{
      display:none;
      width:44px; height:44px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      color:#fff;
      align-items:center; justify-content:center;
      flex-direction:column;
      gap:5px;
      cursor:pointer;
      padding:0;
    }
    .menu-btn span{
      display:block; width:18px; height:2px; background: rgba(255,255,255,.92);
      border-radius: 2px;
      transition: transform .2s ease, opacity .2s ease;
    }

    .primary-nav{
      display:flex;
      gap:14px;
      align-items:center;
      flex: 1;
      justify-content:center;
      min-width: 420px;
    }
    .nav-item{
      text-decoration:none;
      color: rgba(255,255,255,.86);
      font-size: 13px;
      padding: 10px 10px;
      border-radius: 12px;
      border: 1px solid transparent;
      transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
      white-space:nowrap;
    }
    .nav-item:hover{
      background: rgba(255,255,255,.07);
      border-color: rgba(255,255,255,.10);
      transform: translateY(-1px);
      color: #fff;
    }

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

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding: 11px 14px;
      border-radius: 14px;
      text-decoration:none;
      color: #0b0b12;
      border: 1px solid transparent;
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
      font-weight: 720;
      font-size: 13px;
      line-height:1;
      white-space:nowrap;
      user-select:none;
    }
    .btn:active{ transform: translateY(1px); }

    .btn-primary{
      background: linear-gradient(135deg, rgba(255,61,241,1) 0%, rgba(124,77,255,1) 55%, rgba(34,211,238,.9) 100%);
      color:#061017;
      box-shadow: 0 14px 40px rgba(124,77,255,.30);
    }
    .btn-primary:hover{
      box-shadow: 0 16px 46px rgba(124,77,255,.42);
      transform: translateY(-1px);
    }

    .btn-ghost{
      background: rgba(255,255,255,.06);
      color: rgba(255,255,255,.92);
      border-color: rgba(255,255,255,.14);
    }
    .btn-ghost:hover{
      background: rgba(255,255,255,.10);
      border-color: rgba(255,255,255,.20);
      transform: translateY(-1px);
    }

    .btn-soft{
      background: rgba(255,61,241,.14);
      border: 1px solid rgba(255,61,241,.22);
      color: rgba(255,255,255,.95);
    }
    .btn-soft:hover{
      background: rgba(255,61,241,.20);
      border-color: rgba(255,61,241,.32);
      transform: translateY(-1px);
    }

    .btn-lg{ padding: 13px 16px; font-size: 14px; }
    .btn-icon{
      width: 26px; height: 26px;
      border-radius: 12px;
      background: rgba(255,255,255,.35);
      display:inline-flex; align-items:center; justify-content:center;
      font-weight:900;
      font-size: 13px;
    }
    .btn-arrow{ opacity:.95; }

    .nav-backdrop{
      position: fixed; inset:0;
      background: rgba(0,0,0,.55);
      opacity:0; pointer-events:none;
      transition: opacity .2s ease;
      z-index: 40;
    }
    .nav-backdrop.open{
      opacity:1; pointer-events:auto;
    }

    .hero{
      padding: 42px 0 26px;
      position: relative;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:-60px -120px auto -120px;
      height: 520px;
      background:
        radial-gradient(520px 220px at 20% 12%, rgba(255,61,241,.22), transparent 62%),
        radial-gradient(460px 220px at 85% 22%, rgba(124,77,255,.22), transparent 62%),
        linear-gradient(180deg, rgba(255,255,255,.05), transparent 60%);
      pointer-events:none;
      filter: blur(0px);
    }

    .hero-grid{
      display:grid;
      grid-template-columns: 1.12fr .88fr;
      gap: 28px;
      align-items: start;
    }
    .hero-copy{
      padding-top: 8px;
    }
    .hero-pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      color: rgba(255,255,255,.90);
      font-size: 13px;
      box-shadow: 0 18px 50px rgba(0,0,0,.20);
    }
    .hero-pill .dot{
      width:10px; height:10px; border-radius: 50%;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow: 0 0 0 4px rgba(255,61,241,.12);
    }

    .hero-title{
      margin: 16px 0 10px;
      font-size: clamp(26px, 3.4vw, 42px);
      line-height: 1.08;
      letter-spacing: -0.5px;
      font-weight: 900;
      color:#fff;
      text-shadow: 0 10px 30px rgba(0,0,0,.30);
    }

    .hero-sub{
      margin: 0;
      color: rgba(255,255,255,.84);
      font-size: 15px;
      line-height: 1.7;
      max-width: 62ch;
    }

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

    .hero-mini{
      display:flex;
      gap: 12px;
      margin-top: 20px;
      flex-wrap: wrap;
    }
    .mini-card{
      flex: 1;
      min-width: 240px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      padding: 14px 14px;
      box-shadow: 0 18px 55px rgba(0,0,0,.18);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
      outline:none;
    }
    .mini-card:hover{
      transform: translateY(-2px);
      border-color: rgba(255,255,255,.22);
      background: rgba(255,255,255,.08);
    }
    .mini-top{ display:flex; gap:10px; align-items:center; }
    .mini-icon{
      width: 30px; height: 30px; border-radius: 14px;
      background: rgba(255,61,241,.14);
      border: 1px solid rgba(255,61,241,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight: 900;
    }
    .mini-label{ font-size: 13px; color: rgba(255,255,255,.92); font-weight: 760; }
    .mini-value{ margin-top:10px; font-size: 16px; font-weight: 900; color:#fff; }
    .mini-desc{ margin-top:6px; color: rgba(255,255,255,.78); font-size: 13px; line-height:1.5; }

    .hero-right{
      padding-top: 10px;
      display:flex;
      flex-direction: column;
      gap: 12px;
      align-items: stretch;
    }

    .tech-panel{
      border-radius: var(--radius2);
      border: 1px solid rgba(255,255,255,.12);
      background:
        radial-gradient(900px 320px at 15% 10%, rgba(255,61,241,.16), transparent 55%),
        radial-gradient(800px 320px at 85% 20%, rgba(124,77,255,.18), transparent 55%),
        rgba(255,255,255,.05);
      box-shadow: var(--shadow);
      padding: 16px;
      overflow:hidden;
    }

    .tech-panel-head{
      display:flex;
      justify-content: space-between;
      align-items:flex-start;
      gap: 12px;
    }
    .chip{
      font-size: 12px;
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      color: rgba(255,255,255,.9);
      font-weight: 740;
      white-space:nowrap;
    }
    .status{
      display:flex; gap:8px; align-items:center;
      color: rgba(255,255,255,.84);
      font-size: 12px;
      white-space:nowrap;
    }
    .pulse{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--brand3), var(--brand1));
      box-shadow: 0 0 0 0 rgba(34,211,238,.35);
      animation: pulse 1.8s ease-in-out infinite;
    }
    @keyframes pulse{
      0%{ box-shadow: 0 0 0 0 rgba(34,211,238,.35); }
      60%{ box-shadow: 0 0 0 10px rgba(34,211,238,.0); }
      100%{ box-shadow: 0 0 0 0 rgba(34,211,238,.0); }
    }

    .metrics{
      display:grid;
      grid-template-columns: 1fr;
      gap: 10px;
      margin-top: 14px;
    }
    .metric{
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(0,0,0,.14);
      padding: 12px 12px;
      transition: transform .2s ease, border-color .2s ease;
    }
    .metric:hover{
      transform: translateY(-2px);
      border-color: rgba(255,255,255,.20);
    }
    .metric-value{ font-weight: 920; letter-spacing:.2px; font-size: 18px; }
    .metric-label{ margin-top: 6px; color: rgba(255,255,255,.78); font-size: 12.5px; line-height:1.4; }

    .divider{
      height:1px; background: rgba(255,255,255,.10);
      margin: 14px 0;
    }

    .scene-list{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px 12px;
      padding: 4px 0;
    }
    .scene{
      display:flex; gap:10px; align-items:center;
      color: rgba(255,255,255,.88);
      font-size: 13px;
      padding: 8px 10px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
    }
    .scene-ic{
      width: 24px; height: 24px; border-radius: 12px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(124,77,255,.18);
      border: 1px solid rgba(124,77,255,.22);
      font-size: 12px;
      flex: 0 0 auto;
    }

    .panel-actions{
      display:flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 14px;
    }
    .link-chip{
      text-decoration:none;
      color: rgba(255,255,255,.92);
      font-size: 13px;
      padding: 9px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }
    .link-chip:hover{
      transform: translateY(-1px);
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.18);
    }

    .soft-note{
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      padding: 12px 14px;
      color: rgba(255,255,255,.84);
      box-shadow: 0 18px 50px rgba(0,0,0,.16);
      display:flex; gap:10px; align-items:flex-start;
      font-size: 13px;
      line-height:1.6;
    }
    .soft-note-badge{
      padding: 6px 10px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(255,61,241,.25), rgba(124,77,255,.18));
      border: 1px solid rgba(255,61,241,.20);
      color: rgba(255,255,255,.92);
      font-weight: 800;
      white-space:nowrap;
    }

    .section{
      padding: 58px 0;
    }
    .section-light{
      background:
        radial-gradient(900px 420px at 10% 0%, rgba(124,77,255,.10), transparent 60%),
        radial-gradient(840px 420px at 95% 10%, rgba(255,61,241,.10), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.96) 100%);
      color: #0b0b12;
    }
    .section-light .h2, .section-light .lead{ color:#0b0b12; }
    .section-light .muted{ color: rgba(15,18,34,.62); }
    .section-dark{
      background:
        radial-gradient(900px 420px at 10% 0%, rgba(255,61,241,.16), transparent 60%),
        radial-gradient(840px 420px at 95% 10%, rgba(124,77,255,.20), transparent 60%),
        linear-gradient(180deg, #070812 0%, #0b0c1a 100%);
      color: rgba(255,255,255,.92);
      border-top: 1px solid rgba(255,255,255,.06);
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .light .muted{ color: rgba(255,255,255,.78); }

    .section-head{
      display:flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 18px;
    }
    .section-head.light{ color:#fff; }
    .h2{
      font-size: clamp(20px, 2.2vw, 28px);
      margin:0;
      font-weight: 920;
      letter-spacing: -0.3px;
      color: #0b0b12;
    }
    .lead{
      margin:0;
      color: rgba(11,11,18,.64);
      font-size: 15px;
      line-height: 1.7;
      max-width: 72ch;
    }
    .section-dark .lead{ color: rgba(255,255,255,.78); }

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 18px;
    }
    .grid-2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items: start;
    }

    .card{
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      padding: 16px;
      box-shadow: 0 18px 55px rgba(0,0,0,.12);
      transition: transform .22s ease, border-color .22s ease, background .22s ease;
    }
    .section-light .card{
      background: rgba(255,255,255,.78);
      border-color: rgba(15,18,34,.10);
      box-shadow: var(--shadow-soft);
    }
    .card:hover{
      transform: translateY(-3px);
      border-color: rgba(255,255,255,.20);
    }
    .section-light .card:hover{ border-color: rgba(15,18,34,.18); }

    .card-dark{
      background:
        radial-gradient(560px 220px at 20% 0%, rgba(255,61,241,.14), transparent 60%),
        radial-gradient(520px 220px at 90% 10%, rgba(124,77,255,.18), transparent 60%),
        rgba(255,255,255,.05);
      border-color: rgba(255,255,255,.12);
      color: rgba(255,255,255,.92);
    }

    .card-outline{
      background: rgba(255,255,255,.04);
      border-color: rgba(255,255,255,.12);
    }
    .section-light .card-outline{
      background: rgba(15,18,34,.02);
      border-color: rgba(15,18,34,.10);
      color:#0b0b12;
    }

    .card-title{
      font-weight: 880;
      font-size: 15px;
      margin-bottom: 10px;
      color: inherit;
    }
    .card-body{
      color: rgba(255,255,255,.82);
      line-height: 1.7;
      font-size: 13.5px;
    }
    .section-light .card-body{ color: rgba(11,11,18,.68); }

    .bullets{
      list-style:none;
      padding:0;
      margin: 12px 0 0;
      display:flex; flex-direction:column; gap:10px;
    }
    .bullets li{
      display:flex; gap:10px; align-items:flex-start;
      color: rgba(11,11,18,.72);
      font-size: 14px;
      line-height: 1.6;
    }
    .section-dark .bullets li{ color: rgba(255,255,255,.86); }
    .check{
      width: 22px; height: 22px;
      border-radius: 11px;
      display:inline-flex; align-items:center; justify-content:center;
      background: rgba(124,77,255,.16);
      border: 1px solid rgba(124,77,255,.22);
      color: rgba(255,255,255,.95);
      flex:0 0 auto;
      font-weight: 900;
    }
    .section-light .check{ background: rgba(124,77,255,.12); border-color: rgba(124,77,255,.18); color: rgba(11,11,18,.85); }
    .two-cols{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 14px;
      margin-top: 14px;
      align-items: start;
    }

    .callout{
      background: rgba(255,255,255,.76);
      border: 1px solid rgba(15,18,34,.10);
      border-radius: var(--radius2);
      padding: 18px;
      box-shadow: var(--shadow-soft);
    }
    .callout-kicker{
      display:inline-flex;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(124,77,255,.10);
      border: 1px solid rgba(124,77,255,.16);
      color: rgba(11,11,18,.74);
      font-weight: 820;
      font-size: 12px;
    }
    .h3{
      margin: 10px 0 10px;
      font-size: 18px;
      font-weight: 900;
      letter-spacing: -0.2px;
      color:#0b0b12;
    }

    .side-cta{
      border-radius: var(--radius2);
      border: 1px solid rgba(15,18,34,.10);
      background:
        radial-gradient(700px 260px at 10% 0%, rgba(255,61,241,.10), transparent 60%),
        radial-gradient(650px 260px at 95% 20%, rgba(124,77,255,.12), transparent 62%),
        rgba(255,255,255,.78);
      box-shadow: var(--shadow-soft);
      padding: 18px;
    }
    .cta-head{ margin-bottom: 14px; }
    .cta-title{
      font-weight: 930;
      color:#0b0b12;
      font-size: 16px;
    }
    .cta-desc{ margin-top:6px; color: rgba(11,11,18,.62); font-size: 13.5px; }

    .cta-steps{
      display:flex; flex-direction:column; gap: 12px;
      margin-top: 6px;
    }
    .step-row{
      display:flex; gap:12px; align-items:flex-start;
    }
    .step-ic{
      width: 34px; height: 34px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(255,61,241,.20), rgba(124,77,255,.18));
      border: 1px solid rgba(124,77,255,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight: 950; color:#0b0b12;
      flex:0 0 auto;
    }
    .step-title{ font-weight: 920; color:#0b0b12; }
    .step-desc{ margin-top:4px; color: rgba(11,11,18,.62); font-size: 13px; line-height:1.5; }

    .cta-actions{ display:flex; gap:10px; margin-top: 14px; flex-wrap:wrap; }
    .secure-row{
      margin-top: 14px;
      padding: 12px 12px;
      border-radius: 16px;
      border: 1px dashed rgba(15,18,34,.16);
      background: rgba(255,255,255,.62);
      display:flex; gap:10px; align-items:flex-start;
      color: rgba(11,11,18,.68);
      font-size: 13px;
      line-height: 1.6;
    }
    .secure-ic{
      width: 26px; height: 26px;
      border-radius: 13px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(34,211,238,.12);
      border: 1px solid rgba(34,211,238,.18);
      color:#0b0b12;
      flex:0 0 auto;
      font-weight: 900;
    }

    .service-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 18px;
    }
    .svc-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(255,255,255,.12);
      background:
        radial-gradient(600px 220px at 20% 0%, rgba(255,61,241,.12), transparent 60%),
        rgba(255,255,255,.04);
      padding: 16px;
      transition: transform .22s ease, border-color .22s ease, background .22s ease;
      box-shadow: 0 20px 60px rgba(0,0,0,.14);
    }
    .svc-card:hover{
      transform: translateY(-3px);
      border-color: rgba(255,255,255,.22);
      background:
        radial-gradient(600px 220px at 20% 0%, rgba(255,61,241,.18), transparent 60%),
        rgba(255,255,255,.06);
    }
    .svc-top{ display:flex; align-items:center; gap:12px; }
    .svc-ic{
      width: 40px; height: 40px;
      border-radius: 18px;
      background: rgba(124,77,255,.18);
      border: 1px solid rgba(124,77,255,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight: 950;
      color: rgba(255,255,255,.95);
      flex:0 0 auto;
    }
    .svc-title{
      font-weight: 950;
      font-size: 15px;
      color: rgba(255,255,255,.96);
      letter-spacing:-0.2px;
    }
    .svc-desc{
      margin: 12px 0 12px;
      color: rgba(255,255,255,.78);
      font-size: 13.5px;
      line-height: 1.7;
      min-height: 66px;
    }
    .svc-tags{ display:flex; flex-wrap:wrap; gap: 8px; }
    .tag{
      font-size: 12px;
      padding: 7px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.05);
      color: rgba(255,255,255,.86);
    }

    .cta-strip{
      margin-top: 18px;
      border-radius: var(--radius2);
      border: 1px solid rgba(255,255,255,.12);
      background:
        radial-gradient(920px 260px at 10% 0%, rgba(255,61,241,.20), transparent 60%),
        radial-gradient(860px 260px at 95% 20%, rgba(124,77,255,.22), transparent 62%),
        rgba(255,255,255,.04);
      padding: 16px;
      display:flex;
      justify-content: space-between;
      gap: 14px;
      align-items:center;
      box-shadow: 0 24px 80px rgba(0,0,0,.16);
    }
    .cta-strip-title{ font-weight: 950; color:#fff; font-size: 16px; }
    .cta-strip-desc{ margin-top: 6px; color: rgba(255,255,255,.78); font-size: 13.5px; line-height:1.6; }

    .cta-strip-right{ display:flex; gap: 10px; flex-wrap:wrap; justify-content:flex-end; }

    .timeline{
      display:flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 16px;
    }
    .timeline-item{
      border-radius: var(--radius2);
      border: 1px solid rgba(15,18,34,.10);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow-soft);
      padding: 16px;
      display:flex;
      gap: 14px;
      align-items:flex-start;
      position: relative;
      overflow:hidden;
    }
    .timeline-item::after{
      content:"";
      position:absolute;
      inset:-40px -40px auto -40px;
      height: 90px;
      background: radial-gradient(360px 120px at 25% 0%, rgba(124,77,255,.18), transparent 60%);
      opacity:.8;
      pointer-events:none;
    }
    .timeline-dot{
      width: 14px; height: 14px; border-radius: 50%;
      margin-top: 5px;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow: 0 0 0 5px rgba(124,77,255,.12);
      flex:0 0 auto;
      position: relative;
      z-index:1;
    }
    .timeline-content{ position: relative; z-index:1; }
    .h3-sm{ margin:0; font-size: 15px; font-weight: 930; color:#0b0b12; }
    .muted{ color: rgba(11,11,18,.62); font-size: 13.5px; line-height: 1.7; margin-top: 6px; }

    .img-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(15,18,34,.10);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow-soft);
      padding: 16px;
      overflow:hidden;
    }
    .img-card-head{ margin-bottom: 12px; }
    .img-card-title{ font-weight: 950; color:#0b0b12; font-size: 15.5px; }
    .img-card-desc{ margin-top: 6px; color: rgba(11,11,18,.62); font-size: 13.5px; line-height:1.6; }
    .img-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .img-tile{
      border-radius: 18px;
      overflow:hidden;
      border: 1px solid rgba(15,18,34,.10);
      background: rgba(15,18,34,.02);
      min-height: 140px;
    }
    .img-tile img{
      width:100%;
      height:100%;
      object-fit: cover;
      display:block;
      transform: scale(1.01);
    }
    .img-card-foot{
      display:flex; gap:10px; align-items:center; justify-content:flex-start;
      margin-top: 12px;
      color: rgba(11,11,18,.70);
      font-size: 13.5px;
    }
    .link-underline{
      color: rgba(11,11,18,.78);
      text-decoration:none;
      font-weight: 760;
      border-bottom: 1px solid rgba(11,11,18,.20);
      padding-bottom: 2px;
      transition: color .18s ease, border-color .18s ease;
    }
    .link-underline:hover{
      color: rgba(124,77,255,.95);
      border-color: rgba(124,77,255,.65);
    }
    .sep{ color: rgba(11,11,18,.32); }

    .card-soft{
      border-radius: var(--radius2);
      border: 1px solid rgba(15,18,34,.10);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow-soft);
      padding: 16px;
    }
    .kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(124,77,255,.10);
      border: 1px solid rgba(124,77,255,.16);
      font-weight: 860;
      font-size: 12px;
      color: rgba(11,11,18,.72);
      margin-bottom: 8px;
    }
    .kicker.light{
      background: rgba(255,255,255,.06);
      border-color: rgba(255,255,255,.14);
      color: rgba(255,255,255,.90);
    }

    .form-summ-top .h3{
      margin: 0;
      font-size: 18px;
    }
    .form-summ-top p{
      margin: 8px 0 0;
    }

    .match-form{
      margin-top: 12px;
      display:flex;
      flex-direction: column;
      gap: 12px;
    }
    .field-row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .field-row .field:last-child{ grid-column: 2; }
    .field{
      display:flex;
      flex-direction: column;
      gap: 8px;
    }
    .label{
      font-size: 12.5px;
      color: rgba(11,11,18,.68);
      font-weight: 760;
    }
    input, select, textarea{
      width:100%;
      padding: 11px 12px;
      border-radius: 14px;
      border: 1px solid rgba(15,18,34,.12);
      background: rgba(255,255,255,.92);
      color: #0b0b12;
      font-size: 14px;
      outline: none;
      transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }
    textarea{ resize: vertical; min-height: 106px; }
    input:focus, select:focus, textarea:focus{
      border-color: rgba(124,77,255,.55);
      box-shadow: 0 0 0 4px rgba(124,77,255,.18);
    }

    .form-foot{
      display:flex;
      gap: 12px;
      align-items:center;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    .btn-submit{
      flex: 1;
      min-width: 260px;
      background: linear-gradient(135deg, rgba(255,61,241,1) 0%, rgba(124,77,255,1) 55%, rgba(34,211,238,.9) 100%);
      color:#061017;
      border:none;
    }
    .form-hint{
      display:flex; align-items:flex-start; gap:10px;
      padding: 10px 12px;
      border-radius: 16px;
      border: 1px dashed rgba(15,18,34,.18);
      background: rgba(255,255,255,.64);
      color: rgba(11,11,18,.66);
      font-size: 13px;
      line-height:1.55;
      min-width: 260px;
      flex: 1;
    }
    .hint-ic{
      width: 26px; height: 26px;
      border-radius: 13px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(124,77,255,.12);
      border: 1px solid rgba(124,77,255,.18);
      font-weight: 900;
      color:#0b0b12;
      flex:0 0 auto;
      margin-top: 2px;
    }
    .privacy-row{
      display:flex; gap:10px; align-items:center;
      color: rgba(11,11,18,.56);
      font-size: 12.5px;
      line-height:1.6;
      padding-top: 2px;
    }
    .privacy-ic{
      width: 26px; height: 26px;
      border-radius: 13px;
      border: 1px solid rgba(15,18,34,.12);
      background: rgba(255,255,255,.72);
      display:flex; align-items:center; justify-content:center;
      font-weight: 900;
      color:#0b0b12;
      flex:0 0 auto;
    }

    .process-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 18px;
    }
    .process-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(15,18,34,.10);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow-soft);
      padding: 16px;
      transition: transform .2s ease, border-color .2s ease;
      min-height: 126px;
    }
    .process-card:hover{ transform: translateY(-3px); border-color: rgba(15,18,34,.18); }
    .process-ic{
      width: 46px; height: 46px;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(255,61,241,.18), rgba(124,77,255,.18));
      border: 1px solid rgba(124,77,255,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight: 950; color:#0b0b12;
    }
    .process-title{ margin-top: 12px; font-weight: 950; color:#0b0b12; font-size: 15px; }
    .process-desc{ margin-top: 6px; color: rgba(11,11,18,.62); font-size: 13.5px; line-height:1.7; }

    .mini-sla{
      margin-top: 18px;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    .mini-sla-item{
      border-radius: var(--radius2);
      border: 1px solid rgba(15,18,34,.10);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow-soft);
      padding: 14px;
      display:flex; gap:12px;
      align-items:flex-start;
    }
    .mini-sla-ic{
      width: 36px; height: 36px;
      border-radius: 16px;
      background: rgba(34,211,238,.10);
      border: 1px solid rgba(34,211,238,.16);
      display:flex; align-items:center; justify-content:center;
      font-weight: 950; color:#0b0b12;
      flex:0 0 auto;
    }
    .mini-sla-title{ font-weight: 950; color:#0b0b12; font-size: 14px; }
    .mini-sla-desc{ margin-top: 6px; color: rgba(11,11,18,.60); font-size: 13.5px; line-height:1.6; }

    .compare-wrap{
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      box-shadow: 0 30px 90px rgba(0,0,0,.18);
      padding: 16px;
      overflow:hidden;
    }
    .compare-head{
      display:flex;
      justify-content: space-between;
      align-items:flex-start;
      gap: 12px;
      padding-bottom: 10px;
    }
    .compare-title{
      font-weight: 950;
      font-size: 16px;
      color: rgba(255,255,255,.96);
      letter-spacing:-0.2px;
    }
    .rating{
      display:flex;
      align-items:baseline;
      gap: 10px;
      color: rgba(255,255,255,.95);
      white-space:nowrap;
    }
    .stars{ letter-spacing:1px; color: rgba(255,200,70,1); font-size: 16px; }
    .score{ font-weight: 1000; font-size: 28px; }
    .outof{ color: rgba(255,255,255,.74); font-weight: 750; }

    .table-wrap{
      overflow:auto;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(0,0,0,.12);
    }
    .compare-table{
      width:100%;
      min-width: 860px;
      border-collapse: collapse;
      color: rgba(255,255,255,.92);
    }
    .compare-table thead th{
      text-align:left;
      padding: 14px 14px;
      font-size: 13px;
      background: rgba(255,255,255,.06);
      border-bottom: 1px solid rgba(255,255,255,.10);
      font-weight: 900;
    }
    .compare-table tbody th{
      width: 210px;
      padding: 14px 14px;
      border-top: 1px solid rgba(255,255,255,.08);
      font-weight: 860;
      font-size: 13px;
      text-align:left;
      background: rgba(255,255,255,.02);
    }
    .compare-table tbody td{
      padding: 14px 14px;
      border-top: 1px solid rgba(255,255,255,.08);
      font-size: 13px;
    }

    .cell-badge{
      display:inline-flex; align-items:center;
      padding: 7px 10px;
      border-radius: 999px;
      font-weight: 920;
      font-size: 12px;
      border: 1px solid transparent;
    }
    .cell-badge.ok{
      background: rgba(34,197,94,.14);
      border-color: rgba(34,197,94,.22);
      color: rgba(208,255,226,.95);
    }
    .cell-badge.warn{
      background: rgba(245,158,11,.12);
      border-color: rgba(245,158,11,.22);
      color: rgba(255,233,192,.95);
    }
    .cell-sub{
      margin-top: 8px;
      color: rgba(255,255,255,.74);
      font-size: 12.5px;
      line-height: 1.5;
    }

    .compare-foot{
      margin-top: 12px;
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 14px;
      align-items:center;
    }
    .compare-foot-title{ font-weight: 950; color:#fff; }
    .compare-foot-right{ display:flex; gap: 10px; justify-content:flex-end; flex-wrap:wrap; }

    .price-card{
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      padding: 16px;
    }
    .price-head{ margin-bottom: 12px; }
    .price-title{ font-weight: 980; color:#fff; font-size: 16px; }
    .price-sub{ margin-top: 6px; color: rgba(255,255,255,.78); font-size: 13.5px; }
    .price-list{ display:flex; flex-direction:column; gap: 12px; }
    .price-item{ display:flex; gap: 12px; align-items:flex-start; }
    .price-ic{
      width: 34px; height: 34px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(124,77,255,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight: 950;
      color: rgba(255,255,255,.95);
      flex:0 0 auto;
      margin-top: 2px;
    }
    .price-item-title{ font-weight: 950; color:#fff; }
    .price-item-desc{ margin-top: 6px; color: rgba(255,255,255,.78); font-size: 13.5px; line-height:1.6; }

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

    .mobile-media-card{
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,.12);
      background:
        radial-gradient(900px 260px at 0% 0%, rgba(34,211,238,.14), transparent 60%),
        rgba(255,255,255,.04);
      padding: 16px;
    }
    .mobile-media-head{ margin-bottom: 12px; }
    .aspect-grid{ display:flex; }
    .aspect-tile{
      width:100%;
      border-radius: 22px;
      overflow:hidden;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(0,0,0,.12);
      aspect-ratio: 1 / 1;
      position: relative;
    }
    .aspect-tile img{
      width:100%;
      height:100%;
      object-fit: cover;
      display:block;
      transform: scale(1.02);
    }
    .media-foot{
      display:flex;
      gap: 10px;
      align-items:center;
      justify-content:flex-start;
      margin-top: 12px;
      flex-wrap: wrap;
      color: rgba(255,255,255,.84);
      font-size: 13.5px;
    }
    .sepLight{ color: rgba(255,255,255,.28); }
    .link-underline.light{
      color: rgba(255,255,255,.92);
      border-bottom: 1px solid rgba(255,255,255,.25);
    }
    .link-underline.light:hover{
      border-color: rgba(34,211,238,.6);
      color: rgba(34,211,238,.95);
    }

    .training-card{
      border-radius: 24px;
      border: 1px solid rgba(15,18,34,.10);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow-soft);
      padding: 16px;
    }
    .training-title{ font-weight: 980; color:#0b0b12; font-size: 16px; }
    .training-sub{ margin-top: 6px; color: rgba(11,11,18,.62); font-size: 13.5px; }
    .training-pill-grid{
      margin-top: 14px;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .tag-soft{
      display:inline-flex;
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(15,18,34,.10);
      background: rgba(124,77,255,.08);
      color: rgba(11,11,18,.78);
      font-weight: 800;
      font-size: 12.5px;
    }
    .training-body{
      margin-top: 12px;
      color: rgba(11,11,18,.64);
      line-height:1.7;
      font-size: 13.5px;
    }
    .training-actions{ display:flex; gap:10px; margin-top: 14px; flex-wrap:wrap; }
    .training-badges{ margin-top: 14px; display:flex; gap: 12px; flex-wrap:wrap; }
    .badge-row{ display:flex; gap:10px; align-items:center; padding: 10px 12px; border-radius: 16px; border: 1px solid rgba(15,18,34,.10); background: rgba(255,255,255,.64); color: rgba(11,11,18,.66); font-weight: 850; }
    .badge-ic{
      width: 26px; height: 26px;
      border-radius: 13px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(34,211,238,.10);
      border: 1px solid rgba(34,211,238,.18);
      font-weight: 950; color:#0b0b12;
      flex:0 0 auto;
    }

    .teacher-card{
      border-radius: 24px;
      border: 1px solid rgba(15,18,34,.10);
      background:
        radial-gradient(820px 260px at 0% 0%, rgba(255,61,241,.10), transparent 60%),
        radial-gradient(740px 260px at 100% 20%, rgba(34,211,238,.08), transparent 62%),
        rgba(255,255,255,.78);
      box-shadow: var(--shadow-soft);
      padding: 16px;
    }
    .teacher-head{ margin-bottom: 12px; }
    .muted{ color: rgba(11,11,18,.62); }

    .help-quick{
      display:flex; flex-direction:column; gap: 10px;
    }
    .help-item{
      text-decoration:none;
      border-radius: 18px;
      border: 1px solid rgba(15,18,34,.10);
      background: rgba(255,255,255,.64);
      padding: 12px 12px;
      display:flex; align-items:center; justify-content:space-between;
      gap: 12px;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .help-item:hover{
      transform: translateY(-2px);
      border-color: rgba(15,18,34,.18);
      background: rgba(255,255,255,.78);
    }
    .help-ic{
      width: 36px; height: 36px;
      border-radius: 16px;
      background: rgba(124,77,255,.10);
      border: 1px solid rgba(124,77,255,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight: 950; color:#0b0b12;
      flex:0 0 auto;
    }
    .help-txt{ flex:1; }
    .help-title{ font-weight: 950; color:#0b0b12; }
    .help-desc{ margin-top: 4px; color: rgba(11,11,18,.60); font-size: 13.5px; line-height:1.5; }
    .help-go{ color: rgba(124,77,255,.95); font-weight: 1000; }

    .teacher-tip{
      margin-top: 12px;
      border-radius: 22px;
      border: 1px solid rgba(15,18,34,.10);
      background: rgba(255,255,255,.64);
      padding: 12px 12px;
    }
    .teacher-tip-title{
      font-weight: 980;
      color:#0b0b12;
      font-size: 15px;
    }
    .tip-actions{ display:flex; gap:10px; margin-top: 12px; flex-wrap:wrap; }

    .network-grid{
      display:grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 14px;
      align-items:start;
      margin-top: 18px;
    }
    .network-card{
      border-radius: 24px;
      border: 1px solid rgba(15,18,34,.10);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow-soft);
      padding: 16px;
    }
    .network-card-2{
      background:
        radial-gradient(820px 260px at 0% 0%, rgba(124,77,255,.10), transparent 60%),
        radial-gradient(740px 260px at 100% 20%, rgba(255,61,241,.08), transparent 62%),
        rgba(255,255,255,.78);
    }
    .network-title{ font-weight: 980; color:#0b0b12; font-size: 16px; }
    .network-desc{ margin-top: 6px; color: rgba(11,11,18,.62); font-size: 13.5px; line-height:1.6; }
    .network-tags{ margin-top: 14px; display:flex; gap:10px; flex-wrap:wrap; }
    .network-steps{ margin-top: 14px; display:flex; flex-direction:column; gap: 12px; }
    .network-step{ display:flex; gap:12px; align-items:flex-start; }
    .network-step-ic{
      width: 40px; height: 40px;
      border-radius: 18px;
      background: rgba(34,211,238,.10);
      border: 1px solid rgba(34,211,238,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight: 950; color:#0b0b12;
      flex:0 0 auto;
    }
    .network-step-title{ font-weight: 980; color:#0b0b12; }
    .network-step-desc{ margin-top: 6px; color: rgba(11,11,18,.62); font-size: 13.5px; line-height:1.6; }
    .network-actions{ display:flex; gap:10px; margin-top: 14px; flex-wrap:wrap; }

    .cases-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 18px;
    }
    .case-card{
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      box-shadow: 0 24px 80px rgba(0,0,0,.16);
      overflow:hidden;
      transition: transform .22s ease, border-color .22s ease;
      display:flex;
      flex-direction: column;
      min-height: 280px;
    }
    .case-card:hover{ transform: translateY(-3px); border-color: rgba(255,255,255,.22); }
    .case-media{
      height: 98px;
      border-bottom: 1px solid rgba(255,255,255,.10);
      background:
        radial-gradient(600px 220px at 15% 0%, rgba(255,61,241,.22), transparent 60%),
        rgba(0,0,0,.16);
      position: relative;
    }
    .case-media-2{
      background:
        radial-gradient(640px 220px at 20% 0%, rgba(124,77,255,.26), transparent 62%),
        rgba(0,0,0,.16);
    }
    .case-media-3{
      background:
        radial-gradient(640px 220px at 20% 0%, rgba(34,211,238,.22), transparent 62%),
        rgba(0,0,0,.16);
    }
    .case-badge{
      position:absolute;
      left: 14px; top: 14px;
      font-size: 12px;
      font-weight: 920;
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      color: rgba(255,255,255,.92);
    }
    .case-body{ padding: 16px; display:flex; flex-direction: column; gap: 10px; flex: 1; }
    .case-title{ font-weight: 980; color:#fff; font-size: 15.5px; }
    .case-desc{ color: rgba(255,255,255,.78); margin:0; line-height:1.7; font-size: 13.5px; }
    .case-meta{ display:flex; flex-wrap:wrap; gap: 8px; margin-top: 4px; }
    .meta-pill{
      font-size: 12px;
      padding: 7px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.05);
      color: rgba(255,255,255,.88);
      font-weight: 820;
    }
    .case-link{
      margin-top: auto;
      text-decoration:none;
      color: rgba(34,211,238,.95);
      font-weight: 920;
      border-bottom: 1px solid rgba(34,211,238,.45);
      padding-bottom: 3px;
      width: fit-content;
      transition: color .18s ease, border-color .18s ease;
    }
    .case-link:hover{ color: #fff; border-color: rgba(255,255,255,.55); }

    .reviews-strip{
      margin-top: 18px;
      border-radius: 26px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.03);
      padding: 16px;
    }
    .reviews-head{
      display:flex;
      justify-content: space-between;
      align-items:flex-start;
      gap: 12px;
      margin-bottom: 14px;
    }
    .review-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .review-card{
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      padding: 14px;
      box-shadow: 0 20px 60px rgba(0,0,0,.14);
      transition: transform .2s ease, border-color .2s ease;
      min-height: 170px;
    }
    .review-card:hover{ transform: translateY(-3px); border-color: rgba(255,255,255,.22); }
    .review-top{ display:flex; gap: 12px; align-items:center; }
    .avatar{
      width: 40px; height: 40px;
      border-radius: 18px;
      background: rgba(255,61,241,.16);
      border: 1px solid rgba(255,61,241,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight: 980;
      color: rgba(255,255,255,.95);
      flex:0 0 auto;
    }
    .review-title{ font-weight: 980; color:#fff; font-size: 14px; }
    .review-stars{ color: rgba(255,200,70,1); font-size: 12.5px; margin-top: 6px; letter-spacing:1px; }
    .review-text{
      margin: 12px 0 0;
      color: rgba(255,255,255,.78);
      line-height: 1.7;
      font-size: 13.5px;
    }

    .section-divider{
      height:1px;
      background: rgba(15,18,34,.10);
      margin: 20px 0;
    }

    .article-list{
      border-radius: 24px;
      border: 1px solid rgba(15,18,34,.10);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow-soft);
      padding: 16px;
    }
    .list-head{
      display:flex;
      align-items:flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }
    .article-ul{
      list-style:none;
      padding:0; margin:0;
      display:flex; flex-direction: column; gap: 10px;
    }
    .article-link{
      text-decoration:none;
      border-radius: 18px;
      border: 1px solid rgba(15,18,34,.10);
      background: rgba(255,255,255,.64);
      padding: 12px 12px;
      display:flex; flex-direction: column; gap: 6px;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .article-link:hover{
      transform: translateY(-2px);
      border-color: rgba(15,18,34,.18);
      background: rgba(255,255,255,.78);
    }
    .article-title{
      font-weight: 980;
      color:#0b0b12;
      font-size: 14.5px;
    }
    .article-meta{
      color: rgba(11,11,18,.60);
      font-size: 13.5px;
      line-height:1.5;
    }
    .list-foot{ display:flex; gap: 10px; flex-wrap:wrap; margin-top: 14px; justify-content:flex-end; }

    .side-encyclopedia{
      border-radius: 24px;
      border: 1px solid rgba(15,18,34,.10);
      background:
        radial-gradient(900px 320px at 0% 0%, rgba(124,77,255,.12), transparent 60%),
        radial-gradient(820px 320px at 100% 20%, rgba(255,61,241,.09), transparent 62%),
        rgba(255,255,255,.78);
      box-shadow: var(--shadow-soft);
      padding: 16px;
    }
    .ency-head{ margin-bottom: 12px; }
    .tag-cloud{
      display:flex; flex-wrap:wrap; gap: 10px;
      margin-top: 10px;
    }
    .cloud-tag{
      text-decoration:none;
      padding: 9px 12px;
      border-radius: 999px;
      border: 1px solid rgba(15,18,34,.10);
      background: rgba(255,255,255,.64);
      color: rgba(11,11,18,.74);
      font-weight: 850;
      font-size: 13px;
      transition: transform .18s ease, border-color .18s ease, color .18s ease, background .18s ease;
    }
    .cloud-tag:hover{
      transform: translateY(-2px);
      border-color: rgba(124,77,255,.30);
      color: rgba(124,77,255,.95);
      background: rgba(255,255,255,.82);
    }

    .ency-card{
      margin-top: 14px;
      border-radius: 22px;
      border: 1px solid rgba(15,18,34,.10);
      background: rgba(255,255,255,.64);
      padding: 14px;
    }
    .ency-title{ font-weight: 980; color:#0b0b12; }
    .ency-desc{ margin-top: 8px; color: rgba(11,11,18,.62); line-height:1.7; font-size: 13.5px; }
    .ency-quick{
      margin-top: 12px;
      display:flex; flex-direction: column; gap: 10px;
    }
    .ency-item{
      text-decoration:none;
      border-radius: 18px;
      border: 1px solid rgba(15,18,34,.10);
      background: rgba(255,255,255,.78);
      padding: 12px 12px;
      display:flex; align-items:center; justify-content: space-between;
      gap: 10px;
      transition: transform .2s ease, border-color .2s ease;
    }
    .ency-item:hover{ transform: translateY(-2px); border-color: rgba(15,18,34,.18); }
    .ency-ic{
      width: 36px; height: 36px;
      border-radius: 16px;
      background: rgba(34,211,238,.10);
      border: 1px solid rgba(34,211,238,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight: 950; color:#0b0b12;
      flex:0 0 auto;
    }
    .ency-go{ color: rgba(124,77,255,.95); font-weight: 1000; }

    .faq-wrap{
      display:grid;
      grid-template-columns: 1fr;
      gap: 14px;
      margin-top: 18px;
    }
    .faq-wrap .faq-col{
      display:grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .faq-wrap{
      grid-template-columns: 1fr 1fr;
      align-items:start;
    }

    .faq-item{
      width:100%;
      text-align:left;
      border-radius: 20px;
      border: 1px solid rgba(15,18,34,.10);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow-soft);
      padding: 14px 14px;
      color:#0b0b12;
      font-weight: 900;
      cursor:pointer;
      display:flex; align-items:center; justify-content: space-between;
      gap: 12px;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .faq-item:hover{ transform: translateY(-2px); border-color: rgba(15,18,34,.18); background: rgba(255,255,255,.88); }
    .faq-q{ font-size: 14.5px; line-height:1.5; }
    .faq-ic{
      width: 36px; height: 36px;
      border-radius: 16px;
      background: rgba(124,77,255,.12);
      border: 1px solid rgba(124,77,255,.18);
      display:flex; align-items:center; justify-content:center;
      font-size: 18px;
      flex:0 0 auto;
    }
    .faq-a{
      padding: 10px 14px 0;
      color: rgba(11,11,18,.68);
      background: rgba(255,255,255,.72);
      border-radius: 20px;
      border: 1px solid rgba(15,18,34,.10);
      box-shadow: var(--shadow-soft);
      margin-top: -8px;
      margin-bottom: 2px;
      line-height: 1.75;
      font-size: 13.5px;
    }

    .faq-foot{
      margin-top: 18px;
      border-radius: 24px;
      border: 1px solid rgba(15,18,34,.10);
      background:
        radial-gradient(900px 320px at 0% 0%, rgba(124,77,255,.12), transparent 60%),
        radial-gradient(820px 320px at 100% 20%, rgba(255,61,241,.09), transparent 62%),
        rgba(255,255,255,.78);
      box-shadow: var(--shadow-soft);
      padding: 16px;
      display:flex;
      justify-content: space-between;
      gap: 12px;
      align-items:center;
      flex-wrap: wrap;
    }
    .faq-foot-title{ font-weight: 980; color:#0b0b12; font-size: 16px; }
    .faq-foot-right{ display:flex; gap: 10px; flex-wrap:wrap; }

    .join-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 14px;
      margin-top: 18px;
      align-items:start;
    }
    .join-card{
      border-radius: 24px;
      border: 1px solid rgba(15,18,34,.10);
      background:
        radial-gradient(900px 320px at 0% 0%, rgba(255,61,241,.12), transparent 60%),
        radial-gradient(820px 320px at 100% 20%, rgba(124,77,255,.10), transparent 62%),
        rgba(255,255,255,.78);
      box-shadow: var(--shadow-soft);
      padding: 16px;
    }
    .join-title{ font-weight: 980; color:#0b0b12; font-size: 16px; }
    .join-desc{ margin-top: 8px; color: rgba(11,11,18,.64); line-height:1.7; font-size: 13.5px; }
    .bullets-2{ margin-top: 12px; }
    .join-actions{ display:flex; gap: 10px; flex-wrap:wrap; margin-top: 14px; }

    .join-side{
      border-radius: 24px;
      border: 1px solid rgba(15,18,34,.10);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow-soft);
      padding: 16px;
    }
    .join-side-head{ margin-bottom: 12px; }
    .join-list{ display:flex; flex-direction: column; gap: 12px; }
    .join-person{
      display:flex; gap: 12px; align-items:flex-start;
      padding: 12px;
      border-radius: 22px;
      border: 1px solid rgba(15,18,34,.10);
      background: rgba(255,255,255,.64);
    }
    .join-person-ic{
      width: 42px; height: 42px;
      border-radius: 18px;
      background: rgba(124,77,255,.10);
      border: 1px solid rgba(124,77,255,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight: 980; color:#0b0b12;
      flex:0 0 auto;
    }
    .join-person-title{ font-weight: 980; color:#0b0b12; }
    .join-person-desc{ margin-top: 6px; color: rgba(11,11,18,.62); font-size: 13.5px; line-height:1.6; }
    .join-side-foot{
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px dashed rgba(15,18,34,.18);
      display:flex; flex-direction: column; gap: 10px;
    }

    .contact-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 14px;
      margin-top: 18px;
      align-items:start;
    }
    .contact-card{
      border-radius: 26px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      padding: 16px;
      box-shadow: 0 30px 90px rgba(0,0,0,.18);
    }
    .contact-head{ margin-bottom: 12px; }
    .contact-title{ font-weight: 980; color:#fff; font-size: 16px; margin-top: 6px; }
    .contact-desc{ margin-top: 6px; color: rgba(255,255,255,.78); font-size: 13.5px; line-height: 1.6; }

    .contact-methods{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 12px;
    }
    .contact-method{
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(0,0,0,.14);
      padding: 12px;
      display:flex; gap:12px; align-items:flex-start;
      min-height: 92px;
    }
    .contact-ic{
      width: 40px; height: 40px;
      border-radius: 18px;
      background: rgba(255,61,241,.16);
      border: 1px solid rgba(255,61,241,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight: 980;
      color: rgba(255,255,255,.95);
      flex:0 0 auto;
      margin-top: 2px;
    }
    .method-title{ font-weight: 950; color:#fff; font-size: 13.5px; }
    .method-value{ margin-top: 6px; color: rgba(255,255,255,.80); font-size: 13.5px; line-height:1.4; }

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

    .partner-network{ margin-top: 16px; }
    .friend-links{
      display:flex; flex-wrap: wrap; gap: 10px;
    }
    .friend-links a{
      text-decoration:none;
      padding: 9px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.05);
      color: rgba(255,255,255,.88);
      font-weight: 850;
      font-size: 12.5px;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .friend-links a:hover{
      transform: translateY(-2px);
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.22);
      color: rgba(255,255,255,.98);
    }

    .contact-side{
      display:flex;
      flex-direction: column;
      gap: 14px;
    }

    .qrcode-card{
      border-radius: 26px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      padding: 16px;
      box-shadow: 0 30px 90px rgba(0,0,0,.18);
    }
    .qrcode-head{ margin-bottom: 10px; }
    .qrcode-wrap{
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(0,0,0,.14);
      padding: 14px;
      display:flex; align-items:center; justify-content:center;
    }
    .qrcode-wrap img{
      width: 180px;
      max-width: 100%;
      height: auto;
      border-radius: 16px;
      display:block;
      box-shadow: 0 18px 60px rgba(0,0,0,.25);
    }
    .qrcode-foot{ margin-top: 10px; }
    .qrcode-row{
      display:flex; gap: 10px; align-items:flex-start;
      color: rgba(255,255,255,.80);
      font-size: 13.5px;
      line-height:1.6;
    }
    .qrcode-ic{
      width: 28px; height: 28px;
      border-radius: 14px;
      background: rgba(34,211,238,.12);
      border: 1px solid rgba(34,211,238,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight: 980;
      color: rgba(255,255,255,.95);
      flex:0 0 auto;
      margin-top: 2px;
    }

    .simple-form{
      border-radius: 26px;
      border: 1px solid rgba(15,18,34,.10);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow-soft);
      padding: 16px;
    }
    .simple-form-head{ margin-bottom: 10px; }
    .simple-form-title{ font-weight: 980; color:#0b0b12; font-size: 16px; margin-top: 6px; }
    .quick-form{ display:flex; flex-direction: column; gap: 12px; margin-top: 6px; }
    .btn-copied{
      box-shadow: 0 10px 24px rgba(34,211,238,.22) !important;
    }
    .quick-legal{
      display:flex; gap:10px; align-items:center;
      color: rgba(11,11,18,.58);
      font-size: 12.5px;
      margin-top: 10px;
    }

    .partner-cta{
      margin-top: 16px;
      border-radius: 26px;
      border: 1px solid rgba(255,255,255,.12);
      background:
        radial-gradient(900px 300px at 10% 0%, rgba(255,61,241,.22), transparent 62%),
        radial-gradient(860px 300px at 95% 20%, rgba(124,77,255,.25), transparent 62%),
        rgba(255,255,255,.04);
      padding: 16px;
      display:flex;
      justify-content: space-between;
      align-items:center;
      gap: 14px;
      flex-wrap: wrap;
      box-shadow: 0 34px 100px rgba(0,0,0,.18);
    }
    .partner-cta-title{
      font-weight: 980; color:#fff; font-size: 16px;
    }
    .partner-cta-right{ display:flex; gap: 10px; flex-wrap: wrap; }

    .site-footer{
      background: rgba(7,8,18,.88);
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 28px 0 14px;
    }
    .footer-wrap{
      display:flex;
      justify-content: space-between;
      align-items:flex-start;
      gap: 14px;
      flex-wrap: wrap;
      padding-bottom: 12px;
    }
    .footer-brand{
      display:flex; gap: 12px; align-items:flex-start;
    }
    .footer-logo{
      width: 34px; height:auto;
      border-radius: 12px;
      box-shadow: 0 12px 30px rgba(0,0,0,.35);
    }
    .footer-title{ font-weight: 980; color:#fff; font-size: 15px; }
    .footer-desc{ margin-top: 6px; color: rgba(255,255,255,.76); font-size: 13.5px; line-height:1.6; }
    .footer-links{
      margin-top: 12px;
      display:flex; flex-wrap:wrap; gap: 10px; align-items:center;
      color: rgba(255,255,255,.78);
      font-size: 13px;
    }
    .footer-links a{
      text-decoration:none;
      color: rgba(255,255,255,.86);
      border-bottom: 1px solid rgba(255,255,255,.18);
      padding-bottom: 2px;
      transition: border-color .18s ease, color .18s ease;
    }
    .footer-links a:hover{
      color: #fff;
      border-color: rgba(34,211,238,.60);
    }
    .footer-sep{ color: rgba(255,255,255,.30); }
    .footer-right{ display:flex; flex-direction: column; gap: 12px; align-items:flex-end; }
    .footer-cta-title{ font-weight: 980; color:#fff; font-size: 15px; }
    .footer-bottom{
      display:flex;
      justify-content: space-between;
      gap: 12px;
      align-items:center;
      flex-wrap: wrap;
      padding-top: 12px;
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .copyright{ color: rgba(255,255,255,.70); font-size: 12.5px; }
    .footer-legal-links{
      display:flex; gap: 14px; flex-wrap:wrap;
    }
    .footer-legal-links a{
      color: rgba(255,255,255,.78);
      text-decoration:none;
      font-size: 13px;
      border-bottom: 1px solid rgba(255,255,255,.14);
      padding-bottom: 2px;
      transition: color .18s ease, border-color .18s ease;
    }
    .footer-legal-links a:hover{ color:#fff; border-color: rgba(124,77,255,.60); }

    .to-top{
      position: fixed;
      right: 16px;
      bottom: 16px;
      z-index: 70;
      width: 46px; height: 46px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.08);
      color:#fff;
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      opacity:0;
      pointer-events:none;
      transform: translateY(8px);
      transition: opacity .18s ease, transform .18s ease, background .18s ease, border-color .18s ease;
      backdrop-filter: blur(10px);
    }
    .to-top.show{
      opacity:1; pointer-events:auto;
      transform: translateY(0);
    }
    .to-top:hover{
      background: rgba(255,255,255,.12);
      border-color: rgba(255,255,255,.22);
    }

    .floating-chat{
      position: fixed;
      right: 16px;
      bottom: 74px;
      z-index: 75;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.14);
      background: linear-gradient(135deg, rgba(255,61,241,.22), rgba(124,77,255,.18), rgba(34,211,238,.16));
      color:#fff;
      padding: 10px 12px;
      cursor:pointer;
      display:flex; gap:10px; align-items:center;
      box-shadow: 0 26px 80px rgba(0,0,0,.22);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      backdrop-filter: blur(10px);
    }
    .floating-chat:hover{
      transform: translateY(-2px);
      border-color: rgba(255,255,255,.22);
      background: linear-gradient(135deg, rgba(255,61,241,.28), rgba(124,77,255,.22), rgba(34,211,238,.20));
    }
    .chat-ic{
      width: 30px; height: 30px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(0,0,0,.10);
      display:flex; align-items:center; justify-content:center;
      font-weight: 950;
    }
    .chat-text{ font-weight: 950; }

    .chat-pop{
      position: fixed;
      inset: 0;
      z-index: 90;
      background: rgba(0,0,0,.55);
      backdrop-filter: blur(6px);
      display:flex;
      align-items:center;
      justify-content:center;
      padding: 16px;
      transition: opacity .18s ease;
    }
    .chat-pop.show{
      animation: popIn .18s ease both;
    }
    @keyframes popIn{
      from{ opacity:0; transform: translateY(10px); }
      to{ opacity:1; transform: translateY(0); }
    }
    .chat-pop-inner{
      width: min(520px, 100%);
      border-radius: 26px;
      border: 1px solid rgba(255,255,255,.14);
      background:
        radial-gradient(800px 260px at 10% 0%, rgba(255,61,241,.18), transparent 62%),
        radial-gradient(760px 260px at 90% 20%, rgba(124,77,255,.20), transparent 62%),
        rgba(15,18,38,.92);
      box-shadow: 0 40px 120px rgba(0,0,0,.45);
      overflow:hidden;
    }
    .chat-pop-head{
      display:flex; justify-content: space-between; align-items:center;
      padding: 14px 14px;
      border-bottom: 1px solid rgba(255,255,255,.10);
    }
    .chat-pop-title{ font-weight: 980; color:#fff; }
    .icon-btn{
      width: 42px; height: 42px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      color:#fff;
      cursor:pointer;
      transition: background .18s ease, border-color .18s ease, transform .18s ease;
    }
    .icon-btn:hover{
      background: rgba(255,255,255,.10);
      border-color: rgba(255,255,255,.22);
      transform: translateY(-1px);
    }
    .chat-pop-body{
      padding: 14px 14px 16px;
      display:flex;
      flex-direction: column;
      gap: 12px;
      align-items:center;
      text-align:center;
      color: rgba(255,255,255,.85);
    }
    .chat-pop-body img{
      width: 210px;
      max-width: 100%;
      height:auto;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.12);
    }
    .chat-pop-note{ font-size: 13.5px; line-height:1.7; }
    .chat-pop-actions{ display:flex; gap: 10px; flex-wrap:wrap; justify-content:center; }

    [data-animate="up"]{
      opacity:0;
      transform: translateY(16px);
      transition: opacity .6s ease, transform .6s ease;
    }
    [data-animate="float"]{
      opacity:0;
      transform: translateY(18px) scale(.99);
      transition: opacity .6s ease, transform .6s ease;
    }
    .in-view{
      opacity:1 !important;
      transform: translateY(0) !important;
    }

    @media (max-width: 980px){
      .primary-nav{ display:none; }
      .menu-btn{ display:flex; }
      .nav-actions{ min-width: auto; }
      .nav-actions .btn-ghost{ display:none; }
      .hero-grid{ grid-template-columns: 1fr; }
      .hero-right{ order: 2; }
      .service-grid{ grid-template-columns: repeat(2, 1fr); }
      .grid-3{ grid-template-columns: 1fr; }
      .two-cols{ grid-template-columns: 1fr; }
      .grid-2{ grid-template-columns: 1fr; }
      .process-grid{ grid-template-columns: 1fr; }
      .mini-sla{ grid-template-columns: 1fr; }
      .compare-foot{ grid-template-columns: 1fr; }
      .compare-foot-right{ justify-content:flex-start; }
      .network-grid{ grid-template-columns: 1fr; }
      .cases-grid{ grid-template-columns: 1fr; }
      .review-grid{ grid-template-columns: 1fr; }
      .contact-grid{ grid-template-columns: 1fr; }
      .contact-methods{ grid-template-columns: 1fr; }
      .faq-wrap{ grid-template-columns: 1fr; }
      .join-grid{ grid-template-columns: 1fr; }
      .footer-right{ align-items:flex-start; }
      .floating-chat{ bottom: 74px; }
      .field-row{ grid-template-columns: 1fr; }
    }

    @media (min-width: 981px){
      .primary-nav.open{ display:flex; }
    }

    #primaryNav.open{
      display:flex;
    }
    @media (max-width: 980px){
      #primaryNav{
        display:flex;
        position: fixed;
        top: 66px;
        left: 16px;
        right: 16px;
        border-radius: 22px;
        border: 1px solid rgba(255,255,255,.14);
        background:
          radial-gradient(900px 320px at 10% 0%, rgba(255,61,241,.18), transparent 62%),
          radial-gradient(760px 320px at 90% 20%, rgba(124,77,255,.20), transparent 62%),
          rgba(15,18,38,.96);
        box-shadow: 0 50px 160px rgba(0,0,0,.48);
        padding: 12px;
        flex-direction: column;
        gap: 8px;
        z-index: 60;
        transform: translateY(-8px);
        opacity:0;
        pointer-events:none;
        transition: opacity .18s ease, transform .18s ease;
      }
      #primaryNav.open{
        opacity:1;
        pointer-events:auto;
        transform: translateY(0);
      }
      .nav-item{ padding: 12px 12px; }
      .nav-actions .btn-primary{ padding: 11px 14px; }
    }