/* iOS PWA Splash Screens — Perfect Dose */
/* Applied via apple-touch-startup-image meta tags */

/* iPhone SE (1st gen), 8, 7, 6s: 750×1334 @2x — matches 2x DPR landscape */
@media screen and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) {
  html { background: #ffffff url('/icon-512.svg') no-repeat center center; background-size: 270px 270px; }
}

/* iPhone 8 Plus: 1242×2208 @3x */
@media screen and (device-width: 414px) and (device-height: 736px) and (-webkit-device-pixel-ratio: 3) {
  html { background: #ffffff url('/icon-512.svg') no-repeat center center; background-size: 270px 270px; }
}

/* iPhone X, XS, 11 Pro, 12 mini: 1125×2436 @3x */
@media screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
  html { background: #ffffff url('/icon-512.svg') no-repeat center center; background-size: 270px 270px; }
}

/* iPhone XR, 11: 828×1792 @2x */
@media screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
  html { background: #ffffff url('/icon-512.svg') no-repeat center center; background-size: 270px 270px; }
}

/* iPhone 12, 13, 14: 1170×2532 @3x */
@media screen and (device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3) {
  html { background: #ffffff url('/icon-512.svg') no-repeat center center; background-size: 270px 270px; }
}

/* iPhone 14 Pro Max, 13 Pro Max: 1290×2796 @3x */
@media screen and (device-width: 430px) and (device-height: 932px) and (-webkit-device-pixel-ratio: 3) {
  html { background: #ffffff url('/icon-512.svg') no-repeat center center; background-size: 270px 270px; }
}