* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  background-color: #f0f7e8;
  line-height: 1.5;
  color: #1a2c1a;
  scroll-behavior: smooth;
}

/* background image + semi-transparent mint-green overlay */
.page-wrapper {
  position: relative;
  background: url("https://images.unsplash.com/photo-1515372039744-b8f02a3ae446?q=80&w=2070&auto=format")
    center center / cover no-repeat fixed;
  min-height: 100vh;
}

.page-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(61, 85, 40, 0.45);
  backdrop-filter: brightness(1.02) blur(1px);
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 2rem 1.5rem;
}

/* navigation */
.navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 2rem 0;
  border-bottom: 1px solid rgba(100, 120, 70, 0.35);
  margin-bottom: 2rem;
}

.logo h1 {
  font-size: 1.9rem;
  font-weight: 700;
  background: linear-gradient(135deg, #d4e64b, #f9f6c3, #eaffb2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.logo p {
  font-size: 0.8rem;
  font-weight: 500;
  color: #2e4a1f;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #1f3b1a;
  transition: 0.25s ease;
  font-size: 1rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover {
  color: #cfef6e;
  border-bottom-color: #c2e255;
}

/* banner section */
.banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 3rem 0 4rem;
}
.banner-text {
  flex: 1;
  min-width: 260px;
}
.banner-text h2 {
  font-size: 3.2rem;
  font-weight: 800;
  background: linear-gradient(125deg, #d0ef5c, #f7ffcf, #b9d96e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.tagline {
  font-size: 1.3rem;
  font-weight: 500;
  color: #2a4b22;
  margin-bottom: 1.2rem;
  border-left: 4px solid #cbeb70;
  padding-left: 1rem;
}
.banner-text p {
  font-size: 1rem;
  color: #1c3419;
  max-width: 550px;
  font-weight: 500;
  background: rgba(245, 255, 225, 0.6);
  backdrop-filter: blur(4px);
  padding: 0.8rem 1rem;
  border-radius: 32px;
}

.banner-illus {
  flex: 0.8;
  min-width: 220px;
  display: flex;
  justify-content: center;
}
.mock-phone {
  width: 220px;
  background: rgba(20, 20, 10, 0.25);
  border-radius: 38px;
  padding: 12px 6px;
  backdrop-filter: blur(2px);
  box-shadow: 0 25px 35px -12px rgba(0, 0, 0, 0.3);
}
.mock-phone img {
  width: 100%;
  border-radius: 30px;
  display: block;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: #fff;
}

/* general sections */
.section {
  margin: 5rem 0;
  scroll-margin-top: 80px;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(120deg, #b3db42, #feffd2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 2rem;
  display: inline-block;
  border-left: 6px solid #e1fd7c;
  padding-left: 1rem;
}

/* features grid + split layout */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}
.features-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.feature-card {
  background: rgba(250, 255, 235, 0.8);
  backdrop-filter: blur(5px);
  border-radius: 32px;
  padding: 1.4rem 1.8rem;
  transition: 0.2s ease;
  border: 1px solid rgba(205, 235, 140, 0.7);
  box-shadow: 0 6px 14px rgba(90, 110, 40, 0.1);
}
.feature-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #476c2c;
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: #2a4022;
  font-weight: 500;
}
.feature-side-img {
  flex: 0.8;
  display: flex;
  justify-content: center;
}
.phone-feature {
  width: 200px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 36px;
  padding: 10px 5px;
}
.phone-feature img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

/* screenshot alternative section (optional but included) */
.screenshot-showcase {
  background: rgba(235, 250, 210, 0.4);
  backdrop-filter: blur(4px);
  border-radius: 64px;
  padding: 2rem 1.5rem;
  margin: 3rem 0;
}
.screenshot-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.screenshot-item {
  width: 160px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s;
  background: #fefee6;
}
.screenshot-item img {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 19;
  object-fit: cover;
}
.screenshot-item:hover {
  transform: translateY(-6px);
}

/* daily motivation separate part */
.motivation-block {
  text-align: center;
  background: linear-gradient(
    115deg,
    rgba(194, 233, 112, 0.4),
    rgba(251, 255, 210, 0.7)
  );
  border-radius: 60px;
  padding: 2rem;
  margin: 3rem 0;
  backdrop-filter: blur(5px);
}
.motivation-block p {
  font-size: 1.4rem;
  font-weight: 600;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  color: #2a5022;
}

/* footer */
.footer {
  margin-top: 4rem;
  padding: 2.5rem 1rem 1.5rem;
  border-top: 2px solid rgba(190, 215, 120, 0.6);
  text-align: center;
  background: rgba(235, 250, 210, 0.3);
  backdrop-filter: blur(2px);
  border-radius: 40px 40px 0 0;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.footer-nav a {
  text-decoration: none;
  color: #2e5722;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #caf06c;
}
.footer-info {
  font-size: 0.85rem;
  color: #2f5123;
  line-height: 1.8;
}
.footer-info a {
  color: #2e6e1f;
  text-decoration: none;
  font-weight: 500;
}

/* responsive */
@media (max-width: 800px) {
  .container {
    padding: 1.2rem;
  }
  .navbar {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    text-align: center;
  }
  .nav-links {
    gap: 1.2rem;
    justify-content: center;
  }
  .banner {
    flex-direction: column-reverse;
    text-align: center;
    padding: 1.5rem 0;
  }
  .banner-text h2 {
    font-size: 2.3rem;
  }
  .tagline {
    text-align: center;
    border-left: none;
    border-top: 2px solid #cbeb70;
    padding-top: 0.5rem;
  }
  .features-grid {
    flex-direction: column;
  }
  .feature-side-img {
    order: 1;
    margin-top: 0.5rem;
  }
  .features-list {
    order: 2;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .motivation-block p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .mock-phone,
  .phone-feature {
    width: 170px;
  }
  .screenshot-item {
    width: 120px;
  }
  .feature-card h3 {
    font-size: 1.3rem;
  }
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.no-download {
  user-select: none;
}
.word-break {
  word-break: break-word;
}
