:root {
  --bg: #0b0d10;
  --line: #222a33;
  --text: #eef1f5;
  --muted: #a4afbd;
  --accent: #8eea6c;
}

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

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

.page {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Landing page hero */
.hero {
  text-align: center;
  padding: 60px 0 40px;
}

.hero h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 12px;
}

.hero .tagline {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 32px;
}

.features {
  text-align: left;
  max-width: 560px;
  margin: 0 auto 40px;
}

.features li {
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
  list-style: none;
  padding-left: 24px;
  position: relative;
}

.features li::before {
  content: "\2713";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: 600;
}

.price-badge {
  display: inline-block;
  background: rgba(142, 234, 108, 0.1);
  border: 1px solid rgba(142, 234, 108, 0.25);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
}

.store-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.store-badges img {
  height: 44px;
}

.how-it-works {
  max-width: 560px;
  margin: 0 auto 48px;
  text-align: left;
}

.how-it-works h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.how-it-works ol {
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
  padding-left: 24px;
}

/* Content pages (privacy, support) */
.content {
  padding: 40px 0;
}

.content h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}

.content .updated {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 32px;
}

.content h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 28px 0 8px;
}

.content p,
.content li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: auto;
}

.footer a {
  color: var(--muted);
}

.footer a:hover {
  color: var(--text);
}

.back-link {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 24px;
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: 28px;
  }

  .footer {
    flex-direction: column;
    gap: 10px;
  }
}
