    .wrap{ max-width:1200px; margin:0 auto; padding:28px 16px 90px; }

    /* Hero */
    .hero{
      border-radius: 26px;
      padding: 34px 22px;
      border: 1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(1100px 460px at 55% -30%, rgba(99,102,241,.22), transparent 60%),
        radial-gradient(900px 420px at 15% 10%, rgba(236,72,153,.12), transparent 55%),
        linear-gradient(180deg, #ffffff, #f6f7fb);
      box-shadow: 0 30px 70px rgba(2,6,23,.08);
      position:relative;
      overflow:hidden;
    }
    .crumbs{
      display:flex;
      gap:8px;
      align-items:center;
      flex-wrap:wrap;
      color:#64748b;
      font-size:13px;
      margin-bottom:10px;
    }
    .crumbs a{ text-decoration:none; opacity:.9; }
    .crumbs a:hover{ text-decoration:underline; }

    .kicker{
      display:inline-flex;
      gap:8px;
      align-items:center;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(99,102,241,.18);
      background:rgba(99,102,241,.08);
      color:#3730a3;
      font-weight:900;
      font-size:12px;
      letter-spacing:.3px;
      width:fit-content;
    }
    .dot{
      width:8px;height:8px;border-radius:99px;
      background: linear-gradient(135deg,#6366F1,#4F46F5);
    }

    h1{
      margin: 12px 0 10px;
      font-size: 40px;
      line-height: 1.1;
      letter-spacing: -0.6px;
    }
    .grad{
      background: linear-gradient(135deg, #5550F4 0%, #E84997 100%);
      -webkit-background-clip:text;
      background-clip:text;
      color: transparent;
    }
    .sub{
      margin:0;
      max-width: 78ch;
      color:#475569;
      line-height:1.75;
      font-size: 15px;
    }

    /* Controls */
    .controls{
      margin-top: 16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 12px;
      flex-wrap:wrap;
    }
    .filters{
      display:flex;
      gap: 10px;
      flex-wrap:wrap;
    }
    .pill{
      border: 1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.75);
      border-radius: 999px;
      padding: 9px 12px;
      font-size: 13px;
      font-weight: 900;
      color:#0f172a;
      cursor:pointer;
      transition: .2s ease;
      user-select:none;
    }
    .pill:hover{ transform: translateY(-1px); background:#fff; }
    .pill[aria-pressed="true"]{
      border-color: rgba(99,102,241,.35);
      background: rgba(99,102,241,.10);
    }

    .search{
      min-width: min(360px, 100%);
      display:flex;
      gap: 10px;
      align-items:center;
    }
    .input{
      flex:1;
      padding: 12px 12px;
      border-radius: 14px;
      border: 1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.92);
      outline:none;
      font-size: 14px;
      transition: .2s ease;
    }
    .input:focus{
      border-color: rgba(99,102,241,.45);
      box-shadow: 0 0 0 4px rgba(99,102,241,.12);
    }

    /* Grid */
    .grid{
      margin-top: 14px;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    /* Cards */
    .card{
      background: rgba(255,255,255,.92);
      border: 1px solid rgba(15,23,42,.10);
      border-radius: 22px;
      overflow:hidden;
      box-shadow: 0 18px 40px rgba(2,6,23,.06);
      transition: .22s ease;
      cursor:pointer;
      position:relative;
    }
    .card:hover{
      transform: translateY(-3px);
      box-shadow: 0 26px 60px rgba(2,6,23,.10);
      border-color: rgba(99,102,241,.20);
    }
    .thumb{
      height: 180px;
      position:relative;
    }
    .thumb img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
      filter:saturate(1.05);
    }
    .thumb:after{
      content:"";
      position:absolute;
      inset:0;
      background: linear-gradient(180deg, rgba(2,6,23,0), rgba(2,6,23,.55));
      pointer-events:none;
    }

    .content{
      padding: 14px 14px 16px;
      position:relative;
    }
    .meta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 10px;
      margin-bottom: 8px;
    }
    .tag{
      font-size: 12px;
      font-weight: 900;
      color:#111827;
      background: rgba(15,23,42,.06);
      border: 1px solid rgba(15,23,42,.08);
      padding: 6px 10px;
      border-radius: 999px;
      white-space:nowrap;
    }
    .metric{
      font-size: 12px;
      font-weight: 900;
      color:#0f172a;
      background: rgba(99,102,241,.10);
      border: 1px solid rgba(99,102,241,.22);
      padding: 6px 10px;
      border-radius: 999px;
      white-space:nowrap;
    }
    .card h3{
      margin: 0 0 6px;
      font-size: 16px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color:#475569;
      font-size: 13px;
      line-height:1.6;
    }

    /* Empty state */
    .empty{
      display:none;
      margin-top: 16px;
      padding: 22px;
      border-radius: 22px;
      border: 1px dashed rgba(15,23,42,.16);
      background: rgba(255,255,255,.80);
      color:#64748b;
    }

    /* Modal */
    .overlay{
      position: fixed;
      inset: 0;
      background: rgba(2,6,23,.55);
      opacity:0;
      visibility:hidden;
      transition: .22s ease;
      z-index: 1000;
      padding: 18px;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .overlay.open{
      opacity:1;
      visibility:visible;
    }
    .modal{
      width: min(980px, 100%);
      background: rgba(255,255,255,.96);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 22px;
      box-shadow: 0 40px 90px rgba(2,6,23,.55);
      overflow:hidden;
      transform: translateY(10px);
      transition: .22s ease;
    }
    .overlay.open .modal{ transform: translateY(0); }
    .modal-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      padding: 12px 12px;
      border-bottom: 1px solid rgba(15,23,42,.10);
      background: linear-gradient(180deg, rgba(99,102,241,.10), rgba(255,255,255,0));
    }
    .modal-title{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight: 950;
    }
    .close{
      width:44px;height:44px;
      border-radius: 14px;
      border: 1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.92);
      cursor:pointer;
      position:relative;
    }
    .close:before, .close:after{
      content:"";
      position:absolute;
      left:50%; top:50%;
      width:18px;height:2px;
      background:#0f172a;
      transform-origin:center;
      border-radius:99px;
    }
    .close:before{ transform:translate(-50%,-50%) rotate(45deg); }
    .close:after{ transform:translate(-50%,-50%) rotate(-45deg); }

    .modal-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
    }
    .modal-grid img{
      width:100%;
      height: 420px;
      object-fit:cover;
      display:block;
    }
    .modal-body{
      padding: 16px 16px 18px;
    }
    .modal-body h4{
      margin: 0 0 8px;
      font-size: 16px;
    }
    .modal-body p{
      margin: 0 0 12px;
      color:#475569;
      font-size: 14px;
      line-height:1.7;
    }
    .bullets{
      margin: 0;
      padding: 0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap: 10px;
    }
    .bullets li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      font-size: 14px;
      line-height: 1.5;
    }
    .check{
      width:18px;height:18px;
      border-radius:6px;
      background: rgba(99,102,241,.12);
      border: 1px solid rgba(99,102,241,.22);
      display:grid;
      place-items:center;
      flex:0 0 auto;
      margin-top:2px;
      color:#4F46F5;
      font-weight: 900;
    }

    .modal-actions{
      margin-top: 14px;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding: 12px 14px;
      border-radius: 14px;
      font-weight: 900;
      font-size: 14px;
      text-decoration:none;
      cursor:pointer;
      transition: .2s ease;
      border: 1px solid transparent;
      white-space: nowrap;
    }
    .btn-primary{
      background: linear-gradient(135deg, #6366F1 0%, #4F46F5 100%);
      color: #fff;
      box-shadow: 0 14px 30px rgba(99,102,241,.18);
    }
    .btn-primary:hover{ transform: translateY(-1px); filter: brightness(1.03); }
    .btn-ghost{
      background: rgba(255,255,255,.75);
      border-color: rgba(15,23,42,.12);
      color:#0f172a;
    }
    .btn-ghost:hover{ transform: translateY(-1px); background:#fff; }

    /* Responsive */
    @media (max-width: 980px){
      h1{ font-size: 30px; }
      .grid{ grid-template-columns: 1fr; }
      .search{ min-width: 100%; }
      .modal-grid{ grid-template-columns: 1fr; }
      .modal-grid img{ height: 280px; }
    }
    @media (max-width: 520px){
      .hero{ padding: 28px 16px; }
      .thumb{ height: 160px; }
    }