/* ========================= */
/* styles.css */
/* ========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0f172a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

.container {
  max-width: 900px;
  padding: 40px;
}

.logo {
  width: 260px;
  max-width: 80vw;
  height: auto;
  margin-bottom: 20px;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .logo {
    width: 180px;
    max-width: 85vw;
  }
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 30px;
}

.pill-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.pill {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 18px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  font-size: 0.95rem;
}

.about {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.6;
  max-width: 650px;
  margin: auto;
  margin-bottom: 40px;
}

.cta {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff4d4d, #ff7a18);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 80, 80, 0.35);
}

footer {
  margin-top: 40px;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ========================= */
/* Logo Glow Animation */
/* ========================= */

.logo {
  width: 260px;
  max-width: 80vw;
  height: auto;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  animation: glow 2.5s ease-in-out infinite alternate;
}

@keyframes glow {
  0% {
    filter: drop-shadow(0 0 2px #ff4d4d);
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 12px #ff4d4d) drop-shadow(0 0 6px #ff7a18);
    transform: scale(1.02);
  }
  100% {
    filter: drop-shadow(0 0 2px #ff7a18);
    transform: scale(1);
  }
}