@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f8f9fb;
  color: #292929;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 40px;
}

.download-btn {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 200px 40px 40px;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.hero-left {
  flex: 1 1 500px;
  max-width: 500px;
}

.hero-left h1 {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 20px;
}

.subtitle {
  text-transform: uppercase;
  color: #555;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.btn-outline, .btn-filled {
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border: 2px solid #000;
}

.btn-outline {
  background-color: #fff;
  color: #000;
}

.btn-filled {
  background-color: #000;
  color: #fff;
}

.note {
  color: #888;
  margin-top: 5px;
}

/* Hero Right Banner */
.banner-image {
  width: 642px;
  height: 362px;
  border-radius: 20px;
  overflow: hidden;
  flex: 0 0 auto;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Logo */
.logo {
  height: 40px;
}

/* Hide badge */
.badge {
  display: none;
}

/* Info Sections */
.info-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 40px;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.info-left {
  flex: 0 0 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-right {
  flex: 1 1 500px;
  max-width: 700px;
}

.info-image {
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
  border-radius: 20px;
}

.emoji-icon {
  font-size: 48px;
}

.info-right h2 {
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 20px;
  color: #292929;
}

.info-right p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Get Started Section */
.get-started-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.get-started-title {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 8px;
  color: #292929;
}

.get-started-subtitle {
  text-transform: uppercase;
  color: #555;
  margin-bottom: 30px;
  font-size: 14px;
}

.get-started-btn {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
}

/* Top Right Text Button */
.link-btn {
  background: none;
  border: none;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s;
}

.link-btn:hover {
  color: #444;
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .nav-actions {
    margin-top: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero {
    flex-direction: column;
    align-items: center;
    padding: 80px 20px 40px;
    gap: 48px;
    max-width: 100%;
  }

  .hero-left, .hero-right {
    max-width: 100%;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 36px;
    line-height: 1.3;
  }

  .subtitle {
    font-size: 14px;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .btn-filled,
  .link-btn {
    width: 100%;
    text-align: center;
  }

  .logo {
    height: 32px;
  }

  .banner-image {
    width: 100%;
    max-width: 380px;
    height: auto;
    aspect-ratio: 642 / 362;
    border-radius: 16px;
  }

  .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Info Sections Mobile */
  .info-section {
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    gap: 30px;
    text-align: center;
  }

  .info-left, .info-right {
    max-width: 100%;
  }

  .info-left {
    flex: none;
  }

  .info-image {
    width: 100px;
    height: 100px;
  }

  .emoji-icon {
    font-size: 40px;
  }

  .info-right h2 {
    font-size: 28px;
  }

  .info-right p {
    font-size: 16px;
  }

  /* Get Started Section Mobile */
  .get-started-section {
    padding: 80px 20px;
  }

  .get-started-title {
    font-size: 36px;
    line-height: 1.3;
  }

  .get-started-subtitle {
    font-size: 14px;
  }

  .get-started-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 12px 24px;
  }
}
