/* v155 Push notification module - isolated styles only */
.circular-push-nudge {
  position: fixed;
  left: max(12px, env(safe-area-inset-left));
  right: max(12px, env(safe-area-inset-right));
  bottom: calc(78px + env(safe-area-inset-bottom));
  z-index: 99990;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(37, 99, 235, .18);
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 45px rgba(15, 23, 42, .16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #111827;
  font-family: inherit;
}
.circular-push-nudge[hidden] { display: none !important; }
.circular-push-nudge__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 22px;
  flex: 0 0 auto;
}
.circular-push-nudge__body { min-width: 0; flex: 1; }
.circular-push-nudge__title { font-weight: 800; font-size: 15px; line-height: 1.2; }
.circular-push-nudge__text { font-size: 12px; line-height: 1.35; color: #64748b; margin-top: 2px; }
.circular-push-nudge__actions { display: flex; gap: 8px; align-items: center; }
.circular-push-btn {
  border: 0;
  border-radius: 999px;
  padding: 9px 12px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}
.circular-push-btn--primary { background: #2563eb; color: #fff; }
.circular-push-btn--ghost { background: #f1f5f9; color: #334155; width: 36px; height: 36px; padding: 0; }
.circular-push-status {
  position: fixed;
  left: 50%;
  bottom: calc(18px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 99991;
  max-width: min(92vw, 420px);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15,23,42,.92);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.circular-push-status[hidden] { display: none !important; }
@media (min-width: 520px) {
  .circular-push-nudge { left: 50%; right: auto; transform: translateX(-50%); width: min(440px, calc(100vw - 24px)); }
}

/* v156 pre-dashboard notification permission gate */
.circular-push-gate{
  max-width: 720px;
  margin: 0 auto;
}
.circular-push-gate__kicker{
  display:inline-flex;
  align-items:center;
  gap:6px;
  border-radius:999px;
  padding:8px 14px;
  background:#eff6ff;
  color:#1d4ed8;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:13px;
  margin-bottom:12px;
}
.circular-push-gate h1{
  margin: 0 0 8px;
  font-size: clamp(28px, 7vw, 42px);
  line-height: 1.08;
  color:#111827;
}
.circular-push-gate__list{
  display:grid;
  gap:10px;
  margin:18px 0;
}
.circular-push-gate__list > div{
  border:1px solid rgba(148,163,184,.3);
  border-radius:18px;
  padding:13px 14px;
  background:rgba(248,250,252,.9);
}
.circular-push-gate__list b{
  display:block;
  font-size:16px;
  color:#111827;
  margin-bottom:3px;
}
.circular-push-gate__list span{
  display:block;
  font-size:13px;
  color:#64748b;
  line-height:1.35;
}
.circular-push-gate__actions{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}
.circular-push-gate__actions button{
  min-height:48px;
  border-radius:16px;
  font-weight:900;
}
.circular-push-gate__status{
  margin-top:12px;
}
@media (max-width:420px){
  .circular-push-gate__actions{display:grid;grid-template-columns:1fr;}
  .circular-push-gate__actions button{width:100%;}
}
