:root {
  color-scheme: dark;
  --accent: #ff9500;
  --accent-hover: #ffb04d;
  --bg: #17150f;
  --text: #ffffff;
  --text-muted: #cfcbc2;
  --hairline: rgba(255, 255, 255, 0.08);
}

body {
  margin: 0;
  font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg);
  color: var(--text);
}

.lead {
  color: var(--text-muted);
  max-width: 540px;
}

.store-badge {
  height: 56px;
  width: auto;
  display: block;
}

.screenshot-wrapper {
  max-width: 300px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.app-shot {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 991.98px) {
  .store-badge {
    height: 52px;
  }

  .screenshot-wrapper {
    max-width: 220px;
  }
}

/* ---------- Shared site footer (landing + policies) ---------- */
.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 24px 0;
  font-size: 14px;
  color: var(--text-muted);
}

.site-footer a {
  color: var(--text);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.site-footer .sep {
  color: var(--hairline);
  margin: 0 12px;
}

/* ---------- Policy pages (privacy + terms) ---------- */
.policy {
  max-width: 760px;
  line-height: 1.7;
}

.policy h1 {
  color: var(--text);
}

.policy h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--text);
}

.policy h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.policy p,
.policy li {
  color: var(--text-muted);
}

.policy ul {
  padding-left: 1.25rem;
}

.policy li {
  margin-bottom: 0.4rem;
}

.policy a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy a:hover {
  color: var(--accent-hover);
}

.policy strong {
  color: var(--text);
}

.policy .text-muted {
  color: #8f8b82 !important;
}

.policy .back-link {
  color: var(--text-muted);
  text-decoration: none;
}

.policy .back-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.policy .border-top-subtle {
  border-top: 1px solid var(--hairline);
}
