body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #fdfbff 0%, #f9f9ff 100%); /* soft pastel gradient */
  color: #333;
  text-align: center;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #fff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.2rem;
}

.logo .highlight {
  color: #a3bffa; /* pastel lavender */
}

.nav a img {
  width: 24px;
  margin-left: 20px;
}

/* =====================
   Animations
===================== */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadePulse {
  0% { opacity: 0.4; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
  100% { opacity: 0.4; transform: translateY(0); }
}

/* Hero */
.hero {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px 60px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  opacity: 0;
  animation: fadeUp 1s ease-out forwards;
}

.highlight-bg {
  background: #cfe2ff; /* pastel blue */
  color: #222;
  padding: 0 10px;
  border-radius: 8px;
}

.hero p {
  margin: 20px 0 30px;
  font-size: 1.15rem;
  color: #555;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.4s;
}

/* Store Buttons */
.store-buttons {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  margin-top: 30px;
  opacity: 0;
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.8s;
}

.store-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.store-badge img {
  height: 55px;
  width: auto;
}

.coming-soon {
  margin-top: 6px;
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
  animation: fadePulse 2s ease-in-out infinite;
  animation-delay: 1.2s;
}

/* Screenshots */
.screenshots {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 50px 20px;
  background: #f8f9fb;
  border-top: 1px solid #eee;
}

/* .screenshots img {
  max-width: 150px;
  border-radius: 18px;
  border: 4px solid #111;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
} */

.screenshots img {
  max-width: 150px;
  border-radius: 18px;
  border: 4px solid #111;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);

  /* Animation on load */
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease-out forwards;
  transition: all 0.3s ease;   /* 👈 this enables hover smoothness */
}

.screenshots img:nth-child(1) { animation-delay: 0.2s; }
.screenshots img:nth-child(2) { animation-delay: 0.4s; }
.screenshots img:nth-child(3) { animation-delay: 0.6s; }
.screenshots img:nth-child(4) { animation-delay: 0.8s; }
.screenshots img:nth-child(5) { animation-delay: 1s; }
.screenshots img:nth-child(6) { animation-delay: 1.2s; }

.screenshots img:hover {
  transform: translateY(-6px) scale(1.03);  /* hover lift */
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  padding: 80px 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  background: #fdfbff;
  border-radius: 20px;
}

.feature {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
}

.features .feature:nth-child(1) { animation-delay: 0.2s; }
.features .feature:nth-child(2) { animation-delay: 0.4s; }
.features .feature:nth-child(3) { animation-delay: 0.6s; }
.features .feature:nth-child(4) { animation-delay: 0.8s; }

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.feature h3 {
  margin: 0 0 10px;
  color: #222;
}

.feature p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsive: stack features on mobile */
@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  background: #f5f5f9;
  border-top: 1px solid #e6e6ee;
  padding: 40px 20px;
  margin-top: 60px;
  font-size: 0.9rem;
  color: #555;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto 20px auto;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #333;
}

.footer-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.footer-links a {
  margin: 0 10px;
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #a3bffa;
}

.footer-bottom {
  text-align: center;
  color: #999;
  font-size: 0.8rem;
}