/* NHPQ Performance R1 — legal notice + lazy list helpers */
.nhpq-legal-notice {
  position: fixed;
  left: 50%;
  bottom: max(14px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 1400;
  width: min(880px, calc(100vw - 28px));
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 16px;
  background: rgba(13, 25, 42, .96);
  color: #fff;
  box-shadow: 0 14px 44px rgba(0,0,0,.34);
  transition: opacity .18s ease, transform .18s ease;
}
.nhpq-legal-notice.is-closing { opacity: 0; transform: translate(-50%, 8px); }
.nhpq-legal-notice-copy { min-width: 0; display: grid; gap: 3px; line-height: 1.35; }
.nhpq-legal-notice-copy strong { font-size: .88rem; letter-spacing: .01em; }
.nhpq-legal-notice-copy span { color: rgba(255,255,255,.82); font-size: .78rem; }
.nhpq-legal-notice-actions { display: flex; flex: 0 0 auto; gap: 8px; }
.nhpq-legal-notice button {
  min-height: 38px;
  padding: 0 13px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.24);
  font: inherit;
  font-size: .78rem;
  font-weight: 750;
  cursor: pointer;
  white-space: nowrap;
}
.nhpq-legal-detail { color: #fff; background: transparent; }
.nhpq-legal-accept { color: #10233d; background: #fff; }
.sheet-group-lazy-note {
  margin: 0;
  padding: 10px 12px;
  color: var(--muted, #64748b);
  font-size: .78rem;
}
@media (max-width: 760px) {
  .nhpq-legal-notice {
    width: calc(100vw - 20px);
    bottom: max(9px, env(safe-area-inset-bottom));
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
  }
  .nhpq-legal-notice-copy span { font-size: .75rem; }
  .nhpq-legal-notice-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .nhpq-legal-notice button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .nhpq-legal-notice { transition: none; }
}
