* { box-sizing: border-box; }
body { margin: 0; font-family: "Segoe UI", system-ui, -apple-system, sans-serif; color: #0f172a;
  background: radial-gradient(120% 90% at 50% 0%, #f3f6fc 0%, #eef1f8 60%, #e7ecf5 100%); min-height: 100vh; }
.apps-bar { display: flex; align-items: center; gap: 12px; padding: 14px 20px; }
.apps-bar img { width: 28px; height: 28px; }
.apps-bar .name { font-weight: 700; font-size: 16px; }
.apps-wrap { max-width: 1040px; margin: 8px auto 60px; padding: 0 20px; }
.apps-hero { margin: 10px 4px 22px; }
.apps-hero h1 { font-size: 26px; margin: 0 0 4px; }
.apps-hero p { color: #64748b; margin: 0; font-size: 14px; }
.apps-group-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: #94a3b8; margin: 22px 4px 12px; }
.apps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; }
.tile { display: flex; flex-direction: column; gap: 10px; background: #fff; border: 1px solid #e6eaf2; border-radius: 16px;
  padding: 18px; text-decoration: none; color: inherit; box-shadow: 0 1px 2px rgba(15,23,42,.04); transition: transform .12s ease, box-shadow .12s ease; position: relative; }
.tile:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(15,23,42,.12); }
.tile.locked { opacity: .62; }
.tile .ico { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px; font-weight: 700; }
.tile .ico img { width: 30px; height: 30px; }
.tile .tname { font-weight: 650; font-size: 15px; }
.tile .tdesc { color: #64748b; font-size: 12.5px; line-height: 1.45; }
.tile .badge { position: absolute; top: 12px; right: 12px; font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .4px; padding: 3px 8px; border-radius: 20px; }
.badge.inc { background: #e7f7ee; color: #128a4b; }
.badge.addon { background: #fdf0e6; color: #b4601a; }
.badge.new { background: #eef0ff; color: #4f46e5; }
