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

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

body {
  font-family: 'Nunito', sans-serif;
  color: #1D1B20;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #7C5CFC;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
nav {
  border-bottom: 1px solid #E0E0E0;
  padding: 16px 0;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .logo {
  font-size: 22px;
  font-weight: 800;
  color: #7C5CFC;
}

nav .links {
  display: flex;
  gap: 24px;
}

nav .links a {
  font-size: 14px;
  font-weight: 600;
  color: #585858;
}

nav .links a:hover {
  color: #7C5CFC;
}

/* Hero (landing page) */
.hero {
  text-align: center;
  padding: 80px 0 60px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 800;
  color: #7C5CFC;
  margin-bottom: 12px;
}

.hero .tagline {
  font-size: 20px;
  color: #585858;
  margin-bottom: 40px;
}

.hero .description {
  font-size: 16px;
  color: #585858;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.store-badge {
  display: inline-block;
}

.store-badge img {
  height: 52px;
}

/* Page header */
.page-header {
  padding: 48px 0 24px;
  text-align: center;
}

.page-header h1 {
  font-size: 28px;
  font-weight: 700;
  color: #1D1B20;
}

.page-header .updated {
  font-size: 13px;
  color: #999;
  margin-top: 8px;
}

/* Sections (privacy/terms) */
.section {
  margin-bottom: 28px;
}

.section h2 {
  font-size: 16px;
  font-weight: 700;
  color: #1D1B20;
  margin-bottom: 6px;
}

.section p {
  font-size: 14px;
  color: #585858;
  line-height: 1.7;
}

/* Support page */
.support-content {
  padding: 48px 0 80px;
}

.support-content h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.support-content p {
  font-size: 16px;
  color: #585858;
  margin-bottom: 16px;
  line-height: 1.7;
}

.support-content .email-link {
  display: inline-block;
  background: #7C5CFC;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  margin-top: 8px;
}

.support-content .email-link:hover {
  background: #6B4CE0;
  text-decoration: none;
}

/* Features grid (landing) */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 0 60px;
}

.feature {
  text-align: center;
  padding: 24px 16px;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
}

.feature .icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.feature h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature p {
  font-size: 13px;
  color: #585858;
  line-height: 1.5;
}

/* Footer */
footer {
  border-top: 1px solid #E0E0E0;
  padding: 24px 0;
  text-align: center;
}

footer p {
  font-size: 13px;
  color: #999;
}

footer .footer-links {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

footer .footer-links a {
  font-size: 13px;
  color: #585858;
}

/* Responsive */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero .tagline {
    font-size: 17px;
  }

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

  nav .links {
    gap: 16px;
  }

  nav .links a {
    font-size: 13px;
  }

  .page-header h1 {
    font-size: 24px;
  }
}
