:root{
      --bg0:#fff7f0;
      --bg1:#ffffff;
      --text:#101828;
      --muted:#4b5563;
      --muted2:#6b7280;
      --line:rgba(16,24,40,.10);
      --card:rgba(255,255,255,.78);
      --card2:rgba(255,255,255,.92);
      --shadow: 0 18px 45px rgba(16,24,40,.10);
      --shadow2: 0 10px 26px rgba(16,24,40,.10);
      --shadow3: 0 6px 16px rgba(16,24,40,.10);
      --radius:18px;
      --radius2:14px;
      --radius3:12px;
      --accent:#ff2e6e;
      --accent2:#ff7a18;
      --accent3:#7c3aed;
      --accent4:#06b6d4;
      --accent5:#22c55e;
      --btn:#0f172a;
      --btnText:#ffffff;
      --focus: 0 0 0 4px rgba(255,46,110,.18);
      --container: 1120px;
      --padX: 20px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans SC", "Noto Sans", sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 420px at 15% 0%, rgba(255,46,110,.20), transparent 60%),
        radial-gradient(760px 420px at 92% 8%, rgba(255,122,24,.18), transparent 55%),
        radial-gradient(600px 420px at 60% 30%, rgba(124,58,237,.12), transparent 52%),
        linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 40%, #fff 100%);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    img{max-width:100%; height:auto; display:block}
    .container{
      max-width:var(--container);
      margin:0 auto;
      padding:0 var(--padX);
    }
    .skip{
      position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip:focus{
      left:20px; top:14px; width:auto; height:auto; padding:10px 12px;
      background:#fff; border:1px solid var(--line); border-radius:10px; z-index:9999;
      box-shadow: var(--shadow3);
    }
    .topbar{
      position:sticky; top:0; z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,.60);
      border-bottom:1px solid rgba(16,24,40,.08);
    }
    .nav{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:10px; min-width: 210px;
    }
    .ai-page-logo{
      width:44px; height:44px; border-radius:14px;
      background: radial-gradient(circle at 20% 20%, rgba(255,46,110,.35), transparent 55%),
                  radial-gradient(circle at 70% 30%, rgba(255,122,24,.30), transparent 55%),
                  linear-gradient(135deg, rgba(255,46,110,.15), rgba(124,58,237,.10));
      border:1px solid rgba(16,24,40,.10);
      padding:6px;
      object-fit:contain;
    }
    .brandText{display:flex; flex-direction:column; line-height:1.1}
    .brandName{
      font-weight:900; letter-spacing:.2px; font-size:15px;
    }
    .brandTag{
      font-size:12px; color:var(--muted2);
      display:flex; align-items:center; gap:8px;
    }
    .pillDot{
      width:8px; height:8px; border-radius:50%;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 60%, var(--accent4) 100%);
      box-shadow: 0 0 0 4px rgba(255,46,110,.14);
    }
    .navRight{
      display:flex; align-items:center; gap:12px; justify-content:flex-end;
      flex-wrap:wrap;
    }
    .menuBtn{
      display:none;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.85);
      padding:10px 12px;
      border-radius:12px;
      box-shadow: 0 8px 18px rgba(16,24,40,.06);
      cursor:pointer;
      user-select:none;
    }
    .menuBtn:focus{outline:none; box-shadow: var(--focus), 0 8px 18px rgba(16,24,40,.08)}
    .menuIcon{
      width:18px; height:18px; position:relative;
    }
    .menuIcon span{
      position:absolute; left:0; right:0; height:2px; background:rgba(16,24,40,.85);
      border-radius:3px;
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .menuIcon span:nth-child(1){top:4px}
    .menuIcon span:nth-child(2){top:8px}
    .menuIcon span:nth-child(3){top:12px}
    .menuBtn[data-open="true"] .menuIcon span:nth-child(1){top:8px; transform:rotate(45deg)}
    .menuBtn[data-open="true"] .menuIcon span:nth-child(2){opacity:0}
    .menuBtn[data-open="true"] .menuIcon span:nth-child(3){top:8px; transform:rotate(-45deg)}
    .menu{
      display:flex; align-items:center; gap:14px; flex-wrap:wrap;
    }
    .menu a{
      font-size:13px; color:rgba(16,24,40,.84);
      padding:10px 10px; border-radius:12px;
      border:1px solid transparent;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .menu a:hover{
      background: rgba(255,46,110,.08);
      border-color: rgba(255,46,110,.18);
      transform: translateY(-1px);
    }
    .navCtas{display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end}
    .btn{
      border:none; cursor:pointer; user-select:none;
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      padding:12px 14px;
      border-radius:14px;
      font-weight:800;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      text-align:center;
      line-height:1;
      position:relative;
      overflow:hidden;
    }
    .btn:focus{outline:none; box-shadow: var(--focus)}
    .btnPrimary{
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 55%, var(--accent4) 120%);
      color:#0b1220;
      box-shadow: 0 14px 30px rgba(255,46,110,.22);
      border:1px solid rgba(16,24,40,.06);
    }
    .btnPrimary:hover{transform: translateY(-2px); box-shadow: 0 18px 40px rgba(255,46,110,.26)}
    .btnGhost{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(16,24,40,.10);
      box-shadow: 0 10px 22px rgba(16,24,40,.06);
      color:rgba(16,24,40,.92);
      font-weight:800;
    }
    .btnGhost:hover{transform: translateY(-2px); box-shadow: 0 14px 28px rgba(16,24,40,.08)}
    .btnSmall{
      padding:10px 12px;
      border-radius:12px;
      font-size:13px;
      font-weight:800;
    }
    .btnDark{
      background: var(--btn);
      color: var(--btnText);
      box-shadow: 0 16px 35px rgba(15,23,42,.18);
      border:1px solid rgba(0,0,0,.05);
    }
    .btnDark:hover{transform: translateY(-2px); box-shadow: 0 20px 44px rgba(15,23,42,.22)}
    .btnSecondary{
      background: linear-gradient(135deg, rgba(124,58,237,.14), rgba(255,46,110,.10));
      border:1px solid rgba(124,58,237,.20);
      color:rgba(16,24,40,.92);
      box-shadow: 0 12px 28px rgba(124,58,237,.12);
    }
    .btnSecondary:hover{transform: translateY(-2px); box-shadow: 0 18px 38px rgba(124,58,237,.16)}
    .hero{
      padding: 26px 0 16px;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.25fr .85fr;
      gap:18px;
      align-items:stretch;
    }
    .heroCard{
      border:1px solid rgba(16,24,40,.10);
      background:
        radial-gradient(1000px 520px at 18% 0%, rgba(255,46,110,.26), transparent 60%),
        radial-gradient(800px 480px at 85% 20%, rgba(255,122,24,.18), transparent 56%),
        radial-gradient(700px 420px at 55% 75%, rgba(124,58,237,.12), transparent 50%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.64));
      border-radius: 26px;
      padding: 22px;
      box-shadow: var(--shadow);
      position:relative;
      overflow:hidden;
      min-height: 360px;
    }
    .heroCard::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        conic-gradient(from 210deg at 50% 50%,
          rgba(255,46,110,.00) 0deg,
          rgba(255,46,110,.22) 40deg,
          rgba(255,122,24,.18) 95deg,
          rgba(124,58,237,.16) 160deg,
          rgba(6,182,212,.18) 220deg,
          rgba(255,46,110,.00) 340deg);
      opacity:.22;
      filter: blur(18px);
      pointer-events:none;
    }
    .heroInner{position:relative; z-index:1; height:100%; display:flex; flex-direction:column}
    .heroKicker{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
      margin-bottom:12px;
    }
    .kickerBadge{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      background: rgba(255,255,255,.75);
      border:1px solid rgba(16,24,40,.10);
      box-shadow: 0 10px 24px rgba(16,24,40,.06);
      font-weight:900;
      font-size:12px;
      letter-spacing:.2px;
    }
    .kickerBadge i{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 60%, var(--accent4) 100%);
      display:inline-block;
    }
    .kickerMeta{
      font-size:13px; color:rgba(16,24,40,.86);
      display:flex; gap:10px; align-items:center;
    }
    .kickerMeta span{
      color:var(--muted);
      font-weight:700;
    }
    h1{
      margin:0;
      font-size: 34px;
      letter-spacing: -0.6px;
      line-height:1.15;
      max-width: 16ch;
    }
    .heroLead{
      margin:12px 0 0;
      color:rgba(16,24,40,.82);
      font-size:15px;
      line-height:1.7;
      max-width: 62ch;
      font-weight:650;
    }
    .heroActions{
      margin-top:auto;
      padding-top:14px;
      display:flex; gap:12px; flex-wrap:wrap; align-items:center;
    }
    .quickList{
      display:flex; gap:10px; flex-wrap:wrap; margin-top:14px;
    }
    .chip{
      display:inline-flex; align-items:center; gap:8px;
      padding:10px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(16,24,40,.10);
      color:rgba(16,24,40,.90);
      font-weight:850;
      font-size:12px;
      box-shadow: 0 12px 26px rgba(16,24,40,.05);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .chip:hover{transform: translateY(-2px); box-shadow: 0 16px 34px rgba(16,24,40,.08)}
    .chip svg{width:16px; height:16px}
    .heroSide{
      border:1px solid rgba(16,24,40,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.64));
      border-radius: 26px;
      padding: 18px;
      box-shadow: var(--shadow2);
      min-height: 360px;
      display:flex; flex-direction:column; gap:12px;
      overflow:hidden;
      position:relative;
    }
    .heroSide::after{
      content:"";
      position:absolute; right:-120px; top:-120px; width:260px; height:260px;
      background: radial-gradient(circle at 30% 30%, rgba(255,46,110,.30), transparent 60%);
      filter: blur(0px);
      pointer-events:none;
      opacity:.7;
    }
    .sideTitle{
      position:relative; z-index:1;
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .sideTitle h2{
      margin:0; font-size:16px; letter-spacing:-.2px; line-height:1.35;
    }
    .sideTitle p{
      margin:6px 0 0; color:var(--muted); font-size:13px; line-height:1.6; font-weight:650;
    }
    .score{
      position:relative; z-index:1;
      display:grid; grid-template-columns: 1fr 1fr; gap:10px;
    }
    .stat{
      border-radius: 16px;
      padding: 12px 12px;
      background:
        radial-gradient(360px 160px at 20% 0%, rgba(255,46,110,.16), transparent 62%),
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.64));
      border:1px solid rgba(16,24,40,.10);
      box-shadow: 0 10px 24px rgba(16,24,40,.06);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .stat:hover{transform: translateY(-3px); box-shadow: 0 14px 32px rgba(16,24,40,.08)}
    .stat strong{
      display:block; font-size:18px; letter-spacing:-.4px;
    }
    .stat span{
      display:block; margin-top:6px; color:var(--muted); font-size:12.5px; line-height:1.4; font-weight:700;
    }
    .sidePanel{
      position:relative; z-index:1;
      margin-top:auto;
      border-radius: 18px;
      padding: 14px;
      background:
        linear-gradient(135deg, rgba(255,46,110,.12), rgba(255,122,24,.10), rgba(124,58,237,.08));
      border:1px solid rgba(16,24,40,.10);
    }
    .sidePanel .row{
      display:flex; gap:10px; align-items:flex-start; justify-content:space-between; flex-wrap:wrap;
    }
    .microTitle{
      font-weight:950; letter-spacing:-.2px;
      font-size:13px;
      color:rgba(16,24,40,.95);
    }
    .microText{
      margin-top:6px;
      color:rgba(16,24,40,.78);
      font-size:13px;
      line-height:1.6;
      font-weight:700;
    }
    .sidePanel .meter{
      display:flex; align-items:center; gap:10px; margin-top:10px;
    }
    .bar{
      flex:1;
      height:10px;
      border-radius:999px;
      background: rgba(16,24,40,.08);
      overflow:hidden;
      border:1px solid rgba(16,24,40,.07);
    }
    .bar > i{
      display:block; height:100%;
      width:0%;
      border-radius:999px;
      background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 45%, var(--accent4) 100%);
      transition: width .9s cubic-bezier(.2,.8,.2,1);
    }
    .meter span{
      font-size:12px; color:rgba(16,24,40,.78); font-weight:850;
      white-space:nowrap;
    }
    .section{
      padding: 26px 0;
    }
    .sectionHeader{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px; flex-wrap:wrap;
      margin-bottom:14px;
    }
    .sectionHeader h2{
      margin:0;
      font-size: 22px;
      letter-spacing:-.5px;
      line-height:1.25;
    }
    .sectionHeader p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
      font-weight:650;
      max-width: 62ch;
    }
    .grid2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .grid3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
      align-items:stretch;
    }
    .grid4{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
      align-items:stretch;
    }
    .card{
      border-radius: var(--radius);
      background: rgba(255,255,255,.80);
      border:1px solid rgba(16,24,40,.10);
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
      padding: 16px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 44px rgba(16,24,40,.10);
      border-color: rgba(255,46,110,.22);
    }
    .card .eyebrow{
      font-size:12px; color:rgba(16,24,40,.72);
      font-weight:900; letter-spacing:.2px;
      display:flex; align-items:center; gap:10px;
    }
    .card .eyebrow i{
      width:12px; height:12px; border-radius:4px;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 55%, var(--accent4) 100%);
      box-shadow: 0 0 0 4px rgba(255,46,110,.12);
      display:inline-block;
    }
    .card h3{
      margin:10px 0 0;
      font-size:16px;
      letter-spacing:-.2px;
      line-height:1.35;
    }
    .card p{
      margin:10px 0 0;
      color:rgba(16,24,40,.78);
      font-size:13.5px;
      line-height:1.7;
      font-weight:650;
    }
    .card .metaRow{
      margin-top:12px;
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    }
    .tag{
      font-size:12px; font-weight:900;
      padding:8px 10px;
      border-radius:999px;
      background: rgba(255,46,110,.08);
      border:1px solid rgba(255,46,110,.18);
      color:rgba(16,24,40,.90);
    }
    .tag2{
      background: rgba(6,182,212,.08);
      border-color: rgba(6,182,212,.18);
    }
    .tag3{
      background: rgba(124,58,237,.08);
      border-color: rgba(124,58,237,.18);
    }
    .steps{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
    }
    .step{
      border-radius: var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 12px 30px rgba(16,24,40,.06);
      padding: 14px;
      transition: transform .2s ease, box-shadow .2s ease;
      position:relative;
      overflow:hidden;
      min-height: 132px;
    }
    .step:hover{transform: translateY(-3px); box-shadow: 0 18px 44px rgba(16,24,40,.10)}
    .stepNum{
      width:34px; height:34px;
      border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      font-weight:1000; letter-spacing:-.2px;
      background: linear-gradient(135deg, rgba(255,46,110,.20), rgba(255,122,24,.16), rgba(6,182,212,.14));
      border:1px solid rgba(16,24,40,.10);
    }
    .step h3{
      margin:10px 0 0; font-size:15px; letter-spacing:-.2px;
    }
    .step p{
      margin:8px 0 0;
      color:rgba(16,24,40,.78);
      font-size:13px; line-height:1.65; font-weight:650;
    }
    .compareWrap{
      border-radius: 24px;
      border:1px solid rgba(16,24,40,.10);
      background:
        radial-gradient(900px 380px at 20% 0%, rgba(255,46,110,.18), transparent 60%),
        radial-gradient(720px 360px at 90% 10%, rgba(255,122,24,.14), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.70));
      box-shadow: var(--shadow2);
      padding: 16px;
      overflow:hidden;
      position:relative;
    }
    .compareHeader{
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px; flex-wrap:wrap;
      padding: 6px 6px 10px;
    }
    .compareHeader .left h2{margin:0; font-size:22px; letter-spacing:-.5px}
    .compareHeader .left p{margin:8px 0 0; color:var(--muted); font-weight:650; line-height:1.7; font-size:14px}
    .ratingCard{
      min-width: 240px;
      border-radius: 20px;
      border:1px solid rgba(16,24,40,.10);
      background:
        linear-gradient(135deg, rgba(255,46,110,.12), rgba(255,122,24,.10), rgba(124,58,237,.08));
      box-shadow: 0 16px 36px rgba(16,24,40,.08);
      padding: 14px;
    }
    .ratingTop{display:flex; align-items:center; justify-content:space-between; gap:10px}
    .stars{
      display:flex; gap:4px; align-items:center;
    }
    .star{
      width:18px; height:18px;
      background: linear-gradient(135deg, #ff2e6e, #ff7a18);
      clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 67% 57%, 79% 91%, 50% 70%, 21% 91%, 33% 57%, 2% 35%, 39% 35%);
    }
    .ratingScore{
      font-weight:1000; letter-spacing:-.6px; font-size:34px;
      line-height:1;
    }
    .ratingBottom{
      margin-top:6px;
      color:rgba(16,24,40,.78);
      font-weight:800; font-size:13px;
      display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap;
    }
    .tableWrap{
      overflow:auto;
      border-radius: 16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 10px 22px rgba(16,24,40,.06);
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width: 860px;
    }
    th,td{
      padding:12px 12px;
      border-bottom:1px solid rgba(16,24,40,.08);
      text-align:left;
      vertical-align:top;
      font-size:13.5px;
      color:rgba(16,24,40,.88);
      font-weight:650;
    }
    th{
      background: rgba(255,46,110,.07);
      font-weight:1000;
      color:rgba(16,24,40,.92);
      position:sticky; top:0; z-index:1;
    }
    tr:last-child td{border-bottom:none}
    .yes{
      display:inline-flex; align-items:center; gap:8px;
      font-weight:1000;
      padding:8px 10px;
      border-radius:999px;
      background: rgba(34,197,94,.10);
      border:1px solid rgba(34,197,94,.22);
    }
    .no{
      display:inline-flex; align-items:center; gap:8px;
      font-weight:1000;
      padding:8px 10px;
      border-radius:999px;
      background: rgba(239,68,68,.10);
      border:1px solid rgba(239,68,68,.22);
    }
    .bullet{
      margin:0; padding-left:18px;
      color:rgba(16,24,40,.78);
      font-weight:650; line-height:1.7;
    }
    .bullet li{margin:6px 0}
    .faqGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .faq{
      border-radius: var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      overflow:hidden;
    }
    details{
      padding: 0;
    }
    summary{
      list-style:none;
      cursor:pointer;
      padding: 14px 14px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
      font-weight:950;
      letter-spacing:-.2px;
      line-height:1.45;
    }
    summary::-webkit-details-marker{display:none}
    .sumIcon{
      width:26px; height:26px;
      border-radius:10px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,46,110,.08);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition: transform .2s ease;
      margin-top:2px;
    }
    details[open] .sumIcon{transform: rotate(45deg)}
    .faqBody{
      padding: 0 14px 14px;
      color:rgba(16,24,40,.78);
      font-weight:650;
      line-height:1.75;
      font-size:13.5px;
    }
    .reviewGrid{
      display:grid; grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .review{
      border-radius: var(--radius);
      border:1px solid rgba(16,24,40,.10);
      background:
        radial-gradient(500px 220px at 15% 0%, rgba(6,182,212,.14), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.66));
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      padding: 16px;
      display:flex; flex-direction:column; gap:10px;
    }
    .reviewTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .avatar{
      width:44px; height:44px; border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: linear-gradient(135deg, rgba(255,46,110,.18), rgba(255,122,24,.14), rgba(124,58,237,.12));
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      letter-spacing:-.6px;
    }
    .who{
      display:flex; flex-direction:column; gap:4px;
      min-width: 0;
    }
    .who strong{font-size:14px; letter-spacing:-.2px}
    .who span{color:var(--muted); font-weight:800; font-size:12.5px; line-height:1.3}
    .review p{
      margin:0;
      color:rgba(16,24,40,.80);
      font-weight:650;
      line-height:1.8;
      font-size:13.5px;
    }
    .review .smallTags{display:flex; gap:8px; flex-wrap:wrap}
    .smallTag{
      font-size:12px; font-weight:950;
      padding:7px 10px; border-radius:999px;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.20);
      color:rgba(16,24,40,.92);
    }
    .smallTag.s2{background: rgba(255,46,110,.08); border-color: rgba(255,46,110,.18)}
    .smallTag.s3{background: rgba(6,182,212,.08); border-color: rgba(6,182,212,.18)}
    .caseGrid{
      display:grid; grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .case{
      padding: 14px;
      border-radius: var(--radius);
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      display:flex; flex-direction:column; gap:10px;
      min-height: 206px;
    }
    .case .top{
      display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap;
    }
    .case .title{
      font-weight:1000; letter-spacing:-.3px; line-height:1.35;
    }
    .case .desc{
      color:rgba(16,24,40,.78);
      font-weight:650; line-height:1.7; font-size:13.5px;
      margin-top:2px;
    }
    .case .bullets{
      margin:0; padding-left:18px;
      color:rgba(16,24,40,.78);
      font-weight:650; line-height:1.7; font-size:13.2px;
    }
    .case .foot{
      margin-top:auto;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .linkBtn{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:14px;
      background: rgba(255,255,255,.85);
      border:1px solid rgba(16,24,40,.10);
      font-weight:950; font-size:13px;
      box-shadow: 0 10px 24px rgba(16,24,40,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .linkBtn:hover{transform: translateY(-2px); box-shadow: 0 16px 36px rgba(16,24,40,.08); border-color: rgba(255,46,110,.22)}
    .linkBtn svg{width:16px; height:16px}
    .articleGrid{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .article{
      border-radius: var(--radius);
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      padding: 14px;
      display:flex; flex-direction:column; gap:10px;
    }
    .articleTop{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
    .article .meta{
      color:var(--muted);
      font-weight:850; font-size:12.5px;
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
    }
    .article h3{
      margin:0;
      font-size:15px; letter-spacing:-.2px; line-height:1.5;
    }
    .article p{
      margin:0;
      color:rgba(16,24,40,.78);
      font-weight:650; line-height:1.75; font-size:13.5px;
    }
    .article a{align-self:flex-start}
    .formWrap{
      border-radius: 24px;
      border:1px solid rgba(16,24,40,.10);
      background:
        radial-gradient(840px 420px at 20% 0%, rgba(255,46,110,.14), transparent 60%),
        radial-gradient(740px 420px at 95% 12%, rgba(6,182,212,.12), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.70));
      box-shadow: var(--shadow2);
      padding: 16px;
      overflow:hidden;
    }
    .formGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .formAside{
      border-radius: 20px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.82);
      padding: 16px;
      box-shadow: 0 10px 22px rgba(16,24,40,.06);
      display:flex; flex-direction:column; gap:10px;
    }
    .formAside h3{margin:0; font-size:16px; letter-spacing:-.2px}
    .formAside p{margin:0; color:rgba(16,24,40,.78); font-weight:650; line-height:1.75; font-size:13.5px}
    .networkList{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:4px;
    }
    .networkItem{
      border-radius: 16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.85);
      padding: 12px;
    }
    .networkItem strong{display:block; font-size:13.5px; letter-spacing:-.2px}
    .networkItem span{display:block; margin-top:6px; color:var(--muted); font-weight:800; font-size:12.5px; line-height:1.35}
    form{
      border-radius: 20px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.86);
      padding: 16px;
      box-shadow: 0 10px 22px rgba(16,24,40,.06);
    }
    .fields{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .field{
      display:flex; flex-direction:column; gap:8px;
    }
    .field label{
      font-size:12.5px; font-weight:950; color:rgba(16,24,40,.90);
      letter-spacing:.1px;
    }
    input, select, textarea{
      width:100%;
      border-radius: 14px;
      border:1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.90);
      padding: 12px 12px;
      font-size:14px;
      outline:none;
      transition: box-shadow .2s ease, border-color .2s ease, transform .1s ease;
      color:rgba(16,24,40,.94);
      font-weight:750;
    }
    textarea{min-height: 116px; resize: vertical}
    input:focus, select:focus, textarea:focus{
      box-shadow: var(--focus);
      border-color: rgba(255,46,110,.35);
    }
    .fieldFull{grid-column: 1 / -1;}
    .formActions{
      margin-top:12px;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .privacy{
      color:var(--muted2);
      font-size:12.5px; font-weight:750;
      line-height:1.4;
    }
    .formNotice{
      margin-top:10px;
      padding:10px 12px;
      border-radius: 16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,46,110,.06);
      color:rgba(16,24,40,.80);
      font-weight:700;
      line-height:1.6;
      font-size:13px;
    }
    .floatChat{
      position:fixed;
      right:16px; bottom:16px;
      z-index:80;
      display:flex; flex-direction:column; gap:10px;
      pointer-events:none;
    }
    .floatChat .btnRow{display:flex; gap:10px; pointer-events:auto; align-items:flex-end}
    .floatCard{
      pointer-events:auto;
      width: 220px;
      border-radius: 18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 45px rgba(16,24,40,.14);
      overflow:hidden;
      transform-origin: 100% 100%;
      transform: scale(.98);
      opacity:0;
      height:0;
      transition: opacity .18s ease, transform .18s ease, height .18s ease;
    }
    .floatCard.open{
      opacity:1; transform: scale(1); height:auto;
    }
    .floatCard .inner{padding:12px}
    .floatCard .title{
      font-weight:1000; letter-spacing:-.2px; font-size:13.5px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .floatClose{
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.85);
      border-radius:12px;
      padding:6px 8px;
      cursor:pointer;
      font-weight:1000;
      line-height:1;
    }
    .qrWrap{
      display:flex; gap:12px; align-items:center; margin-top:10px;
    }
    .qrImg{
      width:66px; height:66px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      overflow:hidden;
      background: #fff;
      flex:0 0 auto;
    }
    .qrMeta{
      color:rgba(16,24,40,.80);
      font-weight:750;
      font-size:12.8px;
      line-height:1.5;
    }
    .floatMain{
      pointer-events:auto;
    }
    .floatBtn{
      border:none; cursor:pointer;
      width: 48px; height: 48px;
      border-radius: 18px;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 50%, var(--accent4) 110%);
      box-shadow: 0 18px 40px rgba(255,46,110,.22);
      border:1px solid rgba(16,24,40,.08);
      display:flex; align-items:center; justify-content:center;
      transition: transform .15s ease, box-shadow .2s ease;
    }
    .floatBtn:hover{transform: translateY(-2px); box-shadow: 0 24px 56px rgba(255,46,110,.26)}
    .floatBtn:focus{outline:none; box-shadow: var(--focus), 0 24px 56px rgba(255,46,110,.22)}
    .floatBtn svg{width:20px; height:20px; color:#0b1220}
    .toast{
      position:fixed; left:50%; transform: translateX(-50%);
      bottom: 84px;
      z-index:90;
      background: rgba(16,24,40,.92);
      color:#fff;
      padding:10px 14px;
      border-radius: 14px;
      font-weight:800;
      font-size:13px;
      box-shadow: 0 18px 45px rgba(16,24,40,.22);
      opacity:0; pointer-events:none;
      transition: opacity .2s ease, transform .2s ease;
      transform-origin:center;
    }
    .toast.show{opacity:1; transform: translateX(-50%) translateY(-6px)}
    .anchor{
      scroll-margin-top: 84px;
    }
    .caseImages{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:2px;
    }
    .miniImg{
      width: 100%;
      border-radius: 16px;
      border:1px solid rgba(16,24,40,.10);
      overflow:hidden;
      background: rgba(255,255,255,.7);
      box-shadow: 0 12px 26px rgba(16,24,40,.06);
    }
    .miniImg img{width:100%}
    .timeline{
      display:flex; gap:12px; overflow:auto; padding-bottom:4px; scroll-snap-type:x mandatory;
    }
    .timeCard{
      flex: 0 0 270px;
      scroll-snap-align:start;
      border-radius: var(--radius);
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      padding: 14px;
      position:relative;
      overflow:hidden;
    }
    .timeCard::after{
      content:"";
      position:absolute; right:-60px; top:-60px; width:140px; height:140px;
      background: radial-gradient(circle at 30% 30%, rgba(255,46,110,.20), transparent 60%);
      pointer-events:none;
    }
    .timeTop{display:flex; align-items:center; justify-content:space-between; gap:10px; position:relative; z-index:1}
    .timeTop strong{font-weight:1000; letter-spacing:-.2px}
    .timeCard p{
      margin:10px 0 0;
      color:rgba(16,24,40,.78);
      font-weight:650;
      line-height:1.75;
      font-size:13.5px;
      position:relative; z-index:1;
    }
    .labelCloud{
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .cloudItem{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 10px 22px rgba(16,24,40,.06);
      font-weight:950;
      font-size:12.5px;
      color:rgba(16,24,40,.90);
      transition: transform .2s ease, border-color .2s ease;
    }
    .cloudItem:hover{transform: translateY(-2px); border-color: rgba(255,46,110,.22)}
    .footer{
      margin-top: 12px;
      background:
        radial-gradient(800px 380px at 15% 0%, rgba(255,46,110,.18), transparent 60%),
        radial-gradient(720px 360px at 95% 10%, rgba(6,182,212,.14), transparent 55%),
        linear-gradient(180deg, rgba(15,23,42,.96), rgba(15,23,42,.98));
      color:#e5e7eb;
      border-top: 1px solid rgba(255,255,255,.12);
    }
    .footerInner{
      padding: 22px 0 18px;
    }
    .footerTop{
      display:flex; justify-content:space-between; align-items:flex-start; gap:14px; flex-wrap:wrap;
    }
    .footerBrand{
      min-width: 260px;
      max-width: 520px;
    }
    .footerBrand .row{
      display:flex; gap:12px; align-items:center;
    }
    .footerBrand img{
      width:42px; height:42px; border-radius:16px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      padding:6px;
    }
    .footerBrand strong{
      display:block; font-size:15px; letter-spacing:-.2px;
    }
    .footerBrand p{
      margin:10px 0 0; color:rgba(229,231,235,.86);
      font-weight:650; line-height:1.75; font-size:13.5px;
    }
    .footerCols{
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
      min-width: 340px;
    }
    .footerCol{
      border-radius: 18px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      padding: 14px;
    }
    .footerCol h3{
      margin:0; font-size:13.5px; letter-spacing:-.2px;
      color:#fff;
      font-weight:1000;
    }
    .footerLinks{
      margin-top:10px;
      display:flex; flex-direction:column; gap:8px;
    }
    .footerLinks a{
      color:rgba(229,231,235,.90);
      font-weight:750;
      font-size:13px;
      padding:8px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
    }
    .footerLinks a:hover{
      background: rgba(255,255,255,.07);
      border-color: rgba(255,255,255,.14);
      transform: translateY(-1px);
    }
    .friendGrid{
      margin-top: 12px;
      border-radius: 18px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      padding: 14px;
    }
    .friendGrid h3{
      margin:0; font-size:13.5px; color:#fff; font-weight:1000; letter-spacing:-.2px;
    }
    .friendLinks{
      margin-top:10px; display:flex; gap:10px; flex-wrap:wrap;
    }
    .friendLinks a{
      color:rgba(229,231,235,.92);
      font-weight:850; font-size:12.5px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.04);
      transition: transform .2s ease, background .2s ease;
    }
    .friendLinks a:hover{transform: translateY(-2px); background: rgba(255,255,255,.08)}
    .footerBottom{
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid rgba(255,255,255,.12);
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      color:rgba(229,231,235,.82);
      font-weight:700; font-size:12.5px;
    }
    .footInline{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
    }
    .kbd{
      padding:6px 10px; border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      color:rgba(229,231,235,.92);
      font-weight:900;
    }
    .reveal{
      opacity:0;
      transform: translateY(12px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.show{
      opacity:1;
      transform: translateY(0);
    }
    @media (max-width: 980px){
      :root{--container: 980px}
      h1{font-size:30px}
      .heroGrid{grid-template-columns: 1fr}
      .heroSide{min-height:auto}
      .steps{grid-template-columns: repeat(2, 1fr)}
      .grid3{grid-template-columns: 1fr}
      .grid4{grid-template-columns: repeat(2, 1fr)}
      .grid2{grid-template-columns: 1fr}
      .faqGrid{grid-template-columns: 1fr}
      .reviewGrid{grid-template-columns: 1fr}
      .caseGrid{grid-template-columns: 1fr}
      .articleGrid{grid-template-columns: 1fr}
      .formGrid{grid-template-columns: 1fr}
      .fields{grid-template-columns: 1fr}
      .footerCols{grid-template-columns: 1fr}
      table{min-width: 760px}
      .menu{display:none}
      .menuBtn{display:inline-flex}
      .navRight{gap:10px}
      .mobileMenu{
        display:none;
        border-top:1px solid rgba(16,24,40,.08);
        padding: 8px 0 14px;
      }
      .mobileMenu.open{display:block}
      .mobileMenu .links{
        display:flex; flex-direction:column; gap:8px;
      }
      .mobileMenu .links a{
        padding:12px 12px;
        border-radius:14px;
        border:1px solid rgba(16,24,40,.10);
        background: rgba(255,255,255,.78);
        font-weight:900;
      }
    }