:root{
      --bg0:#07060b;
      --bg1:#0b0720;
      --card:#10102a;
      --card2:#0f1730;
      --text:#e9e7ff;
      --muted:#b6b3d6;
      --muted2:#8d8ab7;
      --line:rgba(255,255,255,.10);
      --line2:rgba(255,255,255,.16);
      --brand1:#ff3fd6;
      --brand2:#8a5bff;
      --brand3:#26d3ff;
      --ok:#2fe7a3;
      --warn:#ffcc66;
      --shadow: 0 18px 50px rgba(0,0,0,.45);
      --shadow2: 0 10px 30px rgba(0,0,0,.35);
      --radius:18px;
      --radius2:14px;
      --radius3:12px;
      --container: 1120px;
      --focus: 0 0 0 4px rgba(138,91,255,.25), 0 0 0 1px rgba(255,255,255,.18) inset;
    }

    *{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", sans-serif;
      color:var(--text);
      background:
        radial-gradient(1000px 500px at 15% 5%, rgba(255,63,214,.18), transparent 55%),
        radial-gradient(900px 500px at 85% 15%, rgba(138,91,255,.18), transparent 55%),
        radial-gradient(700px 420px at 55% 0%, rgba(38,211,255,.10), transparent 45%),
        linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 55%, #070717 100%);
      overflow-x:hidden;
    }

    a{color:inherit; text-decoration:none}
    a:hover{opacity:.95}
    button, input, select, textarea{font:inherit}

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

    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background: linear-gradient(180deg, rgba(7,6,11,.75) 0%, rgba(7,6,11,.35) 100%);
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .topbar-inner{
      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;
    }
    .logo{
      width:44px;
      height:44px;
      border-radius:12px;
      background:
        radial-gradient(16px 16px at 30% 25%, rgba(255,255,255,.30), transparent 60%),
        linear-gradient(135deg, rgba(255,63,214,.9), rgba(138,91,255,.9) 55%, rgba(38,211,255,.65));
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow: 0 10px 35px rgba(255,63,214,.18);
      border:1px solid rgba(255,255,255,.16);
      overflow:hidden;
    }
    .logo img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
      filter:saturate(1.05) contrast(1.02);
    }
    .brand-title{
      display:flex;
      flex-direction:column;
      line-height:1.15;
    }
    .brand-title strong{
      font-size:14px;
      letter-spacing:.2px;
    }
    .brand-title span{
      font-size:12px;
      color:var(--muted);
    }

    .nav{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:10px;
      flex-wrap:wrap;
    }
    .nav a{
      padding:8px 10px;
      border-radius:10px;
      color:rgba(233,231,255,.92);
      border:1px solid transparent;
      white-space:nowrap;
      font-size:13px;
    }
    .nav a:hover{
      border-color: rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
    }

    .nav-cta{
      display:flex;
      align-items:center;
      gap:10px;
      margin-left:8px;
    }
    .btn{
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      color: var(--text);
      padding:10px 14px;
      border-radius:12px;
      cursor:pointer;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, opacity .18s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:hover{
      transform: translateY(-1px);
      border-color: rgba(255,255,255,.22);
      background: rgba(255,255,255,.10);
      box-shadow: 0 14px 40px rgba(0,0,0,.25);
    }
    .btn:active{transform: translateY(0px)}
    .btn:focus-visible{outline:none; box-shadow: var(--focus)}
    .btn-primary{
      border-color: rgba(255,63,214,.45);
      background: linear-gradient(135deg, rgba(255,63,214,.25), rgba(138,91,255,.22) 55%, rgba(38,211,255,.14));
      box-shadow: 0 18px 60px rgba(138,91,255,.15);
    }
    .btn-primary .spark{
      width:9px; height:9px; border-radius:3px;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow: 0 0 0 3px rgba(255,63,214,.14);
      animation: pulse 2.4s ease-in-out infinite;
    }
    @keyframes pulse{
      0%,100%{transform:scale(1); opacity:.9}
      50%{transform:scale(1.25); opacity:1}
    }

    .hamburger{
      display:none;
      width:42px; height:42px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      cursor:pointer;
      align-items:center;
      justify-content:center;
    }
    .hamburger:focus-visible{outline:none; box-shadow: var(--focus)}
    .hamburger svg{opacity:.95}
    .mobile-panel{
      display:none;
      padding:10px 0 16px 0;
    }
    .mobile-panel .nav{
      justify-content:flex-start;
      gap:8px;
    }

    .hero{
      position:relative;
      padding:44px 0 18px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:18px;
      align-items:stretch;
    }

    .hero-left{
      position:relative;
      border-radius: calc(var(--radius) + 6px);
      border:1px solid rgba(255,255,255,.10);
      background:
        radial-gradient(700px 360px at 20% 15%, rgba(255,63,214,.22), transparent 55%),
        radial-gradient(560px 360px at 85% 0%, rgba(138,91,255,.20), transparent 55%),
        radial-gradient(420px 280px at 70% 75%, rgba(38,211,255,.12), transparent 45%),
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .hero-left:before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        linear-gradient(90deg, rgba(255,63,214,.30), rgba(138,91,255,.26), rgba(38,211,255,.22));
      opacity:.18;
      filter: blur(10px);
      pointer-events:none;
    }
    .hero-left-inner{
      position:relative;
      padding:26px 26px 22px;
      min-height: 360px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:16px;
    }

    .badge-row{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }
    .badge{
      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,.06);
      color: rgba(233,231,255,.96);
      font-size:12.5px;
    }
    .badge i{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow: 0 0 0 3px rgba(255,63,214,.14);
    }

    h1{
      margin:10px 0 0;
      font-size: 34px;
      letter-spacing: -0.6px;
      line-height:1.1;
    }
    .hero-sub{
      color: var(--muted);
      font-size:14.5px;
      line-height:1.7;
      margin:10px 0 0;
      max-width: 62ch;
    }

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

    .link-soft{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.04);
      color: rgba(233,231,255,.96);
    }
    .link-soft:hover{
      background: rgba(255,255,255,.08);
      transform: translateY(-1px);
      transition: transform .18s ease, background .18s ease;
    }
    .link-soft small{color:var(--muted); font-size:12.5px}
    .arrow{
      width:26px; height:26px;
      border-radius:9px;
      display:flex;
      align-items:center;
      justify-content:center;
      background: rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.12);
    }

    .hero-right{
      display:flex;
      flex-direction:column;
      gap:12px;
    }

    .glass-card{
      border:1px solid rgba(255,255,255,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      border-radius: var(--radius);
      box-shadow: var(--shadow2);
      overflow:hidden;
    }

    .score-card{
      padding:16px 16px 14px;
      position:relative;
    }
    .score-card:after{
      content:"";
      position:absolute;
      inset:auto -40px -60px -40px;
      height:160px;
      background: radial-gradient(closest-side, rgba(255,63,214,.25), transparent 65%);
      transform: rotate(-9deg);
      pointer-events:none;
      opacity:.9;
    }
    .score-top{
      position:relative;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }
    .score-top h2{
      margin:0;
      font-size:14px;
      font-weight:650;
      color: rgba(233,231,255,.95);
      letter-spacing:.2px;
    }
    .stars{
      display:flex; gap:4px; align-items:center;
      color: var(--warn);
      font-size:14px;
    }
    .score-main{
      position:relative;
      margin-top:10px;
      display:flex;
      align-items:flex-end;
      gap:10px;
    }
    .score-main strong{
      font-size:44px;
      letter-spacing:-1px;
      line-height:1;
    }
    .score-main span{
      color:var(--muted);
      font-size:13px;
      padding-bottom:6px;
    }
    .score-list{
      position:relative;
      margin-top:10px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .mini-metric{
      padding:10px 10px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
    }
    .mini-metric b{
      display:block;
      font-size:13px;
      color: rgba(233,231,255,.96);
      margin-bottom:4px;
    }
    .mini-metric small{
      display:block;
      color: var(--muted);
      font-size:12.5px;
      line-height:1.4;
    }

    .steps-card{
      padding:14px 16px 16px;
    }
    .steps-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:10px;
    }
    .steps-title h3{
      margin:0;
      font-size:13.5px;
      color: rgba(233,231,255,.95);
      letter-spacing:.2px;
      font-weight:650;
    }
    .chip{
      font-size:12px;
      color: rgba(233,231,255,.92);
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.05);
      white-space:nowrap;
    }
    .step-pills{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .pill{
      flex:1 1 auto;
      min-width: 118px;
      padding:10px 12px;
      border-radius:14px;
      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;
    }
    .pill:hover{
      transform: translateY(-2px);
      border-color: rgba(255,255,255,.18);
      background: rgba(255,255,255,.07);
    }
    .pill b{
      display:flex;
      align-items:center;
      gap:10px;
      font-size:13px;
      margin-bottom:6px;
    }
    .pill b .dot{
      width:11px; height:11px;
      border-radius:50%;
      background: linear-gradient(135deg, var(--brand3), var(--brand2));
      box-shadow: 0 0 0 3px rgba(38,211,255,.16);
    }
    .pill span{
      color: var(--muted);
      font-size:12.5px;
      line-height:1.45;
    }

    .section{
      padding: 26px 0;
    }
    .section-header{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin-bottom:14px;
      flex-wrap:wrap;
    }
    .section-header h2{
      margin:0;
      font-size:20px;
      letter-spacing:-.3px;
    }
    .section-header p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.6;
      max-width: 62ch;
    }

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .grid-2{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap:12px;
    }

    .card{
      border:1px solid rgba(255,255,255,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
      border-radius: var(--radius);
      box-shadow: 0 18px 60px rgba(0,0,0,.22);
      overflow:hidden;
    }
    .card-inner{padding:16px 16px 14px}

    .icon{
      width:42px; height:42px;
      border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(255,255,255,.12);
      background:
        radial-gradient(14px 14px at 30% 30%, rgba(255,255,255,.26), transparent 60%),
        linear-gradient(135deg, rgba(255,63,214,.25), rgba(138,91,255,.18) 60%, rgba(38,211,255,.10));
      margin-bottom:10px;
    }
    .card h3{
      margin:0 0 6px;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color: var(--muted);
      font-size:13.2px;
      line-height:1.7;
    }
    .bullets{
      margin:12px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .bullets li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color: rgba(233,231,255,.93);
      font-size:13px;
      line-height:1.5;
    }
    .bullets li:before{
      content:"";
      width:10px; height:10px;
      margin-top:4px;
      border-radius:3px;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow: 0 0 0 3px rgba(255,63,214,.12);
      flex:0 0 auto;
    }

    .steps{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
    }
    .step{
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      border-radius: var(--radius);
      padding:14px 14px 14px;
      position:relative;
      overflow:hidden;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .step:hover{
      transform: translateY(-3px);
      border-color: rgba(255,255,255,.18);
      background: rgba(255,255,255,.06);
    }
    .step:after{
      content:"";
      position:absolute;
      inset:auto -80px -100px -80px;
      height:170px;
      background: radial-gradient(closest-side, rgba(138,91,255,.22), transparent 65%);
      opacity:.65;
      pointer-events:none;
      transform: rotate(8deg);
    }
    .step-top{
      position:relative;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:10px;
    }
    .step-num{
      font-size:12px;
      color: rgba(233,231,255,.90);
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.05);
      padding:7px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .step .tag{
      position:relative;
      font-size:12px;
      color: var(--muted);
      border:1px dashed rgba(255,255,255,.16);
      background: rgba(255,255,255,.02);
      padding:7px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .step h3{position:relative; margin:0 0 6px; font-size:15px}
    .step p{position:relative; margin:0; color:var(--muted); font-size:13.2px; line-height:1.7}

    .table-wrap{
      overflow:auto;
      border-radius: var(--radius);
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width: 860px;
    }
    thead th{
      text-align:left;
      font-size:13px;
      padding:14px 14px;
      color: rgba(233,231,255,.95);
      border-bottom:1px solid rgba(255,255,255,.12);
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
      position:sticky;
      top:0;
      z-index:1;
    }
    tbody td{
      padding:13px 14px;
      border-bottom:1px solid rgba(255,255,255,.08);
      color: rgba(233,231,255,.93);
      font-size:13.2px;
      vertical-align:top;
      line-height:1.6;
    }
    tbody tr:hover td{
      background: rgba(255,255,255,.04);
    }
    .badge-score{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.05);
      color: rgba(233,231,255,.96);
      font-size:12.5px;
      white-space:nowrap;
    }
    .badge-score .star{
      color: var(--warn);
      filter: drop-shadow(0 8px 14px rgba(255,204,102,.15));
    }
    .yes{
      color: rgba(47,231,163,.95);
      font-weight:650;
    }
    .maybe{color: rgba(255,204,102,.95); font-weight:650}
    .no{color: rgba(255,120,120,.95); font-weight:650}

    .faq{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    details{
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      border-radius: var(--radius2);
      padding:0;
      overflow:hidden;
      transition: border-color .2s ease, background .2s ease, transform .2s ease;
    }
    details:hover{
      border-color: rgba(255,255,255,.18);
      background: rgba(255,255,255,.04);
    }
    summary{
      cursor:pointer;
      list-style:none;
      padding:14px 14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      user-select:none;
    }
    summary::-webkit-details-marker{display:none}
    .q{
      font-size:13.8px;
      color: rgba(233,231,255,.96);
      font-weight:650;
      line-height:1.4;
    }
    .chev{
      width:34px; height:34px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition: transform .2s ease;
    }
    details[open] .chev{transform: rotate(180deg)}
    .a{
      padding:0 14px 14px 14px;
      color: var(--muted);
      font-size:13.2px;
      line-height:1.8;
    }

    .reviews{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .review{
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      border-radius: var(--radius);
      padding:14px 14px 14px;
      display:flex;
      flex-direction:column;
      gap:10px;
      min-height: 190px;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .review:hover{
      transform: translateY(-3px);
      border-color: rgba(255,255,255,.18);
      background: rgba(255,255,255,.05);
    }
    .review-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .reviewer{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .avatar{
      width:40px; height:40px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.12);
      background:
        radial-gradient(14px 14px at 30% 30%, rgba(255,255,255,.26), transparent 60%),
        linear-gradient(135deg, rgba(38,211,255,.22), rgba(138,91,255,.18));
    }
    .reviewer b{font-size:13.4px}
    .reviewer span{
      display:block;
      margin-top:2px;
      color: var(--muted);
      font-size:12.2px;
    }
    .review .text{
      color: var(--muted);
      font-size:13.2px;
      line-height:1.8;
      margin:0;
    }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .case{
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      border-radius: var(--radius);
      overflow:hidden;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .case:hover{transform: translateY(-3px); border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.05)}
    .case-media{
      height: 120px;
      background:
        radial-gradient(150px 80px at 20% 20%, rgba(255,63,214,.25), transparent 60%),
        radial-gradient(170px 90px at 75% 0%, rgba(138,91,255,.22), transparent 60%),
        radial-gradient(220px 120px at 70% 100%, rgba(38,211,255,.14), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.01));
      position:relative;
    }
    .case-media:after{
      content:"";
      position:absolute;
      inset:0;
      background:
        repeating-linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,.02) 2px, transparent 2px, transparent 8px);
      opacity:.35;
      mix-blend-mode: screen;
      pointer-events:none;
    }
    .case-body{padding:14px 14px 14px}
    .case-body h3{margin:0 0 6px; font-size:15px}
    .case-body p{margin:0; color:var(--muted); font-size:13.2px; line-height:1.7}

    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .tchip{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.04);
      color: rgba(233,231,255,.95);
      font-size:12.6px;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
      cursor:pointer;
      user-select:none;
    }
    .tchip:hover{
      transform: translateY(-2px);
      border-color: rgba(255,255,255,.20);
      background: rgba(255,255,255,.06);
    }

    .timeline{
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      border-radius: var(--radius);
      padding:14px;
    }
    .timeline-row{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .titem{
      display:flex;
      gap:12px;
      align-items:flex-start;
      border:1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.03);
      border-radius: var(--radius2);
      padding:12px 12px;
    }
    .tmark{
      width:40px; height:40px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.12);
      background: linear-gradient(135deg, rgba(255,63,214,.22), rgba(138,91,255,.18) 60%, rgba(38,211,255,.10));
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      font-weight:800;
      color: rgba(233,231,255,.95);
    }
    .tcontent b{display:block; font-size:13.8px; margin-top:1px}
    .tcontent span{
      display:block;
      margin-top:4px;
      color: var(--muted);
      font-size:13.1px;
      line-height:1.7;
    }

    .form{
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 18px 70px rgba(0,0,0,.20);
    }
    .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .field{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .field label{
      color: rgba(233,231,255,.95);
      font-size:13px;
      font-weight:650;
    }
    .control{
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      color: var(--text);
      padding:11px 12px;
      border-radius:12px;
      outline:none;
      transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
    }
    .control::placeholder{color: rgba(182,179,214,.7)}
    .control:focus{
      border-color: rgba(138,91,255,.40);
      box-shadow: var(--focus);
      background: rgba(255,255,255,.06);
    }
    textarea.control{min-height: 110px; resize: vertical}

    .form-actions{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-top:12px;
      flex-wrap:wrap;
    }
    .helper{
      color: var(--muted);
      font-size:12.8px;
      line-height:1.6;
      max-width: 60ch;
    }
    .btn-submit{
      padding:11px 16px;
      background: linear-gradient(135deg, rgba(255,63,214,.26), rgba(138,91,255,.22) 55%, rgba(38,211,255,.15));
      border-color: rgba(255,255,255,.18);
    }

    .footer{
      padding: 22px 0 34px;
      border-top: 1px solid rgba(255,255,255,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.2fr 1fr;
      gap:12px;
      align-items:start;
    }
    .footcard{
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      border-radius: var(--radius);
      padding:16px;
    }
    .footcard h3{margin:0 0 8px; font-size:15px}
    .footcard p{margin:0; color:var(--muted); font-size:13.2px; line-height:1.7}
    .footlinks{
      margin-top:10px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .footlinks a{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      color: rgba(233,231,255,.95);
      font-size:12.6px;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .footlinks a:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.20); background: rgba(255,255,255,.06)}
    .copyright{
      margin-top:12px;
      color: rgba(182,179,214,.85);
      font-size:12.6px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      flex-wrap:wrap;
    }

    .float-cs{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:80;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .float-cs .bubble{
      border:1px solid rgba(255,255,255,.14);
      background: rgba(16,16,42,.55);
      backdrop-filter: blur(10px);
      padding:10px;
      border-radius: 16px;
      box-shadow: 0 18px 60px rgba(0,0,0,.40);
      display:flex;
      align-items:center;
      gap:10px;
      transform-origin: right bottom;
      animation: floatIn .7s ease both;
    }
    @keyframes floatIn{
      from{opacity:0; transform: translateY(10px) scale(.98)}
      to{opacity:1; transform: translateY(0) scale(1)}
    }
    .float-cs .bubble img{
      width:54px;
      height:54px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.12);
      display:block;
      background: rgba(255,255,255,.04);
    }
    .float-cs .bubble b{
      display:block;
      font-size:13.3px;
      margin-bottom:2px;
      white-space:nowrap;
    }
    .float-cs .bubble span{
      display:block;
      color: var(--muted);
      font-size:12.4px;
      line-height:1.4;
      max-width: 150px;
    }

    .backtop{
      width:46px; height:46px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(16,16,42,.55);
      backdrop-filter: blur(10px);
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow: 0 18px 60px rgba(0,0,0,.40);
      transition: transform .2s ease, background .2s ease;
      color: rgba(233,231,255,.95);
    }
    .backtop:hover{transform: translateY(-2px); background: rgba(16,16,42,.70)}
    .backtop:focus-visible{outline:none; box-shadow: var(--focus)}

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

    .anchor{
      scroll-margin-top: 90px;
    }

    .subtle-divider{
      height:1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
      margin: 18px 0 0;
      opacity:.9;
    }

    .logo-inline{
      display:none;
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr}
      .hero-left-inner{min-height:auto}
      .steps{grid-template-columns: repeat(2, 1fr)}
      .grid-3{grid-template-columns: 1fr}
      .grid-2{grid-template-columns: 1fr}
      .faq{grid-template-columns: 1fr}
      .reviews{grid-template-columns: 1fr}
      .case-grid{grid-template-columns: 1fr}
      table{min-width: 760px}
      .footer-grid{grid-template-columns: 1fr}
      .mobile-panel{display:block}
      .hamburger{display:flex}
      .nav{display:none}
    }
    @media (max-width: 520px){
      h1{font-size: 28px}
      .hero-left-inner{padding:18px 16px 16px}
      .score-list{grid-template-columns: 1fr}
      .steps{grid-template-columns: 1fr}
      .form-grid{grid-template-columns: 1fr}
      .float-cs{right:10px; bottom:10px}
      .float-cs .bubble img{width:50px; height:50px}
    }