/* Intro Section */
.intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 3rem 2rem 2rem 5rem;
  background: #fff;
}
.intro-content {
  flex: 1 1 350px;
  min-width: 300px;
  max-width: 500px;
}
.intro-content .lead {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.intro-image {
  flex: 1 1 250px;
  min-width: 220px;
  text-align: center;
}
.intro-image img {
  max-width: 320px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* Feature Images */
.feature-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Premium Gallery */
.premium-gallery {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0 1rem 0;
  flex-wrap: wrap;
}
.premium-gallery img {
  max-width: 180px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  background: #fff;
}

.tech-note {
  font-size: 0.98rem;
  color: #aaa;
  margin: 1.5rem 0 0.5rem 0;
}

.coming-soon {
  font-size: 1rem;
  color: #333;
  margin-top: 0.5rem;
  opacity: 0.7;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
}
.navbar img {
  height: 100px;
}
.cta-btn {
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border: 2px solid #0f0;
  color: #0f0;
  border-radius: 6px;
  font-weight: 600;
}
.cta-btn:hover {
  background: #0f0;
  color: #000;
}

/* Hero */
.hero {
  position: relative;
  text-align: center;
  padding: 3rem 1.5rem;
  background: #000;
  color: white;
  background-image: url('/images/hero_header.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7); /* dark overlay */
  z-index: 2;
}

.hero > *, .hero .navbar, .hero .hero-content {
  position: relative;
  z-index: 3;
}
.hero .highlight {
  color: #0f0;
}
.hero-content {
  max-width: 700px;
  margin: auto;
}
.primary-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.5rem;
  background: #0f0;
  color: #000;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
}
.hero-image img {
  max-width: 300px;
  margin-top: 2rem;
}

/* Features */
.features {
  padding: 3rem 2rem;
  background: #f8f8f8;
}
.features h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Screenshots */
.screenshots {
  padding: 3rem 2rem;
  text-align: center;
}
.screenshot-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.screenshot-row img {
  max-width: 200px;
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.screenshot-row img.visible {
  opacity: 1;
  transform: scale(1);
}

/* Premium */
.premium {
  padding: 3rem 2rem;
  background: #000;
  color: white;
  text-align: center;
}
.premium ul {
  list-style: none;
  margin-top: 1rem;
}
.premium li {
  margin: 0.5rem 0;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.premium li.visible {
  opacity: 1;
  transform: translateY(0);
}

.premium .feature-card {
    background: #333;
}

/* CTA */
.cta {
  padding: 3rem 2rem;
  text-align: center;
  background: #3b3;
  color: #000;
}

/* Footer */
.footer {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  background: #111;
  color: #ccc;
}

