:root{
      --bg:#fff7fb;
      --bg2:#f6f7ff;
      --card:#ffffff;
      --text:#111827;
      --muted:#4b5563;
      --muted2:#6b7280;
      --line:rgba(17,24,39,.10);
      --shadow: 0 10px 30px rgba(17,24,39,.08);
      --shadow2: 0 8px 18px rgba(17,24,39,.10);
      --brand1:#ff3b7a;
      --brand2:#7c3aed;
      --brand3:#00a3ff;
      --accent:#ffb703;
      --ok:#16a34a;
      --radius:18px;
      --radius2:14px;
      --container: 1120px;
      --padX: 20px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC", "Hiragino Sans GB","Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 700px at 15% -10%, rgba(255,59,122,.18), transparent 60%),
        radial-gradient(900px 600px at 80% 10%, rgba(124,58,237,.18), transparent 55%),
        linear-gradient(180deg, var(--bg), var(--bg2));
    }

    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 var(--padX);
    }

    .skip-link{
      position:absolute; left:10px; top:-50px;
      background:#111827; color:#fff; padding:10px 12px; border-radius:10px;
      z-index:9999;
      transition:top .2s ease;
    }
    .skip-link:focus{top:10px}

    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter:saturate(140%) blur(10px);
      background:rgba(255,247,251,.72);
      border-bottom:1px solid rgba(17,24,39,.06);
    }
    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width: 210px;
    }
    .brand img{
      width:40px; height:40px; border-radius:12px;
      object-fit:cover;
      box-shadow: 0 10px 24px rgba(255,59,122,.22);
    }
    .brand .brand-text{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand .brand-name{
      font-weight:900; letter-spacing:.2px;
      font-size:15px;
    }
    .brand .brand-sub{
      font-size:12px; color:var(--muted);
    }

    nav{
      display:flex; align-items:center; gap:12px;
      flex:1; justify-content:flex-end;
    }

    .nav-links{
      display:flex; align-items:center; gap:16px;
      padding:0;
      list-style:none;
      margin:0;
    }
    .nav-links a{
      font-size:13.5px;
      color:rgba(17,24,39,.86);
      padding:8px 10px;
      border-radius:12px;
      transition: background .15s ease, color .15s ease, transform .15s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background:rgba(255,59,122,.10);
      color:#111827;
      transform: translateY(-1px);
    }

    .nav-cta{
      display:flex; align-items:center; gap:10px;
      margin-left:10px;
    }

    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      padding:11px 14px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.75);
      color:#111827;
      font-weight:800;
      font-size:13.5px;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:hover{
      transform: translateY(-1px);
      box-shadow: 0 10px 20px rgba(17,24,39,.10);
      border-color: rgba(255,59,122,.35);
    }
    .btn:active{transform: translateY(0)}
    .btn-primary{
      border-color: rgba(255,59,122,.35);
      background: linear-gradient(135deg, rgba(255,59,122,.18), rgba(124,58,237,.14));
    }
    .btn-accent{
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      border-color: rgba(0,0,0,0);
      color:#fff;
      box-shadow: 0 16px 28px rgba(124,58,237,.22);
    }
    .btn-accent:hover{
      box-shadow: 0 18px 36px rgba(124,58,237,.26);
      border-color: rgba(255,255,255,.25);
    }
    .btn-ghost{
      background:rgba(255,255,255,.62);
    }
    .btn .dot{
      width:10px; height:10px; border-radius:999px;
      background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,.6) 30%, rgba(255,255,255,0) 60%), linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow: 0 0 0 4px rgba(255,59,122,.12);
    }

    .hamburger{
      display:none;
      width:44px; height:44px; border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      cursor:pointer;
      align-items:center; justify-content:center;
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .hamburger:hover{transform: translateY(-1px); box-shadow: 0 10px 20px rgba(17,24,39,.10)}
    .hamburger span{
      display:block; width:18px; height:2px; background:#111827; border-radius:2px;
      position:relative;
    }
    .hamburger span::before, .hamburger span::after{
      content:""; position:absolute; left:0; width:18px; height:2px; background:#111827; border-radius:2px;
      transition: transform .18s ease, top .18s ease, opacity .18s ease;
    }
    .hamburger span::before{top:-6px}
    .hamburger span::after{top:6px}
    .hamburger[aria-expanded="true"] span{background:transparent}
    .hamburger[aria-expanded="true"] span::before{top:0; transform: rotate(45deg)}
    .hamburger[aria-expanded="true"] span::after{top:0; transform: rotate(-45deg)}

    .mobile-panel{
      display:none;
      padding:10px 0 16px;
    }
    .mobile-panel .stack{
      display:flex; flex-direction:column; gap:10px;
    }
    .mobile-panel a{
      padding:12px 12px;
      border-radius:14px;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(17,24,39,.08);
      font-weight:800; font-size:13.5px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .mobile-panel a:hover{
      transform: translateY(-1px);
      box-shadow: 0 12px 24px rgba(17,24,39,.10);
      border-color: rgba(255,59,122,.25);
    }

    .hero{
      padding:34px 0 14px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:18px;
      align-items:stretch;
    }

    .hero-left{
      position:relative;
      border-radius: 26px;
      padding:26px 22px;
      overflow:hidden;
      background:
        radial-gradient(900px 520px at 10% 0%, rgba(255,59,122,.18), transparent 55%),
        radial-gradient(700px 420px at 90% 20%, rgba(124,58,237,.18), transparent 50%),
        linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.55));
      border:1px solid rgba(17,24,39,.08);
      box-shadow: 0 18px 40px rgba(17,24,39,.10);
      min-height: 360px;
    }
    .hero-left::after{
      content:"";
      position:absolute; inset:-2px;
      background:
        linear-gradient(90deg, rgba(255,59,122,.0), rgba(255,59,122,.28), rgba(124,58,237,.25), rgba(0,163,255,.18), rgba(255,59,122,.0));
      opacity:.25;
      transform: translateX(-40%);
      animation: sheen 9s ease-in-out infinite;
      pointer-events:none;
    }
    @keyframes sheen{
      0%{transform: translateX(-50%)}
      50%{transform: translateX(30%)}
      100%{transform: translateX(-50%)}
    }

    .hero-content{
      position:relative;
      z-index:1;
      display:flex; flex-direction:column; gap:14px;
      max-width: 650px;
    }

    .kicker{
      display:flex; align-items:center; gap:10px;
      color:rgba(17,24,39,.86);
      font-weight:900;
      letter-spacing:.2px;
      font-size:13px;
      flex-wrap:wrap;
    }
    .kicker .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(255,59,122,.25);
      background:rgba(255,255,255,.70);
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(124,58,237,.22);
      background:rgba(255,255,255,.62);
      font-weight:900;
    }
    .badge svg{width:16px; height:16px}
    .hero h1{
      margin:0;
      font-size: 34px;
      line-height:1.15;
      letter-spacing:-.6px;
      font-weight: 1000;
    }
    .hero p{
      margin:0;
      color: rgba(17,24,39,.74);
      font-size: 15.5px;
      line-height:1.7;
      max-width: 60ch;
    }

    .hero-actions{
      display:flex; gap:12px; flex-wrap:wrap;
      margin-top:2px;
      align-items:center;
    }
    .mini-note{
      display:flex; align-items:center; gap:10px;
      color: rgba(17,24,39,.70);
      font-size: 13px;
      font-weight:700;
    }
    .mini-note .spark{
      width:34px; height:34px;
      border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(255,59,122,.20), rgba(124,58,237,.16));
      border:1px solid rgba(17,24,39,.08);
      box-shadow: 0 14px 28px rgba(124,58,237,.14);
    }
    .mini-note svg{width:18px; height:18px}

    .hero-right{
      border-radius: 26px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.52));
      border:1px solid rgba(17,24,39,.08);
      box-shadow: 0 18px 40px rgba(17,24,39,.08);
      padding:18px;
      display:flex; flex-direction:column; gap:12px;
      min-height: 360px;
    }

    .stat-grid{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .stat-card{
      border-radius: 16px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.78);
      padding:14px 12px;
      transition: transform .15s ease, box-shadow .15s ease;
      position:relative;
      overflow:hidden;
      min-height: 96px;
    }
    .stat-card::before{
      content:"";
      position:absolute; inset:-20px -30px auto auto;
      width:120px; height:120px;
      background: radial-gradient(circle at 30% 30%, rgba(255,59,122,.35), rgba(124,58,237,.18) 45%, transparent 70%);
      transform: rotate(10deg);
      opacity:.85;
      pointer-events:none;
    }
    .stat-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(17,24,39,.10);
    }
    .stat-top{
      position:relative;
      z-index:1;
      display:flex; align-items:center; justify-content:space-between;
      gap:8px;
      margin-bottom:8px;
    }
    .stat-icon{
      width:36px; height:36px; border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(17,24,39,.08);
      background: linear-gradient(135deg, rgba(255,59,122,.16), rgba(124,58,237,.12));
    }
    .stat-icon svg{width:18px; height:18px}
    .stat-value{
      position:relative;
      z-index:1;
      font-size: 22px;
      font-weight: 1000;
      letter-spacing:-.4px;
    }
    .stat-label{
      position:relative;
      z-index:1;
      color: rgba(17,24,39,.70);
      font-weight:800;
      font-size: 12.5px;
      line-height:1.35;
      margin-top:2px;
    }

    .hero-panel{
      border-radius: 18px;
      border:1px solid rgba(17,24,39,.08);
      background:
        radial-gradient(600px 280px at 10% 0%, rgba(0,163,255,.12), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
      padding:14px;
      display:flex;
      flex-direction:column;
      gap:10px;
      flex:1;
      justify-content:space-between;
    }
    .panel-title{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .panel-title h3{
      margin:0;
      font-size: 14.5px;
      letter-spacing:.2px;
      font-weight:1000;
    }
    .panel-title .tag{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.70);
      border:1px solid rgba(255,59,122,.22);
      font-weight:900;
      color: rgba(17,24,39,.85);
      font-size: 12px;
      white-space:nowrap;
    }
    .tag .ring{
      width:10px; height:10px; border-radius:999px;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow: 0 0 0 4px rgba(255,59,122,.12);
    }
    .panel-list{
      list-style:none;
      margin:0;
      padding:0;
      display:flex; flex-direction:column; gap:10px;
    }
    .panel-list li{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 10px;
      border-radius:14px;
      background:rgba(255,255,255,.62);
      border:1px solid rgba(17,24,39,.07);
    }
    .li-dot{
      width:10px; height:10px; border-radius:999px;
      margin-top:6px;
      background: linear-gradient(135deg, var(--brand1), var(--brand3));
      box-shadow: 0 0 0 4px rgba(0,163,255,.10);
      flex:0 0 auto;
    }
    .panel-list strong{
      display:block;
      font-size: 13.5px;
      font-weight:1000;
      margin-bottom:2px;
    }
    .panel-list span{
      color: rgba(17,24,39,.70);
      font-weight:800;
      font-size: 12.7px;
      line-height:1.45;
    }

    main{padding: 6px 0 30px}
    section{padding: 18px 0}
    .section-title{
      display:flex; align-items:flex-end; justify-content:space-between; gap:12px;
      margin:8px 0 14px;
    }
    .section-title h2{
      margin:0;
      font-size: 22px;
      line-height:1.25;
      letter-spacing:-.3px;
      font-weight: 1000;
    }
    .section-title p{
      margin:0;
      color: rgba(17,24,39,.70);
      font-weight:800;
      font-size: 13.5px;
      line-height:1.5;
      max-width: 52ch;
    }

    .grid-3{
      display:grid; grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .card{
      border-radius: var(--radius);
      background: rgba(255,255,255,.72);
      border:1px solid rgba(17,24,39,.08);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
      padding:16px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      position:relative;
      overflow:hidden;
      min-height: 138px;
    }
    .card:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(17,24,39,.10);
      border-color: rgba(255,59,122,.22);
    }
    .card h3{
      margin:0 0 8px;
      font-size: 15.5px;
      letter-spacing:-.1px;
      font-weight:1000;
    }
    .card p{
      margin:0;
      color: rgba(17,24,39,.72);
      font-weight:800;
      font-size: 13.5px;
      line-height:1.65;
    }
    .card .corner{
      position:absolute; right:-20px; top:-20px;
      width:78px; height:78px;
      border-radius:26px;
      background: radial-gradient(circle at 30% 30%, rgba(255,59,122,.30), rgba(124,58,237,.16) 50%, transparent 70%);
      opacity:.9;
      pointer-events:none;
    }
    .icon-bubble{
      width:44px; height:44px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(17,24,39,.08);
      background: linear-gradient(135deg, rgba(255,59,122,.14), rgba(124,58,237,.12));
      margin-bottom:10px;
      box-shadow: 0 18px 36px rgba(124,58,237,.12);
    }
    .icon-bubble svg{width:20px; height:20px}

    .cap-grid{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .list-steps{
      list-style:none; margin:0; padding:0;
      display:flex; flex-direction:column; gap:10px;
    }
    .step{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px;
      border-radius: 18px;
      background:rgba(255,255,255,.70);
      border:1px solid rgba(17,24,39,.08);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .step:hover{
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(17,24,39,.09);
      border-color: rgba(124,58,237,.22);
    }
    .step .num{
      width:42px; height:42px;
      border-radius:16px;
      background: linear-gradient(135deg, rgba(255,59,122,.22), rgba(124,58,237,.18));
      border:1px solid rgba(17,24,39,.08);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      color:#111827;
      flex:0 0 auto;
      box-shadow: 0 18px 36px rgba(124,58,237,.12);
    }
    .step strong{
      display:block;
      font-weight:1000;
      margin-bottom:4px;
      font-size:14.5px;
    }
    .step span{
      color: rgba(17,24,39,.72);
      font-weight:800;
      font-size:13.2px;
      line-height:1.6;
    }

    .compare-wrap{
      border-radius: 22px;
      background:
        radial-gradient(700px 360px at 18% 0%, rgba(255,59,122,.14), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.58));
      border:1px solid rgba(17,24,39,.08);
      box-shadow: 0 16px 34px rgba(17,24,39,.08);
      padding:14px;
      overflow:hidden;
    }
    .rating-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
      padding:6px 6px 10px;
    }
    .rating-badge{
      display:flex; align-items:center; gap:14px;
      padding:12px 12px;
      border-radius: 18px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.74);
    }
    .stars{
      display:flex; gap:4px; color:#f59e0b;
      font-size:14px;
    }
    .rating-badge .score{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .rating-badge .score strong{
      font-size: 26px;
      font-weight:1000;
      letter-spacing:-.6px;
    }
    .rating-badge .score span{
      color: rgba(17,24,39,.70);
      font-weight:900;
      font-size: 13px;
      margin-top:4px;
    }
    .compare-hint{
      color: rgba(17,24,39,.70);
      font-weight:800;
      font-size: 13.5px;
      line-height:1.5;
      max-width: 56ch;
      padding:10px 6px;
    }

    .compare-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      overflow:auto;
      margin-top:6px;
      border-radius: 16px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.70);
    }
    .compare-table th, .compare-table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(17,24,39,.08);
      vertical-align:top;
      font-size: 13.5px;
      font-weight:900;
      color: rgba(17,24,39,.86);
      text-align:left;
      white-space:normal;
    }
    .compare-table th{
      background: linear-gradient(135deg, rgba(255,59,122,.12), rgba(124,58,237,.10));
      font-size: 13px;
      color: rgba(17,24,39,.78);
    }
    .compare-table tr:last-child td{border-bottom:0}
    .good{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius: 999px;
      border:1px solid rgba(22,163,74,.22);
      background: rgba(22,163,74,.10);
      color:#0f766e;
      font-weight:1000;
    }
    .mid{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius: 999px;
      border:1px solid rgba(245,158,11,.22);
      background: rgba(245,158,11,.10);
      color:#92400e;
      font-weight:1000;
    }
    .bad{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius: 999px;
      border:1px solid rgba(239,68,68,.22);
      background: rgba(239,68,68,.10);
      color:#b91c1c;
      font-weight:1000;
    }
    .legend-row{
      display:flex; flex-wrap:wrap; gap:10px;
      padding:10px 8px 0;
      color: rgba(17,24,39,.72);
      font-weight:900;
      font-size: 13px;
    }

    .cards-2{
      display:grid; grid-template-columns: 1.05fr .95fr; gap:14px;
      align-items:start;
    }

    .timeline{
      border-radius: 22px;
      padding:14px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 14px 30px rgba(17,24,39,.06);
    }
    .timeline ol{margin:0; padding:0; list-style:none; display:flex; flex-direction:column; gap:12px}
    .t-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px;
      border-radius: 18px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.72);
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .t-item:hover{transform: translateY(-2px); box-shadow: 0 14px 30px rgba(17,24,39,.08)}
    .t-dot{
      width:14px; height:14px; border-radius:999px; margin-top:6px;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow: 0 0 0 5px rgba(255,59,122,.12);
      flex:0 0 auto;
    }
    .t-content strong{
      display:block;
      font-weight:1000;
      margin-bottom:4px;
      font-size: 14.5px;
    }
    .t-content span{
      color: rgba(17,24,39,.72);
      font-weight:800;
      font-size: 13.2px;
      line-height:1.6;
      display:block;
    }

    .tagcloud{
      border-radius:22px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 14px 30px rgba(17,24,39,.06);
      padding:14px;
    }
    .tagcloud .cloud{
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .tagchip{
      padding:10px 12px;
      border-radius: 999px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.72);
      font-weight:1000;
      font-size: 13px;
      color: rgba(17,24,39,.82);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .tagchip:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(17,24,39,.10);
      border-color: rgba(0,163,255,.25);
    }

    .section-split{
      display:grid; grid-template-columns: .9fr 1.1fr;
      gap:14px; align-items:start;
    }

    .cases{
      display:grid; grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .case-card{
      border-radius: 22px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(17,24,39,.08);
      box-shadow: 0 14px 30px rgba(17,24,39,.06);
      padding:14px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      min-height: 190px;
      display:flex; flex-direction:column; justify-content:space-between;
      overflow:hidden;
      position:relative;
    }
    .case-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 36px rgba(17,24,39,.10);
      border-color: rgba(255,59,122,.22);
    }
    .case-card .top{
      display:flex; gap:12px; align-items:flex-start;
    }
    .case-ico{
      width:46px; height:46px; border-radius:18px;
      border:1px solid rgba(17,24,39,.08);
      background: linear-gradient(135deg, rgba(255,59,122,.14), rgba(124,58,237,.12));
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .case-ico svg{width:22px; height:22px}
    .case-card h3{
      margin:0;
      font-size: 15.5px;
      font-weight:1000;
      letter-spacing:-.1px;
    }
    .case-card p{
      margin:6px 0 0;
      color: rgba(17,24,39,.72);
      font-weight:850;
      font-size: 13.3px;
      line-height:1.6;
    }
    .case-meta{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:12px;
    }
    .meta-pill{
      padding:8px 10px;
      border-radius: 999px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.70);
      font-weight:1000;
      font-size: 12.5px;
      color: rgba(17,24,39,.78);
    }

    .article-list{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .article-item{
      border-radius: 22px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(17,24,39,.08);
      padding:14px;
      box-shadow: 0 12px 26px rgba(17,24,39,.06);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      display:flex; flex-direction:column; gap:8px;
      min-height: 152px;
    }
    .article-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 38px rgba(17,24,39,.10);
      border-color: rgba(124,58,237,.22);
    }
    .article-item .row{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .article-item .time{
      font-weight:1000;
      color: rgba(17,24,39,.64);
      font-size: 12.5px;
      white-space:nowrap;
    }
    .article-item h3{
      margin:0;
      font-size: 15px;
      font-weight:1000;
      letter-spacing:-.1px;
    }
    .article-item p{
      margin:0;
      color: rgba(17,24,39,.72);
      font-weight:850;
      font-size: 13.3px;
      line-height:1.6;
    }
    .article-item a.more{
      display:inline-flex; align-items:center; gap:8px;
      font-weight:1000;
      font-size: 13px;
      color:#111827;
      padding:10px 12px;
      border-radius: 14px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(17,24,39,.08);
      width: fit-content;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      margin-top:auto;
    }
    .article-item a.more:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(17,24,39,.10);
      border-color: rgba(255,59,122,.22);
    }

    .faq{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .faq-wrap{
      border-radius:22px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 14px 30px rgba(17,24,39,.06);
      padding:10px;
    }
    details.faq-item{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.72);
      padding:10px 12px;
      margin:10px 8px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    details.faq-item[open]{
      border-color: rgba(124,58,237,.26);
      box-shadow: 0 18px 40px rgba(124,58,237,.14);
      transform: translateY(-2px);
    }
    details.faq-item summary{
      cursor:pointer;
      list-style:none;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      padding:6px 2px;
    }
    details.faq-item summary::-webkit-details-marker{display:none}
    .q{
      font-weight:1000;
      font-size: 14.5px;
      line-height:1.4;
    }
    .chev{
      width:34px; height:34px;
      border-radius:14px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(17,24,39,.08);
      display:flex; align-items:center; justify-content:center;
      transition: transform .18s ease, border-color .18s ease;
      flex:0 0 auto;
      margin-top:-2px;
    }
    details[open] .chev{transform: rotate(180deg); border-color: rgba(255,59,122,.25)}
    .a{
      color: rgba(17,24,39,.74);
      font-weight:850;
      font-size: 13.3px;
      line-height:1.7;
      padding:10px 2px 6px;
    }

    .reviews{
      display:grid; grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .review-card{
      border-radius: 22px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.70);
      box-shadow: 0 14px 30px rgba(17,24,39,.06);
      padding:14px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      min-height: 190px;
      display:flex; flex-direction:column; gap:10px;
    }
    .review-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 38px rgba(17,24,39,.10);
      border-color: rgba(0,163,255,.22);
    }
    .review-head{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .review-person{
      display:flex; gap:10px; align-items:center;
    }
    .avatar{
      width:42px; height:42px;
      border-radius:16px;
      background: linear-gradient(135deg, rgba(0,163,255,.18), rgba(124,58,237,.16));
      border:1px solid rgba(17,24,39,.08);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      color: rgba(17,24,39,.88);
    }
    .review-person strong{
      display:block;
      font-weight:1000;
      font-size: 14px;
    }
    .review-person span{
      display:block;
      color: rgba(17,24,39,.70);
      font-weight:900;
      font-size: 12.6px;
      margin-top:3px;
    }
    .review-stars{
      display:flex; gap:4px; color:#f59e0b;
      font-size: 13px;
      padding-top:4px;
      white-space:nowrap;
    }
    .review-text{
      color: rgba(17,24,39,.74);
      font-weight:850;
      font-size: 13.3px;
      line-height:1.7;
      margin:0;
    }
    .review-foot{
      margin-top:auto;
      display:flex; flex-wrap:wrap; gap:10px;
    }

    .network{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .map-card{
      border-radius: 22px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.70);
      box-shadow: 0 14px 30px rgba(17,24,39,.06);
      padding:14px;
      overflow:hidden;
      position:relative;
      min-height: 320px;
    }
    .map-card::before{
      content:"";
      position:absolute; inset:-1px;
      background:
        radial-gradient(500px 260px at 20% 20%, rgba(255,59,122,.16), transparent 60%),
        radial-gradient(480px 240px at 80% 30%, rgba(0,163,255,.14), transparent 55%),
        radial-gradient(420px 200px at 40% 85%, rgba(124,58,237,.14), transparent 55%);
      pointer-events:none;
      opacity:.9;
    }
    .map-card .inner{position:relative; z-index:1}
    .map-head{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .map-head h3{
      margin:0;
      font-size: 15.5px;
      font-weight:1000;
    }
    .map-head p{
      margin:6px 0 0;
      color: rgba(17,24,39,.70);
      font-weight:850;
      font-size: 13.3px;
      line-height:1.6;
      max-width: 48ch;
    }
    .network-grid{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:12px;
    }
    .place{
      padding:12px;
      border-radius: 18px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.72);
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .place:hover{transform: translateY(-2px); box-shadow: 0 16px 30px rgba(17,24,39,.10)}
    .place strong{
      display:flex; align-items:center; gap:10px;
      font-size: 14px;
      font-weight:1000;
      margin-bottom:6px;
    }
    .place strong .ping{
      width:10px; height:10px; border-radius:999px;
      background: linear-gradient(135deg, var(--brand1), var(--brand3));
      box-shadow: 0 0 0 6px rgba(0,163,255,.10);
    }
    .place span{
      color: rgba(17,24,39,.72);
      font-weight:850;
      font-size: 13.1px;
      line-height:1.6;
      display:block;
    }

    form{
      display:flex; flex-direction:column; gap:10px;
    }
    .form-row{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    label{
      display:flex; flex-direction:column; gap:8px;
      font-weight:1000;
      font-size: 13px;
      color: rgba(17,24,39,.78);
    }
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius: 14px;
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.80);
      color:#111827;
      font-weight:850;
      font-size: 14px;
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
    }
    textarea{min-height:104px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(255,59,122,.35);
      box-shadow: 0 0 0 4px rgba(255,59,122,.12);
    }
    .form-actions{
      display:flex; gap:12px; align-items:center; flex-wrap:wrap;
      margin-top:2px;
    }
    .form-note{
      color: rgba(17,24,39,.68);
      font-weight:850;
      font-size: 12.8px;
      line-height:1.6;
      flex:1;
      min-width: 220px;
    }

    .contact-cards{
      display:grid; grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .contact-card{
      border-radius: 22px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 14px 30px rgba(17,24,39,.06);
      padding:14px;
      overflow:hidden;
    }

    .qr-card{
      display:flex; flex-direction:column; gap:12px;
    }
    .qr-row{
      display:flex; gap:12px; align-items:flex-start;
    }
    .qr{
      width:104px; height:104px;
      border-radius: 18px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.76);
      display:flex; align-items:center; justify-content:center;
      overflow:hidden;
      flex:0 0 auto;
    }
    .qr img{
      width:100%; height:100%;
      object-fit:cover;
      display:block;
    }
    .qr-row strong{
      display:block;
      font-size: 15.5px;
      font-weight:1000;
      margin-bottom:6px;
    }
    .qr-row span{
      display:block;
      color: rgba(17,24,39,.72);
      font-weight:850;
      font-size: 13.3px;
      line-height:1.7;
    }
    .contact-links{
      display:flex; flex-direction:column; gap:10px;
      margin-top:2px;
    }
    .contact-links a, .contact-links button{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      padding:12px 12px;
      border-radius: 18px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.72);
      font-weight:1000;
      color: rgba(17,24,39,.88);
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .contact-links a:hover, .contact-links button:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(17,24,39,.10);
      border-color: rgba(255,59,122,.22);
    }
    .contact-links small{
      color: rgba(17,24,39,.64);
      font-weight:900;
      font-size: 12.5px;
    }

    .btn-inline{
      display:inline-flex; align-items:center; gap:10px;
      font-weight:1000;
      padding:10px 12px;
      border-radius: 14px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.70);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      cursor:pointer;
    }
    .btn-inline:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(17,24,39,.10);
      border-color: rgba(124,58,237,.22);
    }

    .footer{
      margin-top: 10px;
      background:
        radial-gradient(900px 420px at 12% 0%, rgba(255,59,122,.12), transparent 56%),
        radial-gradient(900px 420px at 88% 20%, rgba(124,58,237,.12), transparent 56%),
        linear-gradient(180deg, rgba(255,255,255,.60), rgba(255,255,255,.46));
      border-top: 1px solid rgba(17,24,39,.08);
      padding: 22px 0 18px;
    }
    .footer-top{
      display:flex; gap:16px; justify-content:space-between; align-items:flex-start;
      flex-wrap:wrap;
    }
    .footer-brand{
      display:flex; gap:12px; align-items:flex-start;
      min-width: 280px;
    }
    .footer-brand img{
      width:44px; height:44px; border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      object-fit:cover;
      background:#fff;
    }
    .footer-brand strong{
      display:block;
      font-size: 16px;
      font-weight:1000;
      margin-bottom:6px;
    }
    .footer-brand p{
      margin:0;
      color: rgba(17,24,39,.70);
      font-weight:850;
      font-size: 13.3px;
      line-height:1.65;
      max-width: 56ch;
    }
    .footer-links{
      display:flex; flex-wrap:wrap; gap:10px;
      align-items:center;
      justify-content:flex-end;
      flex:1;
    }
    .footer-links a{
      padding:10px 12px;
      border-radius: 999px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.66);
      font-weight:1000;
      font-size: 13px;
      color: rgba(17,24,39,.82);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .footer-links a:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(17,24,39,.10);
      border-color: rgba(0,163,255,.22);
    }

    .footer-bottom{
      margin-top:16px;
      display:flex;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      padding-top:14px;
      border-top: 1px solid rgba(17,24,39,.08);
      color: rgba(17,24,39,.70);
      font-weight:900;
      font-size: 12.8px;
    }
    .foot-left{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    }
    .social{
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .social a{
      padding:10px 12px;
      border-radius: 14px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.66);
      color: rgba(17,24,39,.82);
      font-weight:1000;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .social a:hover{transform: translateY(-2px); box-shadow: 0 16px 30px rgba(17,24,39,.10); border-color: rgba(255,59,122,.22)}
    .float-cs{
      position:fixed;
      right: 16px;
      bottom: 16px;
      z-index:80;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .float-btn{
      display:flex; align-items:center; gap:10px;
      padding:12px 12px;
      border-radius: 18px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 16px 34px rgba(17,24,39,.12);
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      font-weight:1000;
      color: rgba(17,24,39,.88);
      white-space:nowrap;
    }
    .float-btn:hover{
      transform: translateY(-2px);
      border-color: rgba(255,59,122,.25);
      box-shadow: 0 18px 40px rgba(17,24,39,.16);
    }
    .float-btn svg{width:18px; height:18px}
    .toast{
      position:fixed;
      left:50%;
      transform: translateX(-50%);
      bottom: 92px;
      background: rgba(17,24,39,.92);
      color:#fff;
      padding:12px 14px;
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0,0,0,.25);
      font-weight:900;
      font-size: 13px;
      z-index:90;
      opacity:0;
      pointer-events:none;
      transition: opacity .18s ease, transform .18s ease;
      max-width: calc(100vw - 28px);
      text-align:center;
    }
    .toast.show{
      opacity:1;
      transform: translateX(-50%) translateY(-4px);
    }

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

    .divider{
      height:1px;
      background: rgba(17,24,39,.08);
      margin: 6px 0 0;
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .hero-left, .hero-right{min-height: auto}
      .grid-3{grid-template-columns: 1fr; }
      .cap-grid{grid-template-columns: 1fr}
      .cards-2{grid-template-columns: 1fr}
      .cases{grid-template-columns: 1fr}
      .article-list{grid-template-columns: 1fr}
      .faq{grid-template-columns: 1fr}
      .reviews{grid-template-columns: 1fr}
      .network{grid-template-columns: 1fr}
      .section-split{grid-template-columns: 1fr}
      .contact-cards{grid-template-columns: 1fr}
      .form-row{grid-template-columns: 1fr}
      .nav-links{display:none}
      .hamburger{display:flex}
      .mobile-panel{display:block}
      nav{justify-content:flex-end}
      .nav-cta{display:none}
      .footer-links{justify-content:flex-start}
    }

    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .hero-left::after{animation:none}
      .reveal{transition:none}
    }