:root{
      --bg0:#f7fbfb;
      --bg1:#eef7fb;
      --card:#ffffff;
      --text:#0f172a;
      --muted:#526170;
      --muted2:#6b7a8c;
      --border:rgba(15,23,42,.10);
      --border2:rgba(15,23,42,.14);
      --shadow:0 14px 40px rgba(2, 132, 199, .10);
      --shadow2:0 8px 22px rgba(2, 132, 199, .12);
      --shadow3:0 10px 30px rgba(15,23,42,.10);
      --brand1:#0ea5e9;
      --brand2:#22c55e;
      --brand3:#14b8a6;
      --brand4:#38bdf8;
      --accent:#0ea5e9;
      --accent2:#14b8a6;
      --warn:#f59e0b;
      --danger:#ef4444;
      --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, "Segoe UI", Roboto, Helvetica, Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 450px at 20% 0%, rgba(14,165,233,.18), rgba(14,165,233,0) 55%),
        radial-gradient(700px 420px at 85% 15%, rgba(20,184,166,.16), rgba(20,184,166,0) 55%),
        linear-gradient(180deg, var(--bg1), var(--bg0) 55%, #ffffff 100%);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    .container{
      max-width:var(--container);
      margin:0 auto;
      padding:0 20px;
    }
    .skip{
      position:absolute; left:-999px; top:0;
      background:#0ea5e9; color:#fff; padding:10px 12px; border-radius:10px; z-index:9999;
    }
    .skip:focus{left:16px; top:16px}
    header{
      position:sticky; top:0; z-index:60;
      backdrop-filter:saturate(140%) blur(10px);
      background:rgba(247,251,251,.72);
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex; align-items:center; gap:10px; min-width:220px;
    }
    .brand img{width:38px; height:38px; object-fit:contain}
    .brand .brand-text{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand .brand-name{
      font-weight:800; letter-spacing:.2px;
    }
    .brand .brand-sub{
      font-size:12px; color:var(--muted2);
      margin-top:2px;
    }
    nav{
      display:flex; align-items:center; gap:8px; justify-content:flex-end;
      flex-wrap:wrap;
    }
    .nav-links{
      display:flex; align-items:center; gap:10px;
      flex-wrap:wrap; justify-content:flex-end;
    }
    .nav-links a{
      font-size:13px; color:rgba(15,23,42,.82);
      padding:8px 10px; border-radius:999px;
      border:1px solid transparent;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background:rgba(14,165,233,.08);
      border-color:rgba(14,165,233,.22);
      transform: translateY(-1px);
    }
    .nav-cta{
      display:flex; gap:10px; align-items:center; justify-content:flex-end;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      border-radius:999px;
      padding:10px 14px;
      border:1px solid rgba(14,165,233,.28);
      color:#06324a;
      background:linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.72));
      box-shadow:0 8px 18px rgba(14,165,233,.10);
      font-weight:700; font-size:13px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
      cursor:pointer;
      user-select:none;
      white-space:nowrap;
    }
    .btn:focus-visible{outline:3px solid rgba(14,165,233,.28); outline-offset:2px}
    .btn:hover{
      transform: translateY(-1px);
      border-color:rgba(14,165,233,.44);
      box-shadow:0 14px 28px rgba(14,165,233,.14);
    }
    .btn-primary{
      border:1px solid rgba(14,165,233,.35);
      background:linear-gradient(135deg, rgba(14,165,233,1), rgba(20,184,166,1));
      color:#041826;
      box-shadow:0 16px 38px rgba(14,165,233,.22);
    }
    .btn-primary .btn-dot{
      width:9px; height:9px; border-radius:50%;
      background:rgba(255,255,255,.85);
      box-shadow:0 0 0 4px rgba(255,255,255,.18);
    }
    .btn-ghost{
      border-color:rgba(15,23,42,.14);
      color:rgba(15,23,42,.88);
      background:rgba(255,255,255,.7);
      box-shadow:none;
    }
    .icon{
      width:16px; height:16px; display:inline-block;
    }
    .menu-btn{
      display:none;
      width:44px; height:44px;
      border-radius:12px;
      border:1px solid rgba(15,23,42,.14);
      background:rgba(255,255,255,.75);
      box-shadow:0 10px 20px rgba(15,23,42,.08);
      cursor:pointer;
      align-items:center; justify-content:center;
    }
    .menu-btn .bars{
      width:18px; height:12px; position:relative;
    }
    .menu-btn .bars span{
      position:absolute; left:0; right:0; height:2px;
      background:rgba(15,23,42,.78);
      border-radius:2px;
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .menu-btn .bars span:nth-child(1){top:0}
    .menu-btn .bars span:nth-child(2){top:5px}
    .menu-btn .bars span:nth-child(3){top:10px}
    .menu-btn[aria-expanded="true"] .bars span:nth-child(1){top:5px; transform:rotate(45deg)}
    .menu-btn[aria-expanded="true"] .bars span:nth-child(2){opacity:0}
    .menu-btn[aria-expanded="true"] .bars span:nth-child(3){top:5px; transform:rotate(-45deg)}
    .mobile-panel{
      display:none;
      padding-bottom:14px;
    }
    .mobile-panel .mobile-links{
      display:flex; flex-direction:column; gap:8px;
      margin-top:10px;
    }
    .mobile-panel a{
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.75);
      padding:12px 12px; border-radius:14px;
      font-weight:700; font-size:14px; color:rgba(15,23,42,.9);
      transition: transform .2s ease, border-color .2s ease;
    }
    .mobile-panel a:hover{transform: translateY(-1px); border-color:rgba(14,165,233,.28)}
    .hero{
      position:relative;
      padding:44px 0 18px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-card{
      border:1px solid rgba(14,165,233,.20);
      background:
        radial-gradient(600px 220px at 10% 0%, rgba(14,165,233,.18), rgba(14,165,233,0) 60%),
        radial-gradient(550px 220px at 90% 20%, rgba(20,184,166,.14), rgba(20,184,166,0) 58%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.66));
      box-shadow: var(--shadow2);
      border-radius: var(--radius2);
      padding:22px;
      position:relative;
      overflow:hidden;
    }
    .hero-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        linear-gradient(120deg, rgba(14,165,233,.0), rgba(14,165,233,.20), rgba(20,184,166,.0));
      transform: translateX(-60%);
      opacity:.65;
      pointer-events:none;
      transition: transform .8s ease;
    }
    .hero-card:hover:before{
      transform: translateX(40%);
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(14,165,233,.26);
      background:rgba(255,255,255,.68);
      box-shadow:0 10px 20px rgba(14,165,233,.10);
      font-weight:800; font-size:13px; color:rgba(15,23,42,.86);
      white-space:nowrap;
    }
    .badge .pulse{
      width:10px; height:10px; border-radius:50%;
      background:rgba(14,165,233,1);
      position:relative;
    }
    .badge .pulse:after{
      content:"";
      position:absolute; inset:-8px;
      border-radius:50%;
      border:1px solid rgba(14,165,233,.45);
      animation: pulse 2.2s ease-in-out infinite;
    }
    @keyframes pulse{
      0%{transform:scale(.65); opacity:.0}
      20%{opacity:.8}
      100%{transform:scale(1.25); opacity:0}
    }
    h1{
      margin:14px 0 10px;
      font-size:34px;
      line-height:1.12;
      letter-spacing:-.5px;
    }
    .hero-lead{
      margin:0;
      color:rgba(15,23,42,.78);
      font-size:15px; line-height:1.8;
      max-width:54ch;
    }
    .hero-actions{
      display:flex; flex-wrap:wrap; gap:12px;
      margin-top:16px;
      align-items:center;
    }
    .mini-meta{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:16px;
      align-items:center;
    }
    .meta-pill{
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      background:rgba(255,255,255,.62);
      border:1px solid rgba(15,23,42,.10);
      border-radius:16px;
      min-width:170px;
    }
    .meta-pill .k{
      width:34px; height:34px;
      border-radius:12px;
      background:linear-gradient(135deg, rgba(14,165,233,.18), rgba(20,184,166,.14));
      border:1px solid rgba(14,165,233,.25);
      display:flex; align-items:center; justify-content:center;
    }
    .meta-pill strong{display:block; font-size:13px}
    .meta-pill span{display:block; font-size:12px; color:var(--muted2); margin-top:2px}
    .hero-side{
      border:1px solid rgba(15,23,42,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.62));
      border-radius: var(--radius2);
      padding:18px;
      box-shadow: var(--shadow3);
      overflow:hidden;
      position:relative;
    }
    .hero-side:after{
      content:"";
      position:absolute; inset:-1px;
      background:
        radial-gradient(420px 240px at 70% 15%, rgba(56,189,248,.18), rgba(56,189,248,0) 58%),
        radial-gradient(360px 220px at 10% 90%, rgba(20,184,166,.14), rgba(20,184,166,0) 60%);
      pointer-events:none;
      opacity:1;
    }
    .side-inner{position:relative; z-index:1}
    .side-title{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .side-title h2{
      font-size:15px; margin:0; letter-spacing:.2px;
    }
    .status{
      display:flex; align-items:center; gap:8px;
      padding:8px 10px; border-radius:999px;
      border:1px solid rgba(14,165,233,.26);
      background:rgba(14,165,233,.08);
      font-weight:800; font-size:12px;
      color:rgba(14,165,233,.95);
      white-space:nowrap;
    }
    .status i{
      width:8px; height:8px; border-radius:50%;
      background:rgba(14,165,233,.95);
      box-shadow:0 0 0 5px rgba(14,165,233,.14);
    }
    .side-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
      margin-top:10px;
    }
    .data-card{
      background:rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:16px;
      padding:12px 12px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .data-card:hover{
      transform: translateY(-2px);
      border-color:rgba(14,165,233,.30);
      box-shadow:0 14px 30px rgba(14,165,233,.14);
    }
    .data-card .top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .data-card .label{
      font-weight:900; font-size:13px;
      color:rgba(15,23,42,.88);
    }
    .data-card .value{
      font-weight:1000;
      font-size:26px;
      letter-spacing:-.6px;
      margin-top:6px;
    }
    .data-card .desc{
      color:var(--muted2);
      font-size:12px;
      line-height:1.5;
      margin-top:6px;
    }
    .spark{
      width:44px; height:44px; border-radius:16px;
      background:linear-gradient(135deg, rgba(14,165,233,.18), rgba(20,184,166,.14));
      border:1px solid rgba(14,165,233,.25);
      display:flex; align-items:center; justify-content:center;
    }
    .spark svg{opacity:.95}
    .side-mini{
      margin-top:12px;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .chip{
      display:inline-flex; align-items:center; gap:8px;
      padding:9px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.66);
      font-weight:800; font-size:12px;
      color:rgba(15,23,42,.85);
    }
    .chip .dot{
      width:8px; height:8px; border-radius:50%;
      background:linear-gradient(135deg, rgba(14,165,233,1), rgba(20,184,166,1));
      box-shadow:0 0 0 4px rgba(14,165,233,.14);
    }
    section{
      padding:26px 0;
    }
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:16px;
      margin-bottom:14px;
    }
    .section-head h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.3px;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
      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{
      background:rgba(255,255,255,.76);
      border:1px solid rgba(15,23,42,.10);
      border-radius: var(--radius);
      padding:16px;
      box-shadow:0 10px 22px rgba(15,23,42,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-2px);
      border-color:rgba(14,165,233,.28);
      box-shadow:0 18px 34px rgba(14,165,233,.12);
    }
    .card h3{
      margin:10px 0 8px;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color:var(--muted);
      font-size:13px; line-height:1.75;
    }
    .card .kpi{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-top:12px;
      padding-top:12px;
      border-top:1px dashed rgba(15,23,42,.14);
    }
    .kpi strong{font-size:18px; letter-spacing:-.3px}
    .kpi span{color:var(--muted2); font-size:12px}
    .iconbox{
      width:46px; height:46px;
      border-radius:16px;
      background:linear-gradient(135deg, rgba(14,165,233,.20), rgba(20,184,166,.14));
      border:1px solid rgba(14,165,233,.26);
      display:flex; align-items:center; justify-content:center;
    }
    .split{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:stretch;
    }
    .steps{
      display:flex; flex-direction:column; gap:10px;
    }
    .step{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px; border-radius:16px;
      background:rgba(255,255,255,.74);
      border:1px solid rgba(15,23,42,.10);
    }
    .step .num{
      width:34px; height:34px; border-radius:14px;
      background:linear-gradient(135deg, rgba(14,165,233,.22), rgba(20,184,166,.16));
      border:1px solid rgba(14,165,233,.25);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
    }
    .step h3{
      margin:0;
      font-size:15px;
    }
    .step p{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13px; line-height:1.7;
    }
    .compare-wrap{
      border:1px solid rgba(15,23,42,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.62));
      border-radius: var(--radius2);
      box-shadow: var(--shadow3);
      overflow:hidden;
    }
    .compare-head{
      padding:16px;
      border-bottom:1px solid rgba(15,23,42,.08);
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .rating{
      display:flex; gap:12px; align-items:center; flex-wrap:wrap;
    }
    .stars{
      display:flex; gap:6px; align-items:center;
      padding:10px 12px; border-radius:16px;
      border:1px solid rgba(245,158,11,.28);
      background:rgba(245,158,11,.08);
    }
    .stars svg{color:rgba(245,158,11,1)}
    .rating .score{
      font-weight:1000;
      font-size:34px;
      letter-spacing:-.8px;
      line-height:1;
    }
    .rating .meta{
      color:var(--muted2);
      font-size:12px; line-height:1.6;
    }
    .table-scroll{
      overflow:auto;
      -webkit-overflow-scrolling:touch;
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:760px;
      background:#fff;
    }
    thead th{
      position:sticky; top:0;
      background:linear-gradient(135deg, rgba(14,165,233,.12), rgba(20,184,166,.10));
      color:rgba(15,23,42,.92);
      font-weight:900;
      font-size:13px;
      text-align:left;
      padding:14px 14px;
      border-bottom:1px solid rgba(15,23,42,.10);
      white-space:nowrap;
      z-index:1;
    }
    tbody td{
      padding:14px 14px;
      border-bottom:1px solid rgba(15,23,42,.08);
      font-size:13px; color:rgba(15,23,42,.84);
      vertical-align:top;
    }
    tbody tr:hover td{background:rgba(14,165,233,.05)}
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px; border-radius:999px;
      border:1px solid rgba(14,165,233,.22);
      background:rgba(14,165,233,.08);
      font-weight:900; font-size:12px;
      white-space:nowrap;
    }
    .check{
      display:inline-flex; align-items:center; gap:8px;
      font-weight:900; font-size:12px;
      color:rgba(14,165,233,.95);
    }
    .cross{
      color:rgba(107,122,140,.95);
      font-weight:900; font-size:12px;
    }
    .timeline{
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.72);
      border-radius: var(--radius2);
      padding:16px;
      box-shadow:0 10px 24px rgba(15,23,42,.06);
    }
    .time-row{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:10px;
    }
    .time-item{
      padding:14px; border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.60));
      transition: transform .2s ease, border-color .2s ease;
    }
    .time-item:hover{transform: translateY(-2px); border-color:rgba(14,165,233,.28)}
    .time-item h3{margin:0; font-size:15px}
    .time-item p{margin:6px 0 0; color:var(--muted); font-size:13px; line-height:1.7}
    .table-tags{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:8px;
    }
    .tag{
      padding:9px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.66);
      font-weight:800; font-size:12px; color:rgba(15,23,42,.86);
    }
    .tag strong{color:rgba(14,165,233,.95)}
    .accordion{
      display:flex; flex-direction:column; gap:10px;
    }
    .acc-item{
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.72);
      border-radius:16px;
      overflow:hidden;
    }
    .acc-btn{
      width:100%;
      text-align:left;
      padding:14px 14px;
      border:0;
      background:transparent;
      cursor:pointer;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .acc-btn:focus-visible{outline:3px solid rgba(14,165,233,.28); outline-offset:2px}
    .acc-btn .q{
      font-weight:950; font-size:14px; letter-spacing:-.1px;
    }
    .acc-btn .chev{
      width:28px; height:28px; border-radius:12px;
      border:1px solid rgba(15,23,42,.12);
      background:rgba(255,255,255,.75);
      display:flex; align-items:center; justify-content:center;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
      flex:0 0 auto;
      margin-top:-2px;
    }
    .acc-item[data-open="true"] .acc-btn .chev{
      transform: rotate(180deg);
      border-color:rgba(14,165,233,.28);
      background:rgba(14,165,233,.08);
    }
    .acc-panel{
      max-height:0;
      overflow:hidden;
      transition: max-height .25s ease;
    }
    .acc-inner{
      padding:0 14px 14px;
      color:var(--muted);
      font-size:13px; line-height:1.75;
    }
    .acc-item[data-open="true"] .acc-panel{max-height:220px}
    .review-card{
      background:rgba(255,255,255,.76);
      border:1px solid rgba(15,23,42,.10);
      border-radius: var(--radius2);
      padding:16px;
      box-shadow:0 10px 22px rgba(15,23,42,.06);
      display:flex; gap:12px; align-items:flex-start;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .review-card:hover{transform: translateY(-2px); border-color:rgba(14,165,233,.28); box-shadow:0 18px 34px rgba(14,165,233,.12)}
    .avatar{
      width:46px; height:46px; border-radius:18px;
      background:linear-gradient(135deg, rgba(14,165,233,.22), rgba(20,184,166,.16));
      border:1px solid rgba(14,165,233,.24);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      font-weight:1000;
      color:rgba(15,23,42,.9);
    }
    .review-body h3{margin:0; font-size:15px}
    .review-body .role{
      margin-top:4px;
      color:var(--muted2);
      font-size:12px; line-height:1.4;
      font-weight:800;
    }
    .review-body p{
      margin:10px 0 0;
      color:rgba(15,23,42,.82);
      font-size:13px; line-height:1.75;
    }
    .case-grid{
      display:grid; grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .thumb{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:linear-gradient(135deg, rgba(14,165,233,.16), rgba(20,184,166,.12));
      overflow:hidden;
      box-shadow:0 12px 26px rgba(15,23,42,.06);
    }
    .thumb .imgbox{
      padding:0; background:transparent;
    }
    .thumb img{
      width:100%;
      height:auto;
      display:block;
      object-fit:cover;
    }
    .thumb .content{
      padding:14px;
      background:rgba(255,255,255,.76);
    }
    .thumb h3{margin:0; font-size:15px}
    .thumb p{margin:6px 0 0; color:var(--muted); font-size:13px; line-height:1.7}
    .thumb .list{
      margin-top:10px; display:flex; flex-wrap:wrap; gap:8px;
    }
    .thumb .list span{
      padding:7px 9px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.65);
      font-weight:800; font-size:12px; color:rgba(15,23,42,.86);
      white-space:nowrap;
    }
    .article-grid{
      display:grid; grid-template-columns: repeat(3, 1fr);
      gap:12px;
      align-items:stretch;
    }
    .article{
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.76);
      border-radius: var(--radius);
      padding:16px;
      box-shadow:0 10px 22px rgba(15,23,42,.06);
      display:flex; flex-direction:column;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
      min-height:180px;
    }
    .article:hover{transform: translateY(-2px); border-color:rgba(14,165,233,.28); box-shadow:0 18px 34px rgba(14,165,233,.12)}
    .article .meta{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      color:var(--muted2); font-size:12px; font-weight:800;
    }
    .article h3{margin:10px 0 8px; font-size:15px; letter-spacing:-.2px}
    .article p{margin:0; color:var(--muted); font-size:13px; line-height:1.75}
    .article .linkrow{
      margin-top:auto; padding-top:12px; display:flex; align-items:center; justify-content:space-between; gap:10px;
      border-top:1px dashed rgba(15,23,42,.14);
    }
    .linkrow a{
      font-weight:900; font-size:13px;
      color:rgba(14,165,233,.98);
    }
    .linkrow a:hover{text-decoration:underline}
    .form-wrap{
      border:1px solid rgba(14,165,233,.22);
      background:
        radial-gradient(520px 220px at 20% 0%, rgba(14,165,233,.18), rgba(14,165,233,0) 60%),
        radial-gradient(520px 220px at 90% 20%, rgba(20,184,166,.14), rgba(20,184,166,0) 58%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.62));
      border-radius: var(--radius2);
      box-shadow: var(--shadow2);
      overflow:hidden;
    }
    .form-grid{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:0;
      align-items:stretch;
    }
    .form-side{
      padding:18px;
      border-right:1px solid rgba(15,23,42,.08);
      position:relative;
    }
    .form-side h2{margin:0; font-size:18px}
    .form-side p{margin:10px 0 0; color:var(--muted); font-size:13px; line-height:1.75}
    .form-side .bullets{
      margin-top:12px;
      display:flex; flex-direction:column; gap:10px;
    }
    .bullet{
      display:flex; gap:10px; align-items:flex-start;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.70);
    }
    .bullet .ic{
      width:34px; height:34px; border-radius:14px;
      background:linear-gradient(135deg, rgba(14,165,233,.20), rgba(20,184,166,.14));
      border:1px solid rgba(14,165,233,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .bullet strong{display:block; font-size:13px}
    .bullet span{display:block; margin-top:4px; color:var(--muted2); font-size:12px; line-height:1.5}
    form{
      padding:18px;
    }
    .field-row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    label{
      display:block;
      font-weight:900;
      font-size:12px;
      color:rgba(15,23,42,.86);
      margin-bottom:8px;
    }
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.14);
      background:rgba(255,255,255,.78);
      color:rgba(15,23,42,.92);
      font-size:14px;
      outline:none;
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    input:focus, select:focus, textarea:focus{
      border-color:rgba(14,165,233,.44);
      box-shadow:0 0 0 4px rgba(14,165,233,.12);
    }
    textarea{min-height:110px; resize:vertical}
    .form-actions{
      margin-top:12px;
      display:flex; gap:12px; align-items:center; justify-content:space-between; flex-wrap:wrap;
    }
    .fineprint{
      color:var(--muted2);
      font-size:12px; line-height:1.6;
      max-width:48ch;
    }
    .fineprint strong{color:rgba(15,23,42,.86)}
    .footer{
      margin-top:10px;
      background:
        radial-gradient(700px 260px at 10% 0%, rgba(14,165,233,.14), rgba(14,165,233,0) 58%),
        radial-gradient(700px 260px at 90% 20%, rgba(20,184,166,.12), rgba(20,184,166,0) 58%),
        linear-gradient(180deg, rgba(15,23,42,.04), rgba(15,23,42,.02));
      border-top:1px solid rgba(15,23,42,.08);
      padding:22px 0 26px;
      color:rgba(15,23,42,.86);
    }
    .footer-grid{
      display:grid; grid-template-columns: 1.2fr 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .foot-brand{
      display:flex; flex-direction:column; gap:10px;
    }
    .foot-brand .row{
      display:flex; gap:10px; align-items:center;
    }
    .foot-brand img{width:38px; height:38px; object-fit:contain}
    .foot-brand p{
      margin:0;
      color:var(--muted);
      font-size:13px; line-height:1.75;
      max-width:52ch;
    }
    .foot-col h3{
      margin:0 0 10px;
      font-size:14px; letter-spacing:-.1px;
      font-weight:1000;
    }
    .foot-links{
      display:flex; flex-direction:column; gap:8px;
    }
    .foot-links a{
      color:rgba(15,23,42,.84);
      font-weight:800;
      font-size:13px;
      padding:8px 10px;
      border-radius:12px;
      border:1px solid transparent;
      background:transparent;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
      width:fit-content;
    }
    .foot-links a:hover{
      background:rgba(14,165,233,.08);
      border-color:rgba(14,165,233,.22);
      transform: translateY(-1px);
    }
    .foot-bottom{
      margin-top:16px;
      padding-top:14px;
      border-top:1px solid rgba(15,23,42,.08);
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      flex-wrap:wrap;
    }
    .copy{
      color:var(--muted2);
      font-size:12px; font-weight:800;
    }
    .links-inline{
      display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;
    }
    .links-inline a{
      font-size:12px; font-weight:900; color:rgba(14,165,233,.98);
      padding:8px 10px; border-radius:999px;
      border:1px solid rgba(14,165,233,.22);
      background:rgba(14,165,233,.08);
    }
    .links-inline a:hover{text-decoration:underline}
    .float-cs{
      position:fixed;
      right:14px; bottom:14px;
      z-index:80;
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-end;
    }
    .float-btn{
      width:48px; height:48px; border-radius:18px;
      border:1px solid rgba(15,23,42,.14);
      background:rgba(255,255,255,.78);
      box-shadow:0 18px 38px rgba(15,23,42,.16);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .2s ease, border-color .2s ease;
      position:relative;
    }
    .float-btn:hover{transform: translateY(-2px); border-color:rgba(14,165,233,.30)}
    .float-card{
      width:220px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.86);
      box-shadow:0 26px 60px rgba(2,132,199,.20);
      overflow:hidden;
      transform-origin: right bottom;
    }
    .float-card .top{
      padding:12px 12px;
      background:linear-gradient(135deg, rgba(14,165,233,.12), rgba(20,184,166,.10));
      border-bottom:1px solid rgba(15,23,42,.08);
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .float-card .top strong{font-size:13px; letter-spacing:-.1px}
    .float-card .top button{
      border:1px solid rgba(15,23,42,.12);
      background:rgba(255,255,255,.78);
      border-radius:12px;
      width:32px; height:32px;
      cursor:pointer;
    }
    .float-card .content{
      padding:12px;
      display:flex; flex-direction:column; gap:10px;
    }
    .qr{
      width:100%;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      overflow:hidden;
      background:#fff;
    }
    .qr img{width:100%; height:auto; display:block}
    .float-card .meta{
      color:var(--muted2);
      font-size:12px; line-height:1.6;
      font-weight:800;
    }
    .fade-in{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .5s ease, transform .5s ease;
    }
    .fade-in.is-visible{
      opacity:1;
      transform: translateY(0);
    }
    @media (max-width: 980px){
      .hero-grid{grid-template-columns:1fr; }
      h1{font-size:30px}
      .grid-3{grid-template-columns:1fr}
      .grid-2{grid-template-columns:1fr}
      .split{grid-template-columns:1fr}
      .case-grid{grid-template-columns:1fr}
      .article-grid{grid-template-columns:1fr}
      .form-grid{grid-template-columns:1fr}
      .form-side{border-right:0; border-bottom:1px solid rgba(15,23,42,.08)}
      .footer-grid{grid-template-columns:1fr}
      table{min-width:680px}
      .time-row{grid-template-columns:1fr}
      .mobile-panel{display:block}
    }
    @media (max-width: 860px){
      .nav-links{display:none}
      .nav-cta .btn-ghost{display:none}
      .menu-btn{display:flex}
      .mobile-panel{display:none}
      header[data-open="true"] .mobile-panel{display:block}
      .float-card{display:none}
    }
    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .badge .pulse:after{animation:none}
      .fade-in{transition:none}
    }