:root {
  --bg: #151515;
  --card: #212022;
  --ink: #ffffff;
  --muted: #a5a2a8;
  --accent: #ff00ff;
  --rule: rgba(255, 255, 255, 0.1);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

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

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

img { max-width: 100%; height: auto; display: block; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- App Store button ---------- */

.appstore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.appstore:hover,
.appstore:focus-visible {
  background: var(--accent);
  color: #000;
}

.appstore svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------- Hero ---------- */

.hero {
  text-align: center;
  padding: 72px 0 64px;
  background: radial-gradient(circle at 50% 0%, #2a2430 0%, var(--bg) 65%);
}

.hero img { margin: 0 auto 36px; width: min(300px, 72vw); }

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 6vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero p {
  margin: 0 auto 34px;
  max-width: 32ch;
  color: var(--muted);
  font-size: clamp(16px, 3vw, 19px);
}

/* ---------- Feature shots ---------- */

.shots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  padding: 24px 0 72px;
}

.shots img { width: min(472px, 100%); }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--rule);
  padding: 56px 0 64px;
  text-align: center;
}

.site-footer .appstore { margin-bottom: 32px; }

.site-footer p { margin: 0 0 8px; color: var(--muted); font-size: 15px; }

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

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

.copyright { margin-top: 20px; font-size: 13px; color: #6f6d73; }

/* ---------- Legal pages ---------- */

.legal { padding: 56px 0 80px; max-width: 780px; }

.legal .back {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.legal .back:hover { color: var(--accent); }

.legal h1 {
  margin: 0 0 28px;
  font-size: clamp(28px, 5vw, 38px);
  letter-spacing: -0.02em;
}

.legal h5 {
  margin: 36px 0 12px;
  font-size: 20px;
  font-weight: 700;
}

.legal p { margin: 0 0 16px; color: #d6d4d9; }

.legal ol, .legal ul { margin: 0 0 18px; padding-left: 26px; color: #d6d4d9; }

.legal li { margin-bottom: 10px; }

.legal a { word-break: break-word; }

/* Text carried by the hero artwork - kept for search engines and screen readers. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
