:root{
      --bg0:#fbf7ff;
      --bg1:#ffffff;
      --ink:#1b1530;
      --muted:#5a5472;
      --muted2:#7a7392;
      --line:rgba(48, 24, 88, .14);
      --card:rgba(255,255,255,.86);
      --card2:rgba(255,255,255,.72);
      --shadow: 0 18px 50px rgba(53, 23, 115, .10);
      --shadow2: 0 10px 28px rgba(53, 23, 115, .12);
      --radius:18px;
      --radius2:24px;
      --primary:#6f2cff;
      --primary2:#a855f7;
      --primary3:#3b82f6;
      --good:#16a34a;
      --warn:#f59e0b;
      --bad:#ef4444;
      --chip:#efe7ff;
      --chipInk:#3d1f77;
      --focus: 0 0 0 4px rgba(111,44,255,.18);
      --container: 1120px;
      --gutter: 18px;
    }

    *{ box-sizing:border-box; }
    html{ scroll-behavior:smooth; }
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", sans-serif;
      color:var(--ink);
      background:
        radial-gradient(900px 420px at 12% 4%, rgba(168,85,247,.18), transparent 60%),
        radial-gradient(700px 420px at 88% 2%, rgba(59,130,246,.14), transparent 55%),
        radial-gradient(520px 420px at 30% 34%, rgba(111,44,255,.10), transparent 55%),
        linear-gradient(180deg, var(--bg0), #ffffff 46%, #fbfbff 100%);
      overflow-x:hidden;
    }

    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 var(--gutter);
    }

    .skip-link{
      position:absolute; left:-9999px; top:auto;
      width:1px; height:1px; overflow:hidden;
    }
    .skip-link:focus{
      left:16px; top:16px; width:auto; height:auto; padding:10px 12px;
      background:#fff; border:1px solid var(--line); border-radius:12px; z-index:9999;
      box-shadow: var(--shadow2);
    }

    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter: blur(12px);
      background: rgba(251,247,255,.68);
      border-bottom:1px solid rgba(48,24,88,.10);
    }

    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }

    .brand{
      display:flex; align-items:center; gap:10px; min-width:210px;
    }
    .brand img{
      width:42px; height:42px; border-radius:14px;
      box-shadow: 0 10px 22px rgba(111,44,255,.20);
      background: #fff;
      object-fit:contain;
    }
    .brand .brand-text{
      display:flex; flex-direction:column; line-height:1.15;
    }
    .brand .brand-name{
      font-weight:850; letter-spacing:.2px;
      font-size:14px;
    }
    .brand .brand-sub{
      font-size:12px; color:var(--muted);
    }

    nav{
      display:flex; align-items:center; gap:8px;
    }

    .nav-links{
      display:none;
      align-items:center; gap:8px; flex-wrap:wrap;
    }
    .nav-links a{
      text-decoration:none;
      font-size:13px; color:var(--muted);
      padding:9px 10px; border-radius:12px;
      border:1px solid transparent;
      transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background: rgba(111,44,255,.08);
      border-color: rgba(111,44,255,.18);
      color: #3a2268;
      transform: translateY(-1px);
    }

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

    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      border-radius:14px;
      padding:10px 14px;
      border:1px solid rgba(111,44,255,.22);
      background: rgba(255,255,255,.72);
      color:#341a6a;
      text-decoration:none;
      font-weight:760;
      font-size:13px;
      line-height:1;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      white-space:nowrap;
      user-select:none;
    }
    .btn:hover{ transform: translateY(-1px); box-shadow: 0 16px 36px rgba(111,44,255,.16); border-color: rgba(111,44,255,.34); }
    .btn:focus{ outline:none; box-shadow: var(--focus); }
    .btn-primary{
      background: linear-gradient(135deg, rgba(111,44,255,.98), rgba(168,85,247,.92));
      color:#fff;
      border-color: rgba(255,255,255,.26);
      box-shadow: 0 16px 40px rgba(111,44,255,.26);
    }
    .btn-primary:hover{
      box-shadow: 0 18px 46px rgba(111,44,255,.32);
    }
    .btn-ghost{
      background: rgba(255,255,255,.60);
      border-color: rgba(48,24,88,.14);
      color:var(--ink);
    }

    .hamburger{
      width:42px; height:42px;
      display:inline-flex; align-items:center; justify-content:center;
      border-radius:14px;
      border:1px solid rgba(48,24,88,.14);
      background: rgba(255,255,255,.65);
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .hamburger:hover{ transform: translateY(-1px); box-shadow: 0 14px 30px rgba(53, 23, 115, .10); }
    .hamburger:focus{ outline:none; box-shadow: var(--focus); }

    .hamburger span{
      display:block; width:18px; height:2px;
      background: #3a2268;
      border-radius:2px;
      position:relative;
    }
    .hamburger span::before, .hamburger span::after{
      content:"";
      position:absolute; left:0;
      width:18px; height:2px; background:#3a2268; border-radius:2px;
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .hamburger span::before{ top:-6px; }
    .hamburger span::after{ top:6px; }

    .hamburger.is-open span{ background: transparent; }
    .hamburger.is-open span::before{ top:0; transform: rotate(45deg); }
    .hamburger.is-open span::after{ top:0; transform: rotate(-45deg); }

    .mobile-drawer{
      display:block;
      position:fixed; inset:0;
      background: rgba(13,10,24,.35);
      z-index:60;
      opacity:0; pointer-events:none;
      transition: opacity .18s ease;
    }
    .mobile-drawer.is-open{
      opacity:1; pointer-events:auto;
    }
    .drawer-panel{
      position:absolute; top:10px; left:10px; right:10px;
      background: rgba(255,255,255,.88);
      border:1px solid rgba(48,24,88,.14);
      border-radius:20px;
      box-shadow: var(--shadow2);
      transform: translateY(-10px);
      transition: transform .18s ease;
      padding:14px;
    }
    .mobile-drawer.is-open .drawer-panel{ transform: translateY(0); }

    .drawer-top{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding:4px 2px 12px;
    }

    .drawer-links{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      padding: 6px 2px 10px;
    }
    .drawer-links a{
      text-decoration:none;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(48,24,88,.12);
      background: rgba(255,255,255,.62);
      color: #3a2268;
      font-weight:720; font-size:13px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .drawer-links a:hover{
      transform: translateY(-1px);
      border-color: rgba(111,44,255,.30);
      box-shadow: 0 16px 36px rgba(111,44,255,.14);
      background: rgba(255,255,255,.82);
    }

    .drawer-cta{
      display:flex; gap:10px; padding-top:6px;
    }

    main{ padding: 18px 0 0; }

    .hero{
      padding: 18px 0 6px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:16px;
      align-items:stretch;
    }

    .hero-card{
      border-radius: var(--radius2);
      border:1px solid rgba(48,24,88,.12);
      background:
        radial-gradient(1200px 380px at 8% 5%, rgba(111,44,255,.26), transparent 55%),
        radial-gradient(900px 320px at 92% 10%, rgba(59,130,246,.18), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.64));
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
      padding: 20px 16px 18px;
      min-height: 330px;
    }

    .hero-card::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        linear-gradient(120deg, rgba(111,44,255,.24), transparent 35%),
        linear-gradient(60deg, rgba(168,85,247,.18), transparent 40%),
        radial-gradient(420px 160px at 30% 20%, rgba(255,255,255,.55), transparent 60%);
      pointer-events:none;
      opacity:.9;
    }

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

    .kicker-row{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(111,44,255,.22);
      background: rgba(239,231,255,.72);
      color: #3d1f77;
      font-weight:760; font-size:12px;
    }
    .badge i{
      width:10px; height:10px; border-radius:50%;
      background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,.2)), linear-gradient(135deg, var(--primary), var(--primary2));
      box-shadow: 0 10px 22px rgba(111,44,255,.26);
      display:inline-block;
    }

    .hero h1{
      margin:0;
      font-size: clamp(24px, 3.2vw, 40px);
      letter-spacing: -0.6px;
      line-height: 1.12;
      font-weight: 920;
    }
    .hero p{
      margin:0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
      max-width: 62ch;
    }

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

    .hero-mini{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:6px;
      position:relative;
      z-index:2;
    }

    .mini-stat{
      border-radius: 18px;
      border:1px solid rgba(48,24,88,.12);
      background: rgba(255,255,255,.70);
      padding:12px 12px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      will-change: transform;
    }
    .mini-stat:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 42px rgba(111,44,255,.18);
      border-color: rgba(111,44,255,.28);
    }
    .mini-stat .t{
      font-size:12px; color: var(--muted2); font-weight:740;
      display:flex; align-items:center; gap:8px;
    }
    .mini-stat .t svg{ flex:0 0 auto; }
    .mini-stat .v{
      margin-top:8px;
      font-size:16px; font-weight:900; letter-spacing:-.2px;
    }

    .side-stack{
      display:grid;
      gap:14px;
      align-content:start;
    }

    .panel{
      border-radius: var(--radius2);
      border:1px solid rgba(48,24,88,.12);
      background: rgba(255,255,255,.74);
      box-shadow: 0 14px 38px rgba(53, 23, 115, .08);
      overflow:hidden;
    }

    .panel-head{
      padding: 14px 16px 10px;
      border-bottom:1px solid rgba(48,24,88,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.64));
    }

    .panel-head h2{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
      font-weight:880;
    }
    .panel-head p{
      margin:7px 0 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.6;
    }

    .panel-body{
      padding: 12px 16px 16px;
    }

    .chip-row{
      display:flex; flex-wrap:wrap; gap:10px;
      padding-top:4px;
    }
    .chip{
      padding:10px 12px;
      border-radius: 999px;
      background: rgba(239,231,255,.74);
      border:1px solid rgba(111,44,255,.16);
      color: #3d1f77;
      font-weight:800; font-size:12px;
      white-space:nowrap;
    }

    .list{
      display:grid; gap:10px;
    }
    .list-item{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 10px;
      border-radius: 16px;
      background: rgba(255,255,255,.62);
      border:1px solid rgba(48,24,88,.10);
    }
    .dot{
      width:12px; height:12px; border-radius:50%;
      background: linear-gradient(135deg, var(--primary), var(--primary2));
      margin-top:3px;
      box-shadow: 0 12px 26px rgba(111,44,255,.22);
      flex:0 0 auto;
    }
    .list-item strong{
      font-size:13px; display:block; margin-bottom:4px;
    }
    .list-item span{
      color: var(--muted);
      font-size: 12.5px;
      line-height: 1.6;
    }

    .section{
      padding: 18px 0;
    }

    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between;
      gap:14px; margin-bottom:12px;
    }
    .section-head h2{
      margin:0;
      font-size: 20px;
      letter-spacing:-.35px;
      font-weight:920;
    }
    .section-head .sub{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
      max-width: 56ch;
    }

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

    .card{
      border-radius: var(--radius);
      border:1px solid rgba(48,24,88,.12);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 34px rgba(53, 23, 115, .08);
      padding: 14px;
      overflow:hidden;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
    }
    .card:hover{
      transform: translateY(-2px);
      box-shadow: 0 20px 46px rgba(111,44,255,.14);
      border-color: rgba(111,44,255,.26);
    }
    .card h3{
      margin:10px 0 8px;
      font-size:15px;
      font-weight:900;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .icon{
      width:42px; height:42px; border-radius:16px;
      border:1px solid rgba(111,44,255,.18);
      background:
        radial-gradient(18px 18px at 25% 25%, rgba(255,255,255,.9), rgba(255,255,255,.1)),
        linear-gradient(135deg, rgba(111,44,255,.22), rgba(59,130,246,.12));
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 16px 38px rgba(111,44,255,.14);
    }
    .icon svg{ width:22px; height:22px; color:#3a2268; }

    .steps{
      display:grid; gap:12px;
    }
    .step{
      display:flex; gap:12px; align-items:flex-start;
      padding: 14px;
      border-radius: var(--radius);
      border:1px solid rgba(48,24,88,.12);
      background: rgba(255,255,255,.70);
    }
    .step .num{
      width:40px; height:40px; border-radius: 16px;
      background: linear-gradient(135deg, rgba(111,44,255,.95), rgba(168,85,247,.85));
      color:#fff;
      display:flex; align-items:center; justify-content:center;
      font-weight:950; letter-spacing:-.4px;
      box-shadow: 0 18px 42px rgba(111,44,255,.26);
      flex:0 0 auto;
    }
    .step strong{
      display:block;
      font-size:14px;
      font-weight:920;
      margin-top:1px;
    }
    .step span{
      display:block;
      margin-top:6px;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }

    .compare-wrap{
      border-radius: var(--radius2);
      border:1px solid rgba(48,24,88,.12);
      background:
        radial-gradient(800px 260px at 12% 0%, rgba(111,44,255,.20), transparent 55%),
        radial-gradient(600px 240px at 90% 10%, rgba(59,130,246,.14), transparent 55%),
        rgba(255,255,255,.68);
      box-shadow: 0 18px 52px rgba(53, 23, 115, .10);
      overflow:hidden;
    }
    .compare-top{
      padding: 16px;
      border-bottom:1px solid rgba(48,24,88,.10);
      display:flex; gap:14px; align-items:flex-start; justify-content:space-between; flex-wrap:wrap;
    }
    .rating{
      display:flex; gap:12px; align-items:center;
    }
    .stars{
      display:flex; gap:4px; align-items:center;
    }
    .star{
      width:18px; height:18px; color:#f59e0b;
    }
    .rating .score{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .rating .score strong{
      font-size:18px; font-weight:980;
      letter-spacing:-.4px;
    }
    .rating .score span{
      margin-top:6px;
      font-size:12.5px; color:var(--muted);
      font-weight:750;
    }
    .compare-meta{
      max-width: 60ch;
      color:var(--muted);
      font-size:13px; line-height:1.7;
      margin-top:2px;
    }

    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      font-size:13px;
      background: rgba(255,255,255,.40);
    }
    th, td{
      padding: 12px 12px;
      border-bottom:1px solid rgba(48,24,88,.10);
      vertical-align:top;
      text-align:left;
    }
    th{
      font-weight:900;
      color:#2a194a;
      background: rgba(239,231,255,.48);
      position:sticky;
      top:74px;
      z-index:1;
      backdrop-filter: blur(10px);
    }
    .td-muted{ color:var(--muted); }
    .taggood{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius: 999px;
      border:1px solid rgba(22,163,74,.22);
      background: rgba(22,163,74,.08);
      color:#0f6a2b;
      font-weight:860;
      white-space:nowrap;
    }
    .tagwarn{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius: 999px;
      border:1px solid rgba(245,158,11,.22);
      background: rgba(245,158,11,.10);
      color:#8a5a08;
      font-weight:860;
      white-space:nowrap;
    }
    .tagbad{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius: 999px;
      border:1px solid rgba(239,68,68,.22);
      background: rgba(239,68,68,.10);
      color:#8a1414;
      font-weight:860;
      white-space:nowrap;
    }
    .tick{
      width:18px; height:18px;
      border-radius:8px;
      background: rgba(22,163,74,.12);
      border:1px solid rgba(22,163,74,.25);
      display:inline-flex; align-items:center; justify-content:center;
    }
    .tick svg{ width:12px; height:12px; color:#16a34a; }

    .compare-legend{
      padding: 12px 16px 16px;
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
      color:var(--muted);
      font-size:12.5px;
    }
    .legend-dot{
      width:10px; height:10px; border-radius:4px; display:inline-block; margin-right:8px;
    }

    .timeline{
      border-radius: var(--radius2);
      border:1px solid rgba(48,24,88,.12);
      background: rgba(255,255,255,.70);
      box-shadow: 0 16px 46px rgba(53, 23, 115, .08);
      padding: 14px;
      overflow:hidden;
    }
    .timeline-grid{
      display:grid; gap:12px;
    }
    .time-item{
      display:flex; gap:12px; align-items:flex-start;
      padding: 12px;
      border-radius: 16px;
      border:1px solid rgba(48,24,88,.10);
      background: rgba(255,255,255,.60);
    }
    .time-bullet{
      width:12px; height:12px; border-radius:6px;
      background: linear-gradient(135deg, var(--primary), var(--primary2));
      margin-top:6px;
      flex:0 0 auto;
      box-shadow: 0 16px 34px rgba(111,44,255,.22);
    }
    .time-item strong{
      display:block; font-size:13.5px; font-weight:920;
    }
    .time-item span{
      display:block; margin-top:6px;
      color:var(--muted); font-size:13px; line-height:1.7;
    }

    .form-grid{
      display:grid; grid-template-columns: 1fr;
      gap:12px;
      align-items:start;
    }
    .form-fields{
      display:grid; gap:10px;
      padding: 14px;
      border-radius: var(--radius2);
      border:1px solid rgba(48,24,88,.12);
      background: rgba(255,255,255,.70);
      box-shadow: 0 14px 38px rgba(53, 23, 115, .08);
    }
    label{
      font-weight:850;
      font-size:12.5px;
      color:#2a194a;
      display:block;
      margin-bottom:6px;
    }
    input, select, textarea{
      width:100%;
      padding: 12px 12px;
      border-radius: 14px;
      border:1px solid rgba(48,24,88,.14);
      background: rgba(255,255,255,.84);
      font-size:14px;
      color: var(--ink);
      transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
      outline:none;
    }
    textarea{ min-height:110px; resize:vertical; }
    input:focus, select:focus, textarea:focus{
      box-shadow: var(--focus);
      border-color: rgba(111,44,255,.36);
    }
    .form-actions{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:space-between;
      margin-top:4px;
    }
    .small-note{
      color:var(--muted);
      font-size:12.5px;
      line-height:1.6;
      max-width: 46ch;
    }

    .case-grid{
      display:grid; gap:12px;
      grid-template-columns: 1fr;
    }
    .case-card{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
      padding: 14px;
      border-radius: var(--radius2);
      border:1px solid rgba(48,24,88,.12);
      background: rgba(255,255,255,.70);
      box-shadow: 0 14px 38px rgba(53, 23, 115, .08);
    }
    .case-top{
      display:flex; gap:12px; align-items:center; justify-content:space-between; flex-wrap:wrap;
    }
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding: 8px 10px;
      border-radius: 999px;
      border:1px solid rgba(111,44,255,.18);
      background: rgba(239,231,255,.62);
      color:#3d1f77;
      font-weight:860; font-size:12px;
      white-space:nowrap;
    }
    .case-title{
      font-weight:950; letter-spacing:-.3px;
      font-size:16px;
      margin:0;
    }
    .case-desc{
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
      margin:6px 0 0;
    }
    .case-media{
      border-radius: 18px;
      border:1px dashed rgba(48,24,88,.18);
      background:
        radial-gradient(420px 160px at 20% 20%, rgba(111,44,255,.16), transparent 60%),
        radial-gradient(360px 160px at 85% 30%, rgba(59,130,246,.12), transparent 60%),
        rgba(255,255,255,.55);
      padding: 14px;
      overflow:hidden;
      position:relative;
      min-height: 180px;
    }
    .case-media .caption{
      display:flex; align-items:center; gap:10px;
      justify-content:space-between;
      flex-wrap:wrap;
      position:relative;
      z-index:2;
      gap:10px;
    }
    .case-media .caption .left{
      display:flex; align-items:center; gap:10px;
    }
    .thumb{
      width:44px; height:44px; border-radius:18px;
      border:1px solid rgba(111,44,255,.18);
      background: rgba(255,255,255,.72);
      box-shadow: 0 18px 44px rgba(111,44,255,.14);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .thumb svg{ width:22px; height:22px; color:#3a2268; }
    .case-media .caption strong{
      display:block; font-weight:950; letter-spacing:-.3px;
      font-size:14px;
    }
    .case-media .caption span{
      display:block; color:var(--muted);
      font-size:12.5px; margin-top:4px; line-height:1.4;
    }
    .case-media .gridmarks{
      position:absolute; inset:-40px -30px auto -30px;
      height:240px;
      background:
        linear-gradient(transparent 18px, rgba(111,44,255,.06) 18px, rgba(111,44,255,.06) 19px, transparent 19px) 0 0 / 100px 38px,
        linear-gradient(90deg, transparent 18px, rgba(59,130,246,.05) 18px, rgba(59,130,246,.05) 19px, transparent 19px) 0 0 / 120px 44px;
      transform: rotate(-8deg);
      opacity:.9;
      pointer-events:none;
    }

    .poster-media{
      display:grid; gap:12px;
      grid-template-columns: 1fr;
    }
    .img-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    .image-card{
      border-radius: 18px;
      border:1px solid rgba(48,24,88,.12);
      background: rgba(255,255,255,.70);
      overflow:hidden;
      box-shadow: 0 14px 38px rgba(53, 23, 115, .08);
    }
    .image-card img{
      width:100%;
      height:auto;
      display:block;
      object-fit:cover;
    }
    .image-caption{
      padding: 10px 12px 12px;
      border-top: 1px solid rgba(48,24,88,.10);
    }
    .image-caption strong{
      display:block;
      font-size:13.5px;
      font-weight:950;
      letter-spacing:-.2px;
    }
    .image-caption span{
      display:block;
      margin-top:5px;
      color:var(--muted);
      font-size:12.5px;
      line-height:1.6;
    }

    .articles{
      display:grid; gap:12px;
      grid-template-columns: 1fr;
    }
    .article{
      padding: 14px;
      border-radius: var(--radius);
      border:1px solid rgba(48,24,88,.12);
      background: rgba(255,255,255,.70);
      box-shadow: 0 12px 34px rgba(53, 23, 115, .07);
      display:flex; gap:12px; align-items:flex-start; justify-content:space-between;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .article:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(111,44,255,.14);
      border-color: rgba(111,44,255,.26);
    }
    .article .meta{
      display:flex; flex-direction:column; gap:8px;
      min-width: 0;
    }
    .article .meta strong{
      font-size:14px; font-weight:950; letter-spacing:-.2px;
      line-height:1.35;
    }
    .article .meta span{
      color:var(--muted);
      font-size:12.5px;
      line-height:1.6;
    }
    .article a{
      text-decoration:none;
      align-self:flex-start;
      padding:9px 12px;
      border-radius:14px;
      border:1px solid rgba(48,24,88,.14);
      background: rgba(255,255,255,.66);
      color:#2a194a;
      font-weight:850;
      font-size:12.5px;
      white-space:nowrap;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
    }
    .article a:hover{
      transform: translateY(-1px);
      border-color: rgba(111,44,255,.26);
      background: rgba(239,231,255,.62);
      box-shadow: 0 16px 36px rgba(111,44,255,.12);
    }

    .faq{
      display:grid; gap:10px;
    }
    details.faq-item{
      border-radius: 18px;
      border:1px solid rgba(48,24,88,.12);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 34px rgba(53, 23, 115, .06);
      overflow:hidden;
      transition: border-color .18s ease, box-shadow .18s ease;
    }
    details.faq-item[open]{
      border-color: rgba(111,44,255,.26);
      box-shadow: 0 18px 44px rgba(111,44,255,.14);
    }
    summary{
      list-style:none;
      cursor:pointer;
      padding: 14px 14px;
      display:flex; gap:12px; align-items:flex-start; justify-content:space-between;
      user-select:none;
    }
    summary::-webkit-details-marker{ display:none; }
    .q{
      font-weight:920; letter-spacing:-.2px;
      font-size:14px;
      line-height:1.45;
    }
    .chev{
      flex:0 0 auto;
      width:34px; height:34px; border-radius: 14px;
      border:1px solid rgba(48,24,88,.14);
      background: rgba(255,255,255,.62);
      display:flex; align-items:center; justify-content:center;
      transition: transform .18s ease, border-color .18s ease;
      margin-top:-4px;
    }
    details[open] .chev{ transform: rotate(180deg); border-color: rgba(111,44,255,.28); }
    .a{
      padding: 0 14px 14px;
      color:var(--muted);
      font-size:13px;
      line-height:1.8;
    }

    .comments{
      display:grid; gap:12px;
      grid-template-columns: 1fr;
    }
    .comment{
      border-radius: var(--radius2);
      border:1px solid rgba(48,24,88,.12);
      background: rgba(255,255,255,.72);
      box-shadow: 0 14px 38px rgba(53, 23, 115, .07);
      padding: 14px;
      overflow:hidden;
    }
    .comment-top{
      display:flex; justify-content:space-between; align-items:flex-start; gap:10px; flex-wrap:wrap;
    }
    .avatar{
      width:42px; height:42px; border-radius: 18px;
      border:1px solid rgba(111,44,255,.18);
      background:
        radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,.1)),
        linear-gradient(135deg, rgba(111,44,255,.22), rgba(59,130,246,.12));
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 18px 44px rgba(111,44,255,.14);
      flex:0 0 auto;
    }
    .avatar svg{ width:22px; height:22px; color:#3a2268; }
    .who strong{
      display:block; font-weight:980; letter-spacing:-.3px;
      font-size:14px;
    }
    .who span{
      display:block; margin-top:4px;
      color:var(--muted);
      font-size:12.5px;
      line-height:1.4;
    }
    .comment-stars{
      display:flex; gap:4px; align-items:center;
    }
    .comment p{
      margin:12px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.85;
    }

    .tagcloud{
      display:flex; flex-wrap:wrap; gap:10px;
      padding: 4px 0 0;
    }
    .tagcloud a{
      text-decoration:none;
      padding: 10px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.64);
      border:1px solid rgba(48,24,88,.12);
      color:#2a194a;
      font-weight:820; font-size:12.5px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
      white-space:nowrap;
    }
    .tagcloud a:hover{
      transform: translateY(-1px);
      border-color: rgba(111,44,255,.26);
      background: rgba(239,231,255,.62);
      box-shadow: 0 16px 36px rgba(111,44,255,.12);
    }

    .footer{
      margin-top: 6px;
      background:
        radial-gradient(900px 320px at 10% 0%, rgba(111,44,255,.18), transparent 55%),
        radial-gradient(700px 320px at 90% 10%, rgba(59,130,246,.12), transparent 55%),
        #fff;
      border-top:1px solid rgba(48,24,88,.10);
    }
    .footer-inner{
      padding: 18px 0 10px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
      padding: 10px 0 14px;
      border-bottom:1px solid rgba(48,24,88,.10);
    }
    .footer-block{
      border-radius: var(--radius2);
      border:1px solid rgba(48,24,88,.10);
      background: rgba(255,255,255,.74);
      padding: 14px;
      box-shadow: 0 12px 34px rgba(53, 23, 115, .06);
    }
    .footer-block h3{
      margin:0;
      font-size:14px; font-weight:980; letter-spacing:-.2px;
    }
    .footer-block p{
      margin:10px 0 0;
      color:var(--muted); font-size:13px; line-height:1.8;
    }
    .footer-links{
      display:flex; flex-wrap:wrap; gap:10px; margin-top:10px;
    }
    .footer-links a{
      text-decoration:none;
      padding: 10px 12px;
      border-radius: 14px;
      border:1px solid rgba(48,24,88,.12);
      background: rgba(255,255,255,.64);
      color:#2a194a;
      font-weight:860; font-size:12.5px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .footer-links a:hover{
      transform: translateY(-1px);
      border-color: rgba(111,44,255,.26);
      background: rgba(239,231,255,.62);
      box-shadow: 0 16px 36px rgba(111,44,255,.12);
    }

    .footer-bottom{
      display:flex; flex-direction:column; gap:10px;
      padding: 12px 0 18px;
      color: var(--muted);
      font-size:12.5px;
      line-height:1.7;
      align-items:flex-start;
    }
    .footer-bottom .copy{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
    }

    .float-cta{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:80;
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-end;
    }
    .float-item{
      display:flex; align-items:center; gap:10px;
      padding: 10px 12px;
      border-radius: 18px;
      border:1px solid rgba(48,24,88,.14);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 50px rgba(53, 23, 115, .14);
      text-decoration:none;
      color:#2a194a;
      font-weight:900;
      font-size:13px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      max-width: 78vw;
    }
    .float-item:hover{
      transform: translateY(-2px);
      border-color: rgba(111,44,255,.26);
      box-shadow: 0 22px 58px rgba(111,44,255,.16);
    }
    .float-item:focus{ outline:none; box-shadow: var(--focus); }
    .float-item .bubble{
      width:36px; height:36px; border-radius: 16px;
      background: linear-gradient(135deg, rgba(111,44,255,.20), rgba(59,130,246,.10));
      border:1px solid rgba(111,44,255,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .float-item .bubble svg{ width:18px; height:18px; color:#3a2268; }

    .float-qr{
      position:relative;
    }
    .qr-pop{
      position:absolute;
      right:0; bottom:52px;
      width: 190px;
      border-radius: 18px;
      border:1px solid rgba(48,24,88,.14);
      background: rgba(255,255,255,.92);
      box-shadow: 0 28px 80px rgba(53, 23, 115, .18);
      padding: 12px;
      display:none;
      transform: translateY(6px);
      opacity:0;
      transition: opacity .18s ease, transform .18s ease;
    }
    .float-qr:hover .qr-pop{
      display:block;
      opacity:1;
      transform: translateY(0);
    }
    .qr-pop strong{
      display:block;
      font-size:12.5px;
      font-weight:950;
      margin-bottom:8px;
      color:#2a194a;
    }
    .qr-pop img{
      width:100%;
      height:auto;
      display:block;
      border-radius: 14px;
      border:1px solid rgba(48,24,88,.10);
      background:#fff;
    }

    .backtop{
      position:fixed;
      left:14px;
      bottom:14px;
      z-index:80;
      width:44px; height:44px;
      border-radius: 18px;
      border:1px solid rgba(48,24,88,.14);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 50px rgba(53, 23, 115, .14);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .18s ease, opacity .18s ease, border-color .18s ease;
      opacity:0;
      pointer-events:none;
    }
    .backtop.show{ opacity:1; pointer-events:auto; }
    .backtop:hover{ transform: translateY(-2px); border-color: rgba(111,44,255,.26); }
    .backtop svg{ width:18px; height:18px; color:#3a2268; }

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

    @media (min-width: 860px){
      .nav-links{ display:flex; }
      .hamburger{ display:none; }
      .hero-grid{ grid-template-columns: 1.3fr .7fr; }
      .hero-card{ padding: 26px 22px 20px; min-height: 380px; }
      .hero-mini{ grid-template-columns: 1fr 1fr; }
      .grid-3{ grid-template-columns: 1fr 1fr 1fr; }
      .grid-2{ grid-template-columns: 1fr 1fr; }
      .case-grid{ grid-template-columns: 1fr 1fr; }
      .articles{ grid-template-columns: 1fr 1fr; }
      .comments{ grid-template-columns: 1fr 1fr; }
      .form-grid{ grid-template-columns: 1.05fr .95fr; }
      .img-grid{ grid-template-columns: 1fr 1fr; }
      .poster-media{ grid-template-columns: 1fr; }
      .footer-grid{ grid-template-columns: 1.1fr .9fr; }
      .footer-bottom{ flex-direction:row; justify-content:space-between; align-items:center; }
      .drawer-links{ grid-template-columns: 1fr 1fr; }
      .hero-card::after{
        content:"";
        position:absolute;
        inset:0;
        background:
          radial-gradient(600px 240px at 50% 0%, rgba(255,255,255,.45), transparent 58%);
        pointer-events:none;
        z-index:1;
        opacity:.55;
      }
      .drawer-panel{ top:16px; }
    }

    @media (prefers-reduced-motion: reduce){
      *{ scroll-behavior:auto !important; }
      .scroll-reveal{ transition:none; transform:none; opacity:1; }
      .card, .btn, .mini-stat, .article, .drawer-links a{ transition:none; }
    }