:root{
  --coral:#F06B61;
}

*{ box-sizing:border-box; }

/*
  iOS Safari can show "white" areas in the safe-area + overscroll regions.
  We force a full-viewport coral background on BOTH html + a fixed layer.
*/
html,body{
  /* Use modern viewport units so Safari's dynamic bars don't create "white" gaps */
  min-height: 100vh;
  min-height: 100svh;
  height: 100%;
  background-color: var(--coral);
  background: radial-gradient(900px 700px at 30% 15%, rgba(255,255,255,.18), rgba(255,255,255,0) 60%),
              radial-gradient(900px 650px at 80% 45%, rgba(0,0,0,.22), rgba(0,0,0,0) 62%),
              linear-gradient(180deg, #F06B61 0%, #F06B61 35%, #B23731 100%);
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  background: radial-gradient(900px 700px at 30% 15%, rgba(255,255,255,.18), rgba(255,255,255,0) 60%),
              radial-gradient(900px 650px at 80% 45%, rgba(0,0,0,.22), rgba(0,0,0,0) 62%),
              linear-gradient(180deg, #F06B61 0%, #F06B61 35%, #B23731 100%);
  z-index:-1;
}

body{
  min-height:100vh;
  min-height:100svh;

  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#fff;
  /* Ensure any safe-area / overscroll region uses coral instead of default white */
  background-color: var(--coral);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: calc(34px + env(safe-area-inset-top))
           calc(18px + env(safe-area-inset-right))
           calc(34px + env(safe-area-inset-bottom))
           calc(18px + env(safe-area-inset-left));
  overscroll-behavior: none;
}

.wrap{ width:100%; max-width: 980px; }

.content{
  margin: 0 auto;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 26px;
  overflow: visible;
  padding: 44px 22px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  animation: hsFadeIn 650ms ease-out both;
}

/* Subtle fade-in on load */
@keyframes hsFadeIn{
  from{ opacity:0; transform: translateY(10px); }
  to{ opacity:1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce){
  .content{ animation: none; }
}

.brand{
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 0px;
}

/* Slightly bigger than before */
.logo{
  width: 210px;
  height: 210px;
  object-fit: contain;
  transform: translateX(-6px);
}

h1{
  margin: -6px 0 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 56px;
  line-height: 1.05;
}

.tagline{
  margin: 0;
  opacity: .92;
  font-size: 16px;
}

.copy{
  max-width: 64ch;
  margin: 16px auto 0;
  text-align:center;
}

.copy p{ margin: 0 0 12px; line-height: 1.55; }

.bullets{
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block; /* keeps bullets centered */
  text-align: left;      /* but bullet text reads clean */
}

.bullets li{
  margin: 8px 0;
  position: relative;
  padding-left: 18px;
}

.bullets li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  opacity: .95;
}

.cta{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.18);
  text-align:center;
}

.storeStack{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 12px;
}

.storeLink{
  display:inline-block;
  line-height:0;
  transition: transform .12s ease;
}

.storeLink:hover{
  transform: translateY(-2px);
}

/* No extra blocks: images are cropped + we don't add background panels */
.storeImg{
  height: 64px;
  width: auto;
  display:block;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.35));
}

.legalRow{
  margin-top: 16px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
}

.legal{
  color: rgba(255,255,255,.92);
  text-decoration:none;
  border-bottom: 1px solid rgba(255,255,255,.35);
  padding-bottom: 2px;
}

.legal:hover{ border-bottom-color: rgba(255,255,255,.75); }
.dot{ opacity: .85; }

@media (min-width: 740px){
  .content{ padding: 52px 52px; }
  /* still stacked per your request */
}

@keyframes hsFadeIn{
  from{ opacity: 0; transform: translateY(10px); }
  to{ opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce){
  .content{ animation: none; }
}


/* iOS safe-area fix: only nudge logo down on mobile */
@supports (padding: env(safe-area-inset-top)) {
  @media (max-width: 768px) {
    .logo {
      margin-top: calc(env(safe-area-inset-top) + 24px);
    }
  }
}

/* REAL mobile safe-area nudge */
@media (max-width: 768px) {
  body {
    padding-top: calc(env(safe-area-inset-top) + 60px) !important;
  }
}
