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

body {
  font-family: "Outfit", sans-serif;
  background-color: #050505; /* Black/Dark Grey */
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
}

.highlight {
  color: #ffffff;
}

.highlight-gold {
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Header */
.main-header {
  padding: 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  height: 150px;
  width: auto;
  max-width: 80vw; /* Ensure it doesn't overflow on small screens */
}

/* Hero Section */
.hero-section {
  padding-top: 180px;
  padding-bottom: 100px;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at center, #1a1a1a 0%, #050505 70%);
}

.hero-slogan {
  font-size: 2.5rem;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
}

.hero-subtext {
  font-size: 1.2rem;
  color: #a0a0a0;
  max-width: 600px;
  margin: 0 auto 40px auto;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: #000;
  box-shadow: 0 10px 20px rgba(255, 165, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 165, 0, 0.3);
}

/* Features Section */
.features-section {
  padding: 80px 0;
}

.feature-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 120px;
  gap: 60px;
  opacity: 0;
  animation: fadeIn 1s forwards;
  animation-delay: 0.2s;
  /* Ideally stick to scroll animations, but for simple static simple fadein is okay or just static */
  opacity: 1; /* Reset for now */
}

/* Alternate layout */
.feature-card.left-image {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1;
}

.feature-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #fff, #bbb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-content p {
  font-size: 1.1rem;
  color: #bbb;
}

.feature-image-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.feature-image {
  width: 100%;
  max-width: 350px; /* Mobile app screenshots are usually narrow */
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-image {
  transform: scale(1.02);
}

/* Glow Effect behind images */
.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.15) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  filter: blur(40px);
  z-index: 1;
  border-radius: 50%;
}

.left-image .glow-effect {
  background: radial-gradient(
    circle,
    rgba(0, 230, 118, 0.15) 0%,
    rgba(0, 0, 0, 0) 70%
  ); /* Greenish glow for contrast */
}

/* Footer */
.main-footer {
  padding: 40px 0;
  text-align: center;
  color: #666;
  border-top: 1px solid #1a1a1a;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-slogan {
    font-size: 2.8rem;
  }

  .feature-card {
    flex-direction: column !important; /* Stack everything on tablet/mobile */
    text-align: center;
    gap: 40px;
    margin-bottom: 80px;
  }

  .feature-image-wrapper {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-slogan {
    font-size: 2rem;
  }
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-block;
    padding: 15px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #FFD700;
    border: 2px solid #FFD700;
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
    cursor: default;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Scroll Down Button */
html {
    scroll-behavior: smooth;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.scroll-down-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-down-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}


