body {
  background: #181a20;
  color: #f7f9fb;
  font-family: 'Roboto', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #181a20 0%, #6a82fb 60%, #fc5c7d 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(252,92,125,0.18) 0%, transparent 70%),
              radial-gradient(circle at 30% 70%, rgba(106,130,251,0.18) 0%, transparent 70%);
  z-index: 1;
}
.hero-glass {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.10);
  border-radius: 32px;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.18);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  padding: 48px 32px 36px 32px;
  max-width: 480px;
  margin: 48px auto 0 auto;
  text-align: center;
}
.hero-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  animation: floatLogo 3s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 900;
  margin: 0 0 16px 0;
  letter-spacing: -1px;
  line-height: 1.1;
}
.gradient-text {
  background: linear-gradient(90deg, #6a82fb 0%, #fc5c7d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: #e0e3ea;
}

.cta-btn {
  background: linear-gradient(90deg, #6a82fb 0%, #fc5c7d 100%);
  color: #fff;
  border: none;
  padding: 18px 44px;
  border-radius: 32px;
  font-size: 1.25rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(252,92,125,0.10);
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  outline: none;
  position: relative;
}
.cta-btn.cta-glow::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 40px;
  background: linear-gradient(90deg, #6a82fb 0%, #fc5c7d 100%);
  opacity: 0.25;
  filter: blur(8px);
  z-index: -1;
  transition: opacity 0.2s;
}
.cta-btn:hover, .cta-btn:focus {
  box-shadow: 0 6px 32px rgba(252,92,125,0.18);
  transform: translateY(-2px) scale(1.04);
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 64px 0 48px 0;
  padding: 0 20px;
}
.feature {
  flex: 1 1 260px;
  max-width: 320px;
  min-width: 220px;
  text-align: center;
  margin: 0 8px;
}
.glass-card {
  background: rgba(255,255,255,0.10);
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(31,38,135,0.10);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1.5px solid rgba(255,255,255,0.18);
  transition: box-shadow 0.2s, transform 0.2s, border 0.2s;
}
.glass-card:hover {
  box-shadow: 0 8px 40px 0 rgba(252,92,125,0.18);
  border: 1.5px solid #fc5c7d;
  transform: translateY(-4px) scale(1.03);
}
.feature img {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  margin-top: 18px;
  filter: drop-shadow(0 2px 8px rgba(106,130,251,0.10));
}
.feature h3 {
  margin: 0 0 10px 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}
.feature p {
  color: #e0e3ea;
  font-size: 1.08rem;
}

.screenshots {
  text-align: center;
  margin: 40px 0 60px 0;
}
.screenshots h2 {
  font-size: 1.7rem;
  margin-bottom: 24px;
  color: #fff;
  font-weight: 700;
}
.screenshot-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.screenshot-list img.glass-card {
  width: 180px;
  height: 360px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.18);
  margin-bottom: 12px;
  transition: box-shadow 0.2s, transform 0.2s, border 0.2s;
}
.screenshot-list img.glass-card:hover {
  box-shadow: 0 8px 40px 0 rgba(106,130,251,0.18);
  border: 1.5px solid #6a82fb;
  transform: translateY(-4px) scale(1.03);
}

.cta-section {
  text-align: center;
  margin-bottom: 60px;
}
.cta-note {
  margin-top: 18px;
  color: #b0b6c6;
  font-size: 1.05rem;
}

.footer {
  background: #181a20;
  color: #fff;
  padding: 32px 0 18px 0;
  text-align: center;
  margin-top: auto;
  box-shadow: 0 -2px 16px rgba(106,130,251,0.07);
}
.dark-footer {
  background: #181a20;
}
.footer-content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 6px;
}
.footer-pill {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 20px;
  padding: 8px 18px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  border: 1.2px solid rgba(255,255,255,0.18);
}
.footer-pill:hover {
  background: #6a82fb;
  color: #fff;
}
.footer-copy {
  font-size: 0.98rem;
  color: #b0b6c6;
}

.store-badges {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin: 18px 0 0 0;
  flex-wrap: wrap;
}
.store-badge {
  height: 48px;
  width: auto;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 12px rgba(31,38,135,0.10);
  border-radius: 12px;
  background: rgba(255,255,255,0.10);
}
.store-badge:hover, .store-badge:focus {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 6px 24px rgba(106,130,251,0.18);
}

@media (max-width: 900px) {
  .features {
    flex-direction: column;
    gap: 24px;
  }
  .screenshot-list {
    flex-direction: column;
    gap: 18px;
  }
  .hero-glass {
    padding: 32px 8vw 28px 8vw;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.1rem;
  }
  .hero-glass {
    padding: 24px 2vw 18px 2vw;
  }
  .features {
    gap: 12px;
  }
  .screenshot-list img.glass-card {
    width: 90vw;
    height: 48vw;
    min-width: 160px;
    min-height: 220px;
    max-width: 98vw;
    max-height: 60vw;
  }
  .store-badge {
    height: 38px;
  }
  .store-badges {
    gap: 10px;
  }
}
