/* Phones only — tablets (768px+) and desktop are supported. */
#pp-mobile-guard {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  background: #0B0B0F;
  color: #F5EFE3;
  padding: 32px 24px;
  box-sizing: border-box;
  overflow: auto;
  font-family: system-ui, -apple-system, sans-serif;
}
#pp-mobile-guard.is-visible {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#pp-mobile-guard .pp-mobile-guard-inner {
  max-width: 420px;
}
#pp-mobile-guard h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 8vw, 36px);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  line-height: 1.15;
}
#pp-mobile-guard p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 12px;
  color: rgba(245, 239, 227, 0.82);
}
#pp-mobile-guard .pp-mobile-guard-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 107, 26, 0.15);
  border: 1px solid rgba(255, 107, 26, 0.35);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFB068;
}
#pp-mobile-guard a {
  color: #FF8A33;
  text-decoration: none;
  font-weight: 600;
}
@media (min-width: 768px) {
  #pp-mobile-guard { display: none !important; }
}
