:root {
  --bg: #0f1115;
  --surface: #171a21;
  --text: #f2f4f8;
  --text-dim: #9aa3b2;
  --accent: #4f8ef7;
  --radius: 14px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem 2rem;
  gap: 1.25rem;
}

.badge {
  font-size: 3.5rem;
  background: var(--surface);
  border-radius: 24px;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 40px rgba(79, 142, 247, 0.25);
}

h1 { font-size: clamp(2rem, 6vw, 3rem); letter-spacing: -0.02em; }

.tagline {
  color: var(--text-dim);
  font-size: 1.15rem;
  max-width: 34rem;
}

.features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
  text-align: left;
}

.features li {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 0.7rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.store { margin-top: 1rem; }

.store-link {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  opacity: 0.85;
  cursor: default;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--text-dim);
  font-size: 0.9rem;
}

footer nav { display: flex; justify-content: center; gap: 0.6rem; margin-bottom: 0.4rem; }
footer a { color: var(--text-dim); }
footer a:hover { color: var(--text); }

/* Legal pages */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.legal h1 { font-size: 1.7rem; margin-bottom: 0.3rem; }
.legal .updated { color: var(--text-dim); font-style: italic; margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.15rem; margin: 1.8rem 0 0.4rem; }
.legal p { color: var(--text-dim); }
.legal a { color: var(--accent); }
.legal .back { display: inline-block; margin-top: 2.5rem; }
