:root{
      --bg0:#ffffff;
      --bg1:#fbfbfe;
      --card:#ffffff;
      --text:#1f2937;
      --muted:#6b7280;
      --line:rgba(15,23,42,.12);
      --shadow:0 14px 40px rgba(17,24,39,.08);
      --shadow2:0 10px 28px rgba(17,24,39,.10);
      --radius:18px;
      --radius2:26px;

      --gradA:#7c3aed;
      --gradB:#2563eb;
      --gradC:#06b6d4;
      --gradD:#22c55e;
      --brand1:#6d28d9;
      --brand2:#2563eb;

      --focus: rgba(37,99,235,.18);
      --btnText:#ffffff;
      --chipBg: rgba(124,58,237,.08);
      --chipLine: rgba(124,58,237,.16);
      --success:#16a34a;
      --warn:#f59e0b;
    }

    *{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, "Apple Color Emoji","Segoe UI Emoji";
      background:
        radial-gradient(1200px 600px at 20% 0%, rgba(124,58,237,.10), transparent 60%),
        radial-gradient(900px 500px at 90% 10%, rgba(37,99,235,.10), transparent 55%),
        radial-gradient(700px 420px at 50% 30%, rgba(6,182,212,.08), transparent 55%),
        linear-gradient(180deg, var(--bg1), var(--bg0) 46%, #ffffff 100%);
      color:var(--text);
    }

    .container{
      width:100%;
      max-width:1180px;
      margin:0 auto;
      padding:0 18px;
    }

    .skip-link{
      position:absolute;
      left:12px;
      top:-40px;
      background:#0f172a;
      color:#fff;
      padding:10px 12px;
      border-radius:12px;
      z-index:9999;
      transition:top .2s ease;
      text-decoration:none;
      font-weight:700;
      letter-spacing:.2px;
    }
    .skip-link:focus{top:12px; outline:none; box-shadow:0 0 0 4px rgba(124,58,237,.25)}

    header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,.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:12px;
      min-width: 210px;
    }
    .brand img{
      width:44px;
      height:44px;
      border-radius:14px;
      background: rgba(124,58,237,.06);
      padding:8px;
      object-fit:contain;
      box-shadow: 0 10px 24px rgba(124,58,237,.12);
    }
    .brand .brand-meta{
      display:flex;
      flex-direction:column;
      line-height:1.12;
    }
    .brand .brand-title{
      font-weight:900;
      letter-spacing:.2px;
      font-size:14px;
    }
    .brand .brand-sub{
      color:var(--muted);
      font-size:12px;
      white-space:nowrap;
    }

    nav .nav-links{
      display:flex;
      gap:14px;
      align-items:center;
      flex-wrap:nowrap;
    }

    .nav-links a{
      color:#111827;
      text-decoration:none;
      font-weight:700;
      font-size:13px;
      padding:10px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background: rgba(124,58,237,.06);
      border-color: rgba(124,58,237,.14);
      box-shadow: 0 10px 22px rgba(124,58,237,.08);
      transform: translateY(-1px);
    }

    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
      min-width: 210px;
      justify-content:flex-end;
    }

    .btn{
      appearance:none;
      border:1px solid transparent;
      background: transparent;
      cursor:pointer;
      border-radius:14px;
      padding:11px 14px;
      font-weight:900;
      letter-spacing:.2px;
      font-size:13px;
      transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease, color .12s ease;
      text-decoration:none;
      display:inline-flex;
      align-items:center;
      gap:10px;
      user-select:none;
      -webkit-tap-highlight-color: transparent;
    }
    .btn:focus{outline:none; box-shadow:0 0 0 4px var(--focus)}
    .btn:hover{transform: translateY(-1px)}
    .btn-primary{
      background: linear-gradient(135deg, rgba(124,58,237,1), rgba(37,99,235,1));
      color:var(--btnText);
      box-shadow: 0 16px 40px rgba(37,99,235,.20);
    }
    .btn-primary:hover{box-shadow: 0 22px 52px rgba(37,99,235,.26)}
    .btn-ghost{
      border-color: rgba(15,23,42,.14);
      color:#0f172a;
      background: rgba(255,255,255,.55);
    }
    .btn-ghost:hover{border-color: rgba(124,58,237,.24); background: rgba(124,58,237,.06)}
    .btn-small{padding:9px 12px; border-radius:12px; font-size:12px; font-weight:900}

    .icon-dot{
      width:10px; height:10px;
      border-radius:999px;
      background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,.4) 36%, transparent 60%),
                  linear-gradient(135deg, var(--gradC), var(--gradA));
      box-shadow: 0 0 0 4px rgba(6,182,212,.12);
      flex:0 0 auto;
    }

    .mobile-toggle{
      display:none;
      border:1px solid rgba(15,23,42,.14);
      background: rgba(255,255,255,.7);
      border-radius:14px;
      padding:10px 12px;
      cursor:pointer;
      font-weight:900;
      transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
    }
    .mobile-toggle:hover{transform: translateY(-1px); border-color: rgba(124,58,237,.22)}
    .mobile-toggle:focus{outline:none; box-shadow:0 0 0 4px var(--focus)}
    .hamburger{
      width:20px; height:14px; position:relative;
    }
    .hamburger span{
      position:absolute; left:0; right:0; height:2px;
      background:#0f172a;
      border-radius:2px;
      transition: transform .18s ease, top .18s ease, opacity .18s ease;
    }
    .hamburger span:nth-child(1){top:0}
    .hamburger span:nth-child(2){top:6px}
    .hamburger span:nth-child(3){top:12px}

    .mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(1){top:6px; transform: rotate(45deg)}
    .mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(2){opacity:0}
    .mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(3){top:6px; transform: rotate(-45deg)}

    .mobile-menu{
      display:none;
      padding:10px 0 14px;
      border-top: 1px solid rgba(15,23,42,.08);
    }
    .mobile-menu.open{display:block}
    .mobile-menu .menu-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      padding-top:10px;
    }
    .mobile-menu a{
      text-decoration:none;
      font-weight:900;
      color:#0f172a;
      background: rgba(255,255,255,.75);
      border:1px solid rgba(15,23,42,.10);
      border-radius:16px;
      padding:12px 12px;
      transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, background .12s ease;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .mobile-menu a:hover{
      transform: translateY(-1px);
      border-color: rgba(124,58,237,.22);
      box-shadow: 0 18px 36px rgba(124,58,237,.10);
      background: rgba(124,58,237,.06);
    }
    .chev{width:10px; height:10px; border-right:2px solid rgba(15,23,42,.35); border-bottom:2px solid rgba(15,23,42,.35); transform: rotate(-45deg);}

    main{padding-bottom:10px}

    .hero{
      padding:26px 0 18px;
      position:relative;
      overflow:hidden;
    }

    .hero-shell{
      border-radius: var(--radius2);
      background:
        radial-gradient(900px 420px at 12% 0%, rgba(124,58,237,.22), transparent 55%),
        radial-gradient(900px 420px at 82% 10%, rgba(37,99,235,.18), transparent 55%),
        radial-gradient(720px 420px at 55% 40%, rgba(6,182,212,.14), transparent 60%),
        linear-gradient(135deg, rgba(255,255,255,.88), rgba(255,255,255,.74));
      border:1px solid rgba(15,23,42,.08);
      box-shadow: var(--shadow);
      padding:22px;
    }

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

    .kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      background: rgba(255,255,255,.65);
      border:1px solid rgba(124,58,237,.18);
      border-radius:999px;
      padding:10px 12px;
      font-weight:900;
      color:#0f172a;
      letter-spacing:.2px;
      width: fit-content;
      max-width:100%;
    }
    .kicker .pill{
      width:10px;height:10px;border-radius:999px;
      background: linear-gradient(135deg, var(--gradC), var(--gradA));
      box-shadow: 0 0 0 4px rgba(124,58,237,.12);
    }

    h1{
      margin:14px 0 10px;
      font-size:34px;
      line-height:1.12;
      letter-spacing:-.4px;
      font-weight:1000;
    }
    .hero-lead{
      margin:0;
      color: rgba(17,24,39,.78);
      font-size:15px;
      line-height:1.7;
      max-width: 60ch;
      font-weight:650;
    }

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

    .micro{
      display:flex;
      align-items:flex-start;
      gap:10px;
      padding:10px 12px;
      border-radius:16px;
      background: rgba(255,255,255,.58);
      border:1px solid rgba(15,23,42,.08);
      min-width: 220px;
    }
    .micro svg{flex:0 0 auto; margin-top:2px}
    .micro strong{display:block; font-size:13px; letter-spacing:.1px}
    .micro span{display:block; font-size:12px; color:var(--muted); margin-top:2px; line-height:1.4; font-weight:650}

    .hero-right{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .glass-panel{
      border-radius: 18px;
      background: rgba(255,255,255,.60);
      border:1px solid rgba(15,23,42,.08);
      padding:14px;
      overflow:hidden;
      position:relative;
    }
    .glass-panel:before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(260px 140px at 20% 10%, rgba(124,58,237,.18), transparent 60%),
        radial-gradient(240px 140px at 80% 0%, rgba(37,99,235,.14), transparent 60%);
      pointer-events:none;
      opacity:.9;
    }
    .glass-panel > *{position:relative}

    .data-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .stat{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.09);
      background: rgba(255,255,255,.62);
      transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
    }
    .stat:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 42px rgba(37,99,235,.12);
      border-color: rgba(37,99,235,.20);
    }
    .stat .num{
      font-size:18px;
      font-weight:1000;
      letter-spacing:-.2px;
    }
    .stat .lab{
      margin-top:6px;
      color:var(--muted);
      font-size:12px;
      font-weight:700;
      line-height:1.35;
    }

    .timeline{
      display:flex;
      flex-direction:column;
      gap:10px;
      padding-top:2px;
    }
    .t-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:10px 10px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.55);
    }
    .t-badge{
      width:34px; height:34px;
      border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      color:#0f172a;
      background: linear-gradient(135deg, rgba(124,58,237,.14), rgba(37,99,235,.10));
      border:1px solid rgba(124,58,237,.22);
      flex:0 0 auto;
      margin-top:2px;
    }
    .t-item strong{display:block; font-size:13px; font-weight:1000}
    .t-item span{display:block; font-size:12px; color:var(--muted); margin-top:3px; line-height:1.45; font-weight:650}

    .section{
      padding:28px 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      margin-bottom:14px;
    }
    .section-title{
      margin:0;
      font-size:22px;
      letter-spacing:-.2px;
      font-weight:1000;
    }
    .section-desc{
      margin:6px 0 0;
      color: rgba(17,24,39,.78);
      line-height:1.65;
      font-weight:650;
      font-size:14px;
      max-width: 72ch;
    }
    .section-note{
      color:var(--muted);
      font-weight:800;
      font-size:12px;
      letter-spacing:.2px;
      white-space:nowrap;
      display:flex;
      align-items:center;
      gap:8px;
      padding:10px 12px;
      border:1px solid rgba(15,23,42,.10);
      border-radius:16px;
      background: rgba(255,255,255,.62);
    }

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

    .card{
      border-radius: var(--radius);
      background: var(--card);
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 10px 24px rgba(17,24,39,.06);
      padding:16px;
      position:relative;
      overflow:hidden;
    }

    .card-soft{
      background: rgba(255,255,255,.72);
      border-color: rgba(15,23,42,.09);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
    }

    .card h3{
      margin:10px 0 8px;
      font-size:15px;
      font-weight:1000;
      letter-spacing:-.1px;
    }
    .card p{
      margin:0;
      color: rgba(17,24,39,.76);
      line-height:1.65;
      font-size:13px;
      font-weight:650;
    }

    .badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:999px;
      background: var(--chipBg);
      border:1px solid var(--chipLine);
      font-weight:1000;
      font-size:12px;
      letter-spacing:.2px;
    }
    .badge i{
      width:10px;height:10px;border-radius:999px;
      background: linear-gradient(135deg, rgba(124,58,237,1), rgba(37,99,235,1));
      box-shadow: 0 0 0 4px rgba(124,58,237,.12);
      display:inline-block;
    }

    .step-list{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
      align-items:stretch;
    }

    .step{
      padding:16px;
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(220px 120px at 15% 0%, rgba(124,58,237,.12), transparent 60%),
        radial-gradient(220px 120px at 90% 10%, rgba(37,99,235,.10), transparent 62%),
        rgba(255,255,255,.78);
      box-shadow: 0 10px 24px rgba(17,24,39,.06);
      transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
      position:relative;
      overflow:hidden;
    }
    .step:hover{
      transform: translateY(-2px);
      box-shadow: 0 22px 52px rgba(37,99,235,.12);
      border-color: rgba(37,99,235,.20);
    }
    .step .top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .step .n{
      width:40px;height:40px;border-radius:16px;
      display:flex;align-items:center;justify-content:center;
      font-weight:1000;
      background: rgba(255,255,255,.65);
      border:1px solid rgba(15,23,42,.10);
    }
    .step .tag{
      font-size:12px;
      font-weight:1000;
      color: rgba(17,24,39,.80);
      background: rgba(255,255,255,.55);
      border:1px solid rgba(124,58,237,.18);
      padding:8px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .step h3{
      margin:12px 0 8px;
      font-size:14px;
      font-weight:1000;
      letter-spacing:-.1px;
    }
    .step p{font-size:13px}

    .compare{
      overflow:hidden;
    }
    .compare-table-wrap{
      overflow:auto;
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
    }
    table{
      width:100%;
      min-width: 860px;
      border-collapse: collapse;
    }
    th, td{
      padding:14px 12px;
      border-bottom:1px solid rgba(15,23,42,.08);
      vertical-align:top;
      text-align:left;
      font-size:13px;
      line-height:1.55;
    }
    th{
      background:
        linear-gradient(135deg, rgba(124,58,237,.12), rgba(37,99,235,.10));
      font-weight:1000;
      letter-spacing:.2px;
      color:#0f172a;
    }
    tr:last-child td{border-bottom:none}
    .td-strong{font-weight:1000}
    .check{
      display:flex; align-items:center; gap:8px; font-weight:950;
    }
    .check .ok{
      width:18px;height:18px;border-radius:7px;
      background: rgba(22,163,74,.12);
      border:1px solid rgba(22,163,74,.25);
      display:inline-flex;align-items:center;justify-content:center;
      color: var(--success);
      font-size:12px;
      font-weight:1000;
    }
    .x{
      display:flex; align-items:center; gap:8px; font-weight:950;
      color: rgba(17,24,39,.75);
    }
    .x .bad{
      width:18px;height:18px;border-radius:7px;
      background: rgba(245,158,11,.12);
      border:1px solid rgba(245,158,11,.25);
      display:inline-flex;align-items:center;justify-content:center;
      color: var(--warn);
      font-size:12px;
      font-weight:1000;
    }

    .rating{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      margin-bottom:12px;
      flex-wrap:wrap;
    }
    .rating .stars{
      display:flex; align-items:center; gap:10px;
    }
    .star-row{
      display:flex; gap:6px;
    }
    .star{
      width:18px;height:18px; display:inline-block;
      background: linear-gradient(135deg, rgba(124,58,237,1), rgba(37,99,235,1));
      clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
      box-shadow: 0 10px 22px rgba(37,99,235,.18);
    }
    .rating .score{
      display:flex; flex-direction:column; align-items:flex-end; gap:4px;
    }
    .score .big{
      font-weight:1000; font-size:28px; letter-spacing:-.5px;
    }
    .score .small{color:var(--muted); font-weight:800; font-size:12px}

    .mosaic{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:stretch;
    }

    .panel-list{
      display:flex;
      flex-direction:column;
      gap:10px;
      padding-top:4px;
    }
    .li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.09);
      background: rgba(255,255,255,.70);
      transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
    }
    .li:hover{
      transform: translateY(-2px);
      border-color: rgba(124,58,237,.22);
      box-shadow: 0 18px 42px rgba(124,58,237,.10);
    }
    .li .dot{
      width:14px;height:14px;border-radius:6px;
      background: linear-gradient(135deg, rgba(124,58,237,1), rgba(6,182,212,1));
      box-shadow: 0 0 0 4px rgba(124,58,237,.12);
      margin-top:3px;
      flex:0 0 auto;
    }
    .li strong{display:block; font-size:13px; font-weight:1000}
    .li span{display:block; margin-top:4px; color:var(--muted); font-size:12px; font-weight:700; line-height:1.45}

    .industry-chips{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:10px;
    }
    .chip{
      border-radius:999px;
      padding:10px 12px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.65);
      color:#0f172a;
      font-weight:950;
      font-size:12px;
      letter-spacing:.15px;
      transition: transform .14s ease, border-color .14s ease, box-shadow .14s ease;
    }
    .chip:hover{
      transform: translateY(-2px);
      border-color: rgba(37,99,235,.22);
      box-shadow: 0 18px 42px rgba(37,99,235,.10);
    }

    .gallery-grid{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:12px;
      align-items:stretch;
    }
    .img-card{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
      overflow:hidden;
      display:flex;
      flex-direction:column;
    }
    .img-wrap{
      padding:12px;
      background:
        radial-gradient(420px 220px at 20% 0%, rgba(124,58,237,.12), transparent 60%),
        radial-gradient(420px 220px at 90% 10%, rgba(37,99,235,.10), transparent 60%),
        rgba(255,255,255,.65);
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .img-wrap img{
      width:100%;
      height:auto;
      display:block;
      border-radius:14px;
      object-fit:contain;
      background: rgba(255,255,255,.7);
    }
    .img-card .body{
      padding:14px 14px 16px;
      display:flex;
      flex-direction:column;
      gap:10px;
      min-height: 140px;
    }
    .img-card h3{margin:0; font-size:14px; font-weight:1000}
    .img-card p{margin:0; color:rgba(17,24,39,.76); font-size:13px; line-height:1.6; font-weight:650}
    .img-card .foot{
      margin-top:auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .mini-tag{
      font-size:12px;
      font-weight:1000;
      color: rgba(17,24,39,.78);
      border:1px solid rgba(15,23,42,.10);
      padding:8px 10px;
      border-radius:999px;
      background: rgba(255,255,255,.6);
      white-space:nowrap;
    }

    .accordion{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    details.acc{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.84);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
      padding:12px 12px;
    }
    details.acc[open]{
      border-color: rgba(37,99,235,.22);
      box-shadow: 0 22px 52px rgba(37,99,235,.12);
    }
    summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      padding:8px 8px;
      border-radius:14px;
      user-select:none;
      outline:none;
    }
    summary::-webkit-details-marker{display:none}
    .sum-left{
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .qmark{
      width:34px; height:34px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.22);
      font-weight:1000;
      color:#4c1d95;
      flex:0 0 auto;
      margin-top:2px;
    }
    summary strong{
      font-size:14px;
      font-weight:1000;
      letter-spacing:-.1px;
    }
    summary span{
      display:block;
      color: var(--muted);
      font-size:12px;
      font-weight:800;
      margin-top:5px;
      line-height:1.35;
    }
    .caret{
      width:10px;height:10px;
      border-right:2px solid rgba(15,23,42,.40);
      border-bottom:2px solid rgba(15,23,42,.40);
      transform: rotate(45deg);
      margin-top:10px;
      transition: transform .18s ease;
      flex:0 0 auto;
    }
    details[open] .caret{transform: rotate(-135deg); margin-top:14px}

    .acc .answer{
      padding:0 8px 10px 54px;
      color: rgba(17,24,39,.76);
      font-size:13px;
      line-height:1.7;
      font-weight:650;
    }

    .review-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
      align-items:stretch;
    }
    .review{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
      padding:16px;
      display:flex;
      flex-direction:column;
      gap:10px;
      position:relative;
      overflow:hidden;
      transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
    }
    .review:hover{
      transform: translateY(-2px);
      border-color: rgba(124,58,237,.22);
      box-shadow: 0 22px 52px rgba(124,58,237,.12);
    }
    .review:before{
      content:"";
      position:absolute;
      inset:-40px -60px auto auto;
      width:160px; height:160px;
      background: radial-gradient(circle at 30% 30%, rgba(124,58,237,.22), transparent 60%);
      pointer-events:none;
    }
    .review > *{position:relative}
    .review .who{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .avatar{
      width:40px;height:40px;border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(135deg, rgba(124,58,237,.16), rgba(37,99,235,.10));
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:1000;
      color:#0f172a;
    }
    .review .role{
      font-weight:1000;
      font-size:13px;
    }
    .review .org{
      color:var(--muted);
      font-size:12px;
      font-weight:800;
      margin-top:2px;
    }
    .review .text{
      margin:0;
      color: rgba(17,24,39,.76);
      font-size:13px;
      line-height:1.7;
      font-weight:650;
    }
    .review .tags{
      display:flex; flex-wrap:wrap; gap:8px;
      margin-top:auto;
    }
    .rt{
      font-size:12px;
      font-weight:1000;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.65);
      color: rgba(17,24,39,.78);
    }

    .form-wrap{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:stretch;
    }

    form{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .field-row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    label{
      display:flex;
      flex-direction:column;
      gap:8px;
      font-size:12px;
      font-weight:950;
      letter-spacing:.2px;
      color: rgba(17,24,39,.86);
    }
    input, select, textarea{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.82);
      color:#0f172a;
      font-weight:700;
      font-size:13px;
      transition: box-shadow .12s ease, border-color .12s ease, transform .12s ease;
    }
    textarea{min-height:110px; resize: vertical}
    input:focus, select:focus, textarea:focus{
      outline:none;
      border-color: rgba(37,99,235,.30);
      box-shadow: 0 0 0 4px rgba(37,99,235,.15);
    }

    .form-aside{
      padding:16px;
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(420px 220px at 0% 0%, rgba(124,58,237,.14), transparent 60%),
        radial-gradient(420px 220px at 90% 10%, rgba(37,99,235,.12), transparent 60%),
        rgba(255,255,255,.80);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
      display:flex;
      flex-direction:column;
      gap:12px;
      overflow:hidden;
      position:relative;
    }
    .form-aside:after{
      content:"";
      position:absolute;
      inset:auto -70px -80px auto;
      width:240px;height:240px;
      border-radius:999px;
      background: radial-gradient(circle at 30% 30%, rgba(6,182,212,.22), transparent 55%);
      pointer-events:none;
    }
    .form-aside > *{position:relative}

    .aside-title{
      margin:0;
      font-size:16px;
      font-weight:1000;
      letter-spacing:-.1px;
    }
    .aside-list{
      display:flex; flex-direction:column; gap:10px;
      padding:0; margin:0; list-style:none;
    }
    .aside-list li{
      display:flex; gap:12px; align-items:flex-start;
      padding:10px 10px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.09);
      background: rgba(255,255,255,.65);
    }
    .aside-list .b{
      width:30px;height:30px;border-radius:14px;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.22);
      display:flex;align-items:center;justify-content:center;
      font-weight:1000;
      flex:0 0 auto;
      margin-top:2px;
    }
    .aside-list strong{display:block; font-size:13px; font-weight:1000}
    .aside-list span{display:block; margin-top:4px; color:var(--muted); font-size:12px; font-weight:800; line-height:1.45}

    .price-grid{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:14px;
      align-items:stretch;
    }
    .price-left{
      display:flex; flex-direction:column; gap:12px;
      padding:16px;
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
    }
    .token-ref{
      display:grid; grid-template-columns: 1fr 1fr; gap:10px;
    }
    .token-box{
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      padding:12px 12px;
    }
    .token-box .t{
      color:var(--muted); font-size:12px; font-weight:900;
    }
    .token-box .v{
      margin-top:6px;
      font-weight:1000;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .subtle{
      color: rgba(17,24,39,.74);
      font-weight:700;
      font-size:13px;
      line-height:1.65;
      margin:0;
    }

    .price-right{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(520px 280px at 10% 0%, rgba(124,58,237,.14), transparent 60%),
        radial-gradient(520px 280px at 90% 10%, rgba(37,99,235,.12), transparent 60%),
        rgba(255,255,255,.82);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
      padding:16px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .ref-table{
      width:100%;
      border-collapse: collapse;
      overflow:hidden;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
    }
    .ref-table th, .ref-table td{
      border-bottom:1px solid rgba(15,23,42,.08);
      padding:12px 12px;
      font-size:13px;
      text-align:left;
      vertical-align:top;
    }
    .ref-table th{
      background: rgba(124,58,237,.10);
      font-weight:1000;
      letter-spacing:.2px;
    }
    .ref-table tr:last-child td{border-bottom:none}

    .download-bar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      padding:12px 12px;
      flex-wrap:wrap;
    }
    .download-bar strong{
      font-size:13px;
      font-weight:1000;
    }
    .download-bar span{
      display:block;
      color:var(--muted);
      margin-top:4px;
      font-size:12px;
      font-weight:800;
    }

    .network-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }

    .map{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(700px 360px at 10% 0%, rgba(124,58,237,.14), transparent 60%),
        radial-gradient(600px 340px at 95% 10%, rgba(37,99,235,.12), transparent 60%),
        rgba(255,255,255,.82);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
      padding:16px;
      position:relative;
      overflow:hidden;
      min-height: 290px;
    }
    .map:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, rgba(124,58,237,.10), transparent 30%, rgba(37,99,235,.08) 70%, transparent),
        repeating-linear-gradient(45deg, rgba(15,23,42,.05), rgba(15,23,42,.05) 1px, transparent 1px, transparent 10px);
      opacity:.35;
      pointer-events:none;
    }
    .map > *{position:relative}

    .map .map-title{
      margin:0;
      font-size:16px;
      font-weight:1000;
      letter-spacing:-.1px;
    }
    .map .map-sub{
      margin:8px 0 12px;
      color:rgba(17,24,39,.76);
      font-size:13px;
      font-weight:700;
      line-height:1.65;
      max-width: 60ch;
    }
    .nodes{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:10px;
    }
    .node{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      font-weight:1000;
      font-size:12px;
      color: rgba(17,24,39,.80);
      display:flex;
      align-items:center;
      gap:10px;
      transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
    }
    .node:hover{
      transform: translateY(-2px);
      border-color: rgba(37,99,235,.22);
      box-shadow: 0 18px 42px rgba(37,99,235,.10);
    }
    .node .n-dot{
      width:10px;height:10px;border-radius:999px;
      background: linear-gradient(135deg, rgba(6,182,212,1), rgba(124,58,237,1));
      box-shadow: 0 0 0 4px rgba(124,58,237,.12);
    }

    .timeline-card{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.84);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
      padding:16px;
    }
    .timeline-card h3{
      margin:0;
      font-size:16px;
      font-weight:1000;
      letter-spacing:-.1px;
    }
    .tline{
      display:flex; flex-direction:column; gap:10px;
      margin-top:12px;
    }
    .tstep{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.09);
      background: rgba(255,255,255,.70);
    }
    .tstep .num{
      width:36px;height:36px;border-radius:16px;
      border:1px solid rgba(124,58,237,.22);
      background: rgba(124,58,237,.10);
      display:flex;align-items:center;justify-content:center;
      font-weight:1000;
      flex:0 0 auto;
      margin-top:2px;
    }
    .tstep strong{display:block; font-size:13px; font-weight:1000}
    .tstep span{display:block; margin-top:4px; color:var(--muted); font-size:12px; font-weight:800; line-height:1.45}

    .articles{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
      align-items:stretch;
    }
    .article{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
      padding:16px;
      display:flex;
      flex-direction:column;
      gap:10px;
      transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
      min-height: 200px;
    }
    .article:hover{
      transform: translateY(-2px);
      border-color: rgba(37,99,235,.22);
      box-shadow: 0 22px 52px rgba(37,99,235,.12);
    }
    .article .meta{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      color:var(--muted);
      font-size:12px;
      font-weight:850;
    }
    .article h3{
      margin:0;
      font-size:14px;
      font-weight:1000;
      letter-spacing:-.1px;
      line-height:1.45;
    }
    .article p{
      margin:0;
      color:rgba(17,24,39,.76);
      font-size:13px;
      line-height:1.7;
      font-weight:650;
    }
    .article a{
      text-decoration:none;
      color:#0f172a;
      font-weight:1000;
      display:inline-flex; align-items:center; gap:10px;
      margin-top:auto;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.65);
      transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease, background .12s ease;
      width: fit-content;
    }
    .article a:hover{
      transform: translateY(-1px);
      border-color: rgba(124,58,237,.24);
      box-shadow: 0 18px 42px rgba(124,58,237,.10);
      background: rgba(124,58,237,.06);
    }

    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .tcloud{
      border-radius:999px;
      padding:10px 12px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      color: rgba(17,24,39,.80);
      font-weight:1000;
      font-size:12px;
      transition: transform .14s ease, border-color .14s ease, box-shadow .14s ease;
    }
    .tcloud:hover{
      transform: translateY(-2px);
      border-color: rgba(37,99,235,.22);
      box-shadow: 0 18px 42px rgba(37,99,235,.10);
    }

    .footer{
      margin-top:18px;
      background:
        radial-gradient(1000px 420px at 20% 0%, rgba(124,58,237,.14), transparent 55%),
        radial-gradient(900px 420px at 90% 10%, rgba(37,99,235,.12), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.45), rgba(255,255,255,.95));
      border-top:1px solid rgba(15,23,42,.08);
      padding:22px 0 18px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:16px;
      align-items:start;
    }
    .foot-card{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
      padding:16px;
    }
    .foot-card h3{
      margin:0;
      font-size:15px;
      font-weight:1000;
      letter-spacing:-.1px;
    }
    .foot-card p{
      margin:8px 0 0;
      color:rgba(17,24,39,.76);
      font-size:13px;
      line-height:1.7;
      font-weight:650;
    }
    .foot-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:12px;
    }
    .foot-links a{
      text-decoration:none;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      color:#0f172a;
      font-weight:1000;
      font-size:12px;
      padding:10px 12px;
      border-radius:999px;
      transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, background .12s ease;
      white-space:nowrap;
    }
    .foot-links a:hover{
      transform: translateY(-1px);
      border-color: rgba(124,58,237,.22);
      box-shadow: 0 18px 42px rgba(124,58,237,.10);
      background: rgba(124,58,237,.06);
    }

    .copyright{
      margin-top:12px;
      color: rgba(17,24,39,.70);
      font-size:12px;
      font-weight:800;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }
    .tiny{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }
    .tiny .sep{
      width:1px; height:12px; background: rgba(15,23,42,.18);
    }

    .float-cta{
      position:fixed;
      right:16px;
      bottom:18px;
      z-index:60;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .float-cta .stack{
      display:flex; flex-direction:column; gap:10px; align-items:flex-end;
    }
    .float-btn{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 22px 52px rgba(17,24,39,.14);
      padding:12px 12px;
      display:flex;
      align-items:center;
      gap:12px;
      cursor:pointer;
      transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease, background .14s ease;
      user-select:none;
      -webkit-tap-highlight-color: transparent;
      max-width: 220px;
    }
    .float-btn:hover{
      transform: translateY(-2px);
      border-color: rgba(37,99,235,.22);
      box-shadow: 0 26px 64px rgba(37,99,235,.18);
      background: rgba(255,255,255,.95);
    }
    .float-btn .label{
      display:flex; flex-direction:column; line-height:1.12;
    }
    .float-btn strong{font-size:13px; font-weight:1000}
    .float-btn span{font-size:12px; color:var(--muted); font-weight:850; margin-top:4px}
    .qr-pop{
      position:absolute;
      right:0;
      bottom:70px;
      width: 250px;
      border-radius: 22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.94);
      box-shadow: 0 22px 52px rgba(17,24,39,.16);
      padding:12px;
      transform-origin: 100% 100%;
      opacity:0;
      transform: translateY(8px) scale(.98);
      pointer-events:none;
      transition: opacity .18s ease, transform .18s ease;
    }
    .qr-pop.show{
      opacity:1;
      transform: translateY(0) scale(1);
      pointer-events:auto;
    }
    .qr-pop .head{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .qr-pop .head strong{font-size:13px; font-weight:1000}
    .close-x{
      border:none;
      background: rgba(15,23,42,.06);
      border:1px solid rgba(15,23,42,.10);
      width:32px;height:32px;border-radius:12px;
      cursor:pointer;
      font-weight:1000;
    }
    .qr{
      border-radius: 18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.75);
      padding:10px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .qr img{
      width:100%;
      height:auto;
      display:block;
      border-radius:14px;
      object-fit:contain;
      background:#fff;
    }
    .qr p{
      margin:0;
      color: rgba(17,24,39,.76);
      font-size:12px;
      line-height:1.55;
      font-weight:800;
    }

    .to-top{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:44px;height:44px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 22px 52px rgba(17,24,39,.12);
      cursor:pointer;
      transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease, opacity .18s ease;
      opacity: 0;
      pointer-events:none;
    }
    .to-top.show{
      opacity: 1;
      pointer-events:auto;
    }
    .to-top:hover{
      transform: translateY(-2px);
      border-color: rgba(37,99,235,.22);
      box-shadow: 0 26px 64px rgba(37,99,235,.18);
    }
    .to-top .arr{
      width:10px;height:10px;
      border-left:2px solid rgba(15,23,42,.55);
      border-top:2px solid rgba(15,23,42,.55);
      transform: rotate(45deg);
      margin-top:4px;
    }

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

    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .reveal{transition:none}
      .btn,.nav-links a,.stat,.step,.li,.chip,.review,.article,.foot-links a,.tcloud,.node{transition:none}
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr}
      .step-list{grid-template-columns: 1fr 1fr}
      .grid-3{grid-template-columns: 1fr}
      .grid-2{grid-template-columns: 1fr}
      .mosaic{grid-template-columns: 1fr}
      .review-grid{grid-template-columns: 1fr}
      .articles{grid-template-columns: 1fr}
      .gallery-grid{grid-template-columns: 1fr}
      .price-grid{grid-template-columns: 1fr}
      .network-grid{grid-template-columns: 1fr}
      .form-wrap{grid-template-columns: 1fr}
      h1{font-size:28px}
      .nav-links{display:none}
      .nav-actions{min-width:auto}
      .mobile-toggle{display:inline-flex; align-items:center; gap:10px}
      .mobile-menu.open{display:block}
    }

    @media (max-width: 420px){
      .brand{min-width:auto}
      .brand .brand-sub{display:none}
      .hero-shell{padding:16px}
      .micro{min-width: 0; width:100%}
      .data-grid{grid-template-columns:1fr 1fr}
      .field-row{grid-template-columns:1fr}
    }