:root{
      --bg0:#070613;
      --bg1:#0a0a1d;
      --card:#0f0e25;
      --card2:#121133;
      --text:#eaf0ff;
      --muted:rgba(234,240,255,.72);
      --muted2:rgba(234,240,255,.55);
      --line:rgba(255,255,255,.10);
      --line2:rgba(255,255,255,.14);
      --pink:#ff4fd8;
      --purple:#7c4dff;
      --indigo:#3aa2ff;
      --mint:#36f6c9;
      --warn:#ffb020;
      --ok:#2fe7a7;
      --shadow: 0 14px 40px rgba(0,0,0,.45);
      --shadow2: 0 10px 30px rgba(0,0,0,.35);
      --radius:16px;
      --radius2:22px;
      --container:1120px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 450px at 18% -5%, rgba(124,77,255,.45), rgba(124,77,255,0) 60%),
        radial-gradient(700px 420px at 85% 5%, rgba(255,79,216,.28), rgba(255,79,216,0) 55%),
        radial-gradient(900px 600px at 50% 0%, rgba(58,162,255,.18), rgba(58,162,255,0) 60%),
        linear-gradient(180deg, var(--bg0), var(--bg1) 60%, #07071a 100%);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }
    .skip{
      position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip:focus{
      left:14px; top:14px; width:auto; height:auto; background:#fff; color:#000; padding:10px 12px; border-radius:10px; z-index:9999;
    }

    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter: blur(10px);
      background: linear-gradient(180deg, rgba(7,6,19,.78), rgba(7,6,19,.45));
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .nav-wrap{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:12px 0}
    .brand{display:flex; align-items:center; gap:12px; min-width:220px}
    .brand .mark{
      width:42px; height:42px; border-radius:14px;
      background:
        radial-gradient(12px 12px at 30% 30%, rgba(255,255,255,.55), rgba(255,255,255,0) 60%),
        linear-gradient(135deg, rgba(255,79,216,.95), rgba(124,77,255,.85));
      box-shadow: 0 10px 26px rgba(124,77,255,.25);
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(255,255,255,.14);
      flex:0 0 auto;
    }
    .brand .mark svg{display:block}
    .brand .text{display:flex; flex-direction:column; line-height:1.1}
    .brand .text .name{font-weight:800; letter-spacing:.2px}
    .brand .text .sub{font-size:12px; color:var(--muted2); margin-top:4px}
    .nav-links{
      display:flex; align-items:center; gap:14px; flex-wrap:nowrap;
      justify-content:flex-end;
    }
    .nav-links a.nav-item{
      font-size:13px;
      color:rgba(234,240,255,.84);
      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-links a.nav-item:hover{
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.12);
      transform: translateY(-1px);
      color:#ffffff;
    }
    .nav-cta{
      display:flex; align-items:center; gap:10px;
      margin-left:8px;
      flex:0 0 auto;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      padding:11px 14px; border-radius:14px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.06);
      color:#fff;
      font-weight:700;
      font-size:13px;
      box-shadow: 0 12px 28px rgba(0,0,0,.24);
      transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
      cursor:pointer;
      user-select:none;
    }
    .btn:hover{
      transform: translateY(-1px);
      border-color: rgba(255,255,255,.22);
      background:rgba(255,255,255,.09);
      box-shadow: 0 16px 34px rgba(0,0,0,.32);
    }
    .btn:active{transform: translateY(0px) scale(.99)}
    .btn-primary{
      border-color: rgba(255,79,216,.35);
      background: linear-gradient(135deg, rgba(255,79,216,.92), rgba(124,77,255,.88));
      box-shadow: 0 18px 46px rgba(124,77,255,.26);
    }
    .btn-primary:hover{
      border-color: rgba(255,79,216,.55);
      background: linear-gradient(135deg, rgba(255,79,216,1), rgba(124,77,255,1));
    }
    .btn-ghost{
      background:rgba(255,255,255,.04);
      border-color:rgba(255,255,255,.12);
      box-shadow:none;
    }
    .btn-small{padding:9px 12px; border-radius:12px; font-size:12.5px}
    .chip{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px; border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.05);
      color: rgba(234,240,255,.88);
      font-size:12px;
      white-space:nowrap;
    }
    .chip i{
      width:8px; height:8px; border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,0) 60%), linear-gradient(135deg, var(--pink), var(--purple));
      box-shadow: 0 0 0 4px rgba(255,79,216,.12);
      display:inline-block;
    }

    .mobile-toggle{
      display:none;
      align-items:center; justify-content:center;
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.06);
      color:#fff;
      cursor:pointer;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }
    .mobile-toggle:hover{transform: translateY(-1px); background:rgba(255,255,255,.09); border-color:rgba(255,255,255,.22)}
    .mobile-panel{
      display:none;
      border-top:1px solid rgba(255,255,255,.08);
      padding:10px 0 14px;
    }
    .mobile-panel .grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .mobile-panel a{
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.05);
      font-weight:650;
      color:rgba(234,240,255,.9);
      font-size:13px;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }
    .mobile-panel a:hover{transform: translateY(-1px); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22)}

    main{padding:26px 0 30px}
    section{padding:44px 0}
    .section-tight{padding:28px 0}
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
      margin-bottom:18px;
    }
    .kicker{
      display:flex; align-items:center; gap:10px; margin-bottom:10px;
    }
    .kicker .pulse{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--pink), var(--purple));
      box-shadow: 0 0 0 6px rgba(255,79,216,.12);
      animation: pulse 1.8s ease-in-out infinite;
    }
    @keyframes pulse{
      0%,100%{transform: scale(1); opacity:1}
      50%{transform: scale(1.25); opacity:.75}
    }
    h1{
      font-size:40px; margin:0; line-height:1.15; letter-spacing:.2px;
    }
    .lead{
      color:var(--muted);
      font-size:15px;
      line-height:1.8;
      margin:12px 0 0;
      max-width:62ch;
    }
    .hero{
      padding:26px 0 18px;
      position:relative;
    }
    .hero-grid{
      display:grid; grid-template-columns: 1.25fr .75fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-card{
      border-radius:var(--radius2);
      border:1px solid rgba(255,255,255,.12);
      background:
        radial-gradient(800px 280px at 18% 0%, rgba(255,79,216,.18), rgba(255,79,216,0) 60%),
        radial-gradient(620px 320px at 85% 15%, rgba(124,77,255,.22), rgba(124,77,255,0) 55%),
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      box-shadow: var(--shadow);
      padding:22px;
      position:relative;
      overflow:hidden;
    }
    .hero-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(420px 180px at 15% 22%, rgba(58,162,255,.18), rgba(58,162,255,0) 60%),
        radial-gradient(360px 160px at 85% 0%, rgba(255,79,216,.15), rgba(255,79,216,0) 55%);
      pointer-events:none;
      filter:saturate(1.15);
    }
    .hero-inner{position:relative; z-index:1}
    .hero-actions{
      display:flex; flex-wrap:wrap; gap:12px; margin-top:16px; align-items:center;
    }
    .hero-mini{
      display:flex; gap:10px; margin-top:14px; flex-wrap:wrap;
    }
    .hero-mini .mini{
      padding:10px 12px; border-radius:14px;
      background: rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.12);
      min-width:160px;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .hero-mini .mini:hover{
      transform: translateY(-2px);
      background: rgba(255,255,255,.06);
      border-color: rgba(255,255,255,.18);
    }
    .hero-mini .mini .t{font-weight:800; letter-spacing:.2px}
    .hero-mini .mini .d{font-size:12.5px; color:var(--muted2); margin-top:6px; line-height:1.4}
    .hero-side{
      border-radius:var(--radius2);
      border:1px solid rgba(255,255,255,.12);
      background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
      box-shadow: var(--shadow2);
      padding:18px;
      position:relative;
      overflow:hidden;
    }
    .hero-side:after{
      content:"";
      position:absolute; width:560px; height:560px;
      right:-330px; top:-360px;
      background: conic-gradient(from 180deg, rgba(255,79,216,.32), rgba(124,77,255,.35), rgba(58,162,255,.28), rgba(255,79,216,.32));
      filter: blur(24px);
      opacity:.25;
      pointer-events:none;
    }
    .side-stack{position:relative; z-index:1}
    .side-title{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom:12px;
    }
    .side-title h2{font-size:14px; margin:0; color:rgba(234,240,255,.92); letter-spacing:.2px}
    .side-title .badge{
      font-size:12px; color:rgba(234,240,255,.86);
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.05);
      padding:7px 10px; border-radius:999px;
      display:flex; align-items:center; gap:8px;
      white-space:nowrap;
    }
    .badge .dot{
      width:8px; height:8px; border-radius:50%;
      background: linear-gradient(135deg, var(--mint), var(--indigo));
      box-shadow: 0 0 0 4px rgba(54,246,201,.12);
    }
    .data-grid{
      display:grid; gap:10px;
      grid-template-columns: 1fr 1fr;
    }
    .data{
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .data:hover{
      transform: translateY(-2px);
      border-color: rgba(255,255,255,.2);
      background: rgba(255,255,255,.06);
    }
    .data .num{
      font-size:18px; font-weight:900; letter-spacing:.3px;
    }
    .data .lab{
      font-size:12.5px; color:var(--muted2); margin-top:6px; line-height:1.35
    }

    .card{
      border-radius:var(--radius);
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      box-shadow: 0 12px 34px rgba(0,0,0,.22);
    }
    .grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
    .grid-2{display:grid; grid-template-columns: repeat(2, 1fr); gap:14px}
    .grid-4{display:grid; grid-template-columns: repeat(4, 1fr); gap:12px}
    .grid-5{display:grid; grid-template-columns: repeat(5, 1fr); gap:12px}
    .card-pad{padding:18px}
    .card h3{margin:0; font-size:15px; letter-spacing:.2px}
    .card p{margin:10px 0 0; color:var(--muted); line-height:1.8; font-size:13.5px}
    .icon{
      width:42px; height:42px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      margin-bottom:12px;
    }
    .icon svg{display:block}
    .soft-list{
      margin:12px 0 0; padding:0; list-style:none;
      display:flex; flex-direction:column; gap:10px;
    }
    .soft-list li{
      display:flex; align-items:flex-start; gap:10px;
      color:rgba(234,240,255,.86);
      font-size:13.5px; line-height:1.6;
      padding:10px 10px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
    }
    .soft-list li b{font-weight:800}
    .tick{
      width:18px; height:18px; border-radius:6px;
      background: rgba(54,246,201,.14);
      border:1px solid rgba(54,246,201,.28);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto; margin-top:2px;
    }
    .tick svg{display:block}
    .steps{
      display:grid; grid-template-columns: repeat(4, 1fr); gap:12px;
    }
    .step{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.12);
      background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
      position:relative;
      overflow:hidden;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      min-height:160px;
    }
    .step:hover{
      transform: translateY(-2px);
      border-color: rgba(255,255,255,.2);
      background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
    }
    .step:before{
      content:"";
      position:absolute; inset:auto -60px -80px auto;
      width:160px; height:160px;
      background: radial-gradient(circle at 30% 30%, rgba(255,79,216,.3), rgba(255,79,216,0) 62%);
      opacity:.55;
      transform: rotate(20deg);
      pointer-events:none;
    }
    .step .top{display:flex; align-items:center; justify-content:space-between; gap:10px; position:relative}
    .step .idx{
      font-weight:950; letter-spacing:.2px;
      font-size:14px;
      color:rgba(234,240,255,.9);
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.05);
      padding:7px 10px; border-radius:999px;
    }
    .step .tag{
      font-size:12px; color:rgba(234,240,255,.82);
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.04);
      padding:7px 10px; border-radius:999px;
      white-space:nowrap;
    }
    .step h3{margin-top:12px; font-size:15px; position:relative}
    .step p{margin:10px 0 0; color:var(--muted); font-size:13.5px; line-height:1.8; position:relative}

    .table-wrap{
      overflow:auto;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.03);
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:760px;
      font-size:13.5px;
    }
    th, td{
      padding:14px 14px;
      border-bottom:1px solid rgba(255,255,255,.08);
      vertical-align:top;
    }
    th{
      text-align:left;
      color:rgba(234,240,255,.92);
      font-size:12.5px;
      letter-spacing:.18px;
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
      position:sticky; top:0; z-index:1;
      backdrop-filter: blur(10px);
    }
    tr:last-child td{border-bottom:none}
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.05);
      white-space:nowrap;
      font-weight:750;
    }
    .pill .s{
      width:8px; height:8px; border-radius:50%;
      background: linear-gradient(135deg, var(--mint), var(--indigo));
      box-shadow: 0 0 0 4px rgba(54,246,201,.12);
      display:inline-block;
    }
    .pill.warn .s{background: linear-gradient(135deg, var(--warn), #ff6a8a)}
    .pill.pink .s{background: linear-gradient(135deg, var(--pink), var(--purple))}

    .tabs{
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .tab{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      color: rgba(234,240,255,.88);
      font-weight:800;
      cursor:pointer;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
      user-select:none;
      font-size:13px;
    }
    .tab:hover{transform: translateY(-1px); background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.2)}
    .tab[aria-selected="true"]{
      background: linear-gradient(135deg, rgba(255,79,216,.28), rgba(124,77,255,.2));
      border-color: rgba(255,79,216,.35);
      box-shadow: 0 12px 34px rgba(124,77,255,.16);
    }

    .cases-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:14px;
    }
    .case{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.035);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      position:relative;
      overflow:hidden;
    }
    .case:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.05)}
    .case .row{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
    .case h3{margin:0; font-size:15px}
    .case .meta{
      display:flex; gap:8px; flex-wrap:wrap; margin-top:10px;
    }
    .case .meta .m{
      font-size:12.5px; color:rgba(234,240,255,.84);
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.04);
      padding:7px 10px; border-radius:999px;
    }
    .case p{margin:10px 0 0; color:var(--muted); line-height:1.8; font-size:13.5px}
    .case .foot{
      margin-top:12px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .case .progress{
      height:8px; border-radius:999px; background: rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.10);
      overflow:hidden; flex:1 1 auto;
    }
    .case .progress > span{
      display:block; height:100%;
      width:62%;
      background: linear-gradient(90deg, rgba(255,79,216,.95), rgba(124,77,255,.9));
      border-radius:999px;
    }

    .form-card{
      padding:18px;
      border-radius:var(--radius);
      border:1px solid rgba(255,255,255,.12);
      background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
      box-shadow: 0 16px 46px rgba(0,0,0,.26);
    }
    form .row2{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
    label{display:flex; flex-direction:column; gap:8px; font-size:12.8px; color:rgba(234,240,255,.85)}
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(10,10,29,.35);
      color:#fff;
      outline:none;
      transition: border-color .18s ease, background .18s ease, transform .18s ease;
    }
    textarea{min-height:118px; resize:vertical}
    input::placeholder, textarea::placeholder{color:rgba(234,240,255,.45)}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(255,79,216,.55);
      background: rgba(10,10,29,.55);
    }
    .form-actions{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-top:12px;
    }
    .fineprint{
      color:var(--muted2); font-size:12.5px; line-height:1.5;
      max-width:52ch;
    }

    details{
      border-radius:18px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.035);
      padding:12px 14px;
      transition: border-color .18s ease, background .18s ease, transform .18s ease;
    }
    details[open]{border-color: rgba(255,79,216,.35); background: rgba(255,255,255,.05)}
    details summary{
      list-style:none;
      cursor:pointer;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      padding:4px 0;
      outline:none;
      font-weight:900;
      letter-spacing:.2px;
    }
    details summary::-webkit-details-marker{display:none}
    .chev{
      width:30px; height:30px; border-radius:12px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.05);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition: transform .22s ease;
      margin-top:-4px;
    }
    details[open] .chev{transform: rotate(180deg)}
    .faq-grid{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
    .faq-grid details{padding:12px 14px}

    .review-grid{
      display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;
    }
    .review{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.035);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      min-height:210px;
      display:flex; flex-direction:column;
      gap:10px;
    }
    .review:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.05)}
    .review .top{display:flex; align-items:center; justify-content:space-between; gap:10px}
    .avatar{
      width:42px; height:42px; border-radius:16px;
      border:1px solid rgba(255,255,255,.14);
      background:
        radial-gradient(12px 12px at 30% 30%, rgba(255,255,255,.55), rgba(255,255,255,0) 60%),
        linear-gradient(135deg, rgba(255,79,216,.55), rgba(124,77,255,.45));
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
    }
    .stars{
      display:flex; align-items:center; gap:6px; color: rgba(255,176,32,.95); font-weight:900;
      font-size:13px;
    }
    .review .role{color:rgba(234,240,255,.92); font-weight:900}
    .review p{margin:0; color:var(--muted); line-height:1.85; font-size:13.5px}
    .review .bottom{
      margin-top:auto;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      color:var(--muted2); font-size:12.5px;
    }

    .tagcloud{
      display:flex; flex-wrap:wrap; gap:10px;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.03);
    }
    .tagcloud a{
      font-size:12.5px;
      color:rgba(234,240,255,.86);
      padding:9px 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .tagcloud a:hover{transform: translateY(-1px); background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.2)}
    .timeline{
      display:grid; grid-template-columns: 1fr 1fr; gap:14px;
    }
    .timeline .tcard{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.03);
    }
    .tcard .title{display:flex; align-items:center; justify-content:space-between; gap:12px}
    .tcard .title h3{margin:0; font-size:15px}
    .tcard .bar{
      margin-top:12px;
      height:10px; border-radius:999px;
      background: rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.10);
      overflow:hidden;
    }
    .tcard .bar span{
      display:block; height:100%;
      width:70%;
      background: linear-gradient(90deg, rgba(58,162,255,.95), rgba(255,79,216,.85));
      border-radius:999px;
    }
    .tcard p{margin:10px 0 0; color:var(--muted); line-height:1.85; font-size:13.5px}

    .press-grid{
      display:grid; grid-template-columns: 1.05fr .95fr; gap:14px;
      align-items:stretch;
    }
    .news{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.03);
    }
    .news h3{margin:0; font-size:15px}
    .news ul{list-style:none; padding:0; margin:12px 0 0; display:flex; flex-direction:column; gap:10px}
    .news li{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .news li:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.06)}
    .news li a{
      font-weight:900; color:rgba(234,240,255,.92);
      font-size:13.5px;
      line-height:1.45;
    }
    .news li .date{color:var(--muted2); font-size:12.5px; white-space:nowrap; padding-top:3px}
    .wiki-card{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.12);
      background:
        radial-gradient(480px 200px at 20% 10%, rgba(124,77,255,.22), rgba(124,77,255,0) 60%),
        rgba(255,255,255,.03);
    }
    .wiki-card h3{margin:0; font-size:15px}
    .wiki-list{
      margin:12px 0 0; padding:0; list-style:none;
      display:grid; grid-template-columns: 1fr; gap:10px;
    }
    .wiki-list a{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .wiki-list a:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.06)}
    .wiki-list .l{font-weight:900; color:rgba(234,240,255,.92); font-size:13.5px}
    .wiki-list .r{
      color:var(--muted2); font-size:12.5px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      padding:7px 10px; border-radius:999px; white-space:nowrap;
    }

    .footer{
      padding:26px 0 36px;
      border-top:1px solid rgba(255,255,255,.08);
      background: linear-gradient(180deg, rgba(7,6,19,.2), rgba(7,6,19,.55));
    }
    .footer-grid{
      display:grid; grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:start;
    }
    .footer .foot-card{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.03);
    }
    .foot-title{display:flex; align-items:center; gap:12px; margin-bottom:10px}
    .foot-title .logo{
      width:42px; height:42px; border-radius:16px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      overflow:hidden;
      display:flex; align-items:center; justify-content:center;
    }
    .foot-title .logo img{width:36px; height:auto; display:block}
    .foot-title h3{margin:0; font-size:15px}
    .footer p{margin:10px 0 0; color:var(--muted); line-height:1.85; font-size:13.5px}
    .foot-cols{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:14px;
    }
    .foot-cols .col h4{
      margin:0;
      font-size:12.8px;
      color:rgba(234,240,255,.9);
      letter-spacing:.18px;
      text-transform:none;
    }
    .foot-cols .col a, .foot-cols .col div{
      display:block;
      margin-top:10px;
      color:rgba(234,240,255,.78);
      font-size:13.5px;
    }
    .foot-cols .col a:hover{color:#fff; text-decoration:underline}
    .subfooter{
      margin-top:14px;
      color:var(--muted2);
      font-size:12.5px;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }

    .floating{
      position:fixed; right:16px; bottom:16px;
      display:flex; flex-direction:column; gap:10px;
      z-index:80;
    }
    .float-btn{
      width:50px; height:50px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      box-shadow: 0 18px 50px rgba(0,0,0,.35);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
      color:#fff;
    }
    .float-btn:hover{transform: translateY(-2px); background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.22)}
    .float-pop{
      position:absolute;
      right:60px;
      bottom:0;
      width:min(290px, calc(100vw - 110px));
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(14,12,38,.88);
      backdrop-filter: blur(10px);
      box-shadow: 0 18px 60px rgba(0,0,0,.45);
      opacity:0; transform: translateY(8px);
      pointer-events:none;
      transition: opacity .18s ease, transform .18s ease;
    }
    .float-pop.open{opacity:1; transform: translateY(0); pointer-events:auto}
    .float-pop .row{
      display:flex; gap:12px; align-items:flex-start;
    }
    .float-pop .qrcode{
      width:78px; height:78px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.05);
      overflow:hidden;
      flex:0 0 auto;
      display:flex; align-items:center; justify-content:center;
    }
    .float-pop .qrcode img{width:78px; height:auto; display:block}
    .float-pop .txt .t1{font-weight:950; font-size:13.5px}
    .float-pop .txt .t2{margin-top:6px; color:var(--muted); font-size:12.8px; line-height:1.6}
    .float-pop .links{display:flex; gap:10px; margin-top:10px; flex-wrap:wrap}
    .float-pop .links a{
      padding:9px 10px; border-radius:14px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.05);
      color:rgba(234,240,255,.92);
      font-weight:850;
      font-size:12.5px;
    }
    .float-pop .links a:hover{background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22)}

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

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      h1{font-size:34px}
      .grid-3{grid-template-columns: 1fr}
      .grid-2{grid-template-columns: 1fr}
      .grid-4{grid-template-columns: 1fr 1fr}
      .steps{grid-template-columns: 1fr 1fr}
      .faq-grid{grid-template-columns: 1fr}
      .review-grid{grid-template-columns: 1fr}
      .press-grid{grid-template-columns: 1fr}
      .timeline{grid-template-columns: 1fr}
      .cases-grid{grid-template-columns: 1fr}
      .footer-grid{grid-template-columns: 1fr}
      .nav-links{display:none}
      .mobile-toggle{display:flex}
      .mobile-panel{display:none}
      .mobile-panel.open{display:block}
      .hero-mini .mini{min-width:unset; flex:1 1 180px}
      .form-card .row2{grid-template-columns: 1fr}
    }