:root {
  --bg: #0b0b0d;
  --bg-elevated: #16161a;
  --text: #f2f2f4;
  --text-muted: #a3a3ad;
  --accent: #7c5cff;
  --border: #26262c;
  --max-width: 880px;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--accent);
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 18px;
}

header .brand img {
  height: 28px;
  width: auto;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
}

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

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.hero {
  text-align: center;
  padding: 40px 0 60px;
}

.hero img.app-icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 40px;
  margin: 0 0 12px;
}

.hero p.tagline {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 520px;
  margin: 0 auto 32px;
}

.store-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
}

.store-button:hover {
  border-color: var(--accent);
}

section {
  margin-top: 56px;
}

section h2 {
  font-size: 24px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 16px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.card p {
  margin: 0;
  color: var(--text-muted);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.faq-item p {
  margin: 0;
  color: var(--text-muted);
}

.legal h2 {
  font-size: 20px;
  margin-top: 32px;
}

.legal p {
  color: var(--text-muted);
}

footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 24px 48px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

footer a {
  color: var(--text-muted);
  margin-right: 16px;
  text-decoration: none;
}

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

@media (max-width: 600px) {
  header {
    flex-direction: column;
    gap: 12px;
  }
  nav a {
    margin: 0 10px;
  }
  .hero h1 {
    font-size: 30px;
  }
  footer {
    flex-direction: column;
  }
}
