/* Brand lockup (markup: inc/logo.php). Kept in its own file because the
   standalone 404 page renders outside inc/layout.php and needs the same rules. */
.pp-logo { display:flex; align-items:center; gap:11px; color:#ecedf7; }
.pp-logo-mark { position:relative; flex-shrink:0; width:30px; height:30px; border-radius:9px; background:linear-gradient(135deg,#8a89ff,#3f7bff); display:flex; align-items:center; justify-content:center; box-shadow:0 0 22px rgba(110,108,255,0.55); }
.pp-logo-sweep { position:absolute; inset:0; animation:ppSweep 3s linear infinite; }
.pp-logo-sweep::before { content:""; position:absolute; top:6px; left:50%; width:5px; height:5px; margin-left:-2.5px; border-radius:50%; background:#06070e; }
.pp-logo-text { font-family:'Unbounded',sans-serif; font-weight:600; font-size:18px; letter-spacing:-0.01em; }
@keyframes ppSweep { to { transform:rotate(360deg); } }
@media (prefers-reduced-motion:reduce) { .pp-logo-sweep { animation:none; } }
