* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Bubbles sit behind content */
#bubbles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.landing {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 1.5rem 2.5rem;
  padding-top: 3rem;
  text-align: center;
}

/* Logo / Title – polished glow */
.logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  filter: drop-shadow(0 0 24px rgba(255, 45, 85, 0.35)) drop-shadow(0 0 8px rgba(255, 45, 85, 0.2));
}

.headline {
  margin-top: 0.25rem;
  font-size: clamp(1.15rem, 3.5vw, 1.65rem);
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.3;
  max-width: 420px;
  margin-bottom: 0;
}

/* Store badges – more breathing room */
.store-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-top: 3.5rem;
  margin-bottom: 3rem;
}

.store-badges .badge {
  height: 62px;
  width: auto;
  transition: opacity 0.2s;
}

.store-badges .badge:hover {
  opacity: 0.85;
}

/* App icon container – no inner stroke, icon fills container */
.app-icon-container {
  width: 240px;
  height: 240px;
  border-radius: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
  margin-bottom: 3rem;
  padding: 0;
  overflow: hidden;
}

.app-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 52px;
}

.footer {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  font-size: 0.9rem;
  color: #555;
}

.footer a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.footer a:hover {
  color: #ff2d55;
}

@media (min-width: 640px) {
  .store-badges {
    flex-direction: row;
    gap: 1.25rem;
  }

  .logo {
    max-width: 320px;
  }

  .headline {
    font-size: 1.75rem;
  }

  /* Larger icon on desktop */
  .app-icon-container {
    width: 280px;
    height: 280px;
    border-radius: 60px;
    padding: 0;
  }

  .app-icon {
    border-radius: 60px;
  }
}
