*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #5aaa6a;
  --green-light: #7cc98a;
  --bg: #fafcfa;
  --text: #1a1a1a;
  --text-muted: #555;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hero */
.hero {
  text-align: center;
  padding: 6rem 0 4rem;
}

.logo {
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.5px;
}

.tagline {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.description {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.badges {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.badge img {
  transition: opacity 0.15s;
}

.badge:hover img {
  opacity: 0.8;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 2rem 0 5rem;
}

.feature {
  text-align: center;
}

.feature-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.feature h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid #e0e0e0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Mobile */
@media (max-width: 480px) {
  .hero {
    padding: 4rem 0 2.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  .features {
    grid-template-columns: 1fr;
  }
}
