:root {
  --bg: #17181c;
  --surface: #1e2025;
  --text: #eceef1;
  --muted: #9aa4b2;
  --accent: #5b8def;
  --border: #2a2d34;
}

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

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

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

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

/* ---- Landing page ---- */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px 48px;
  gap: 0;
}

.hero .app-icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.hero .app-name {
  margin-top: 20px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.hero h1 {
  margin-top: 12px;
  font-size: clamp(34px, 6vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 640px;
}

.hero .tagline {
  margin-top: 16px;
  font-size: 19px;
  color: var(--muted);
  max-width: 520px;
}

.hero .store-badge {
  margin-top: 32px;
  display: inline-block;
}

.hero .store-badge img {
  height: 54px;
  display: block;
}

.hero .signup-line {
  margin-top: 18px;
  font-size: 16px;
  color: var(--muted);
}

.screenshots {
  margin-top: 56px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.screenshots img {
  width: 280px;
  max-width: 82vw;
  height: auto;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.site-footer {
  padding: 40px 24px 48px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.site-footer .links a {
  color: var(--muted);
  margin: 0 10px;
}
.site-footer .links a:hover {
  color: var(--text);
}
.site-footer .fineprint {
  margin-top: 14px;
}

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

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.legal .page-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.legal .page-header img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.legal .page-header a {
  color: var(--text);
  font-weight: 600;
  font-size: 17px;
}

.legal h1 {
  font-size: 34px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.legal .effective {
  color: var(--muted);
  margin-bottom: 36px;
}

.legal h2 {
  font-size: 22px;
  margin: 40px 0 12px;
  letter-spacing: -0.01em;
}

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

.legal p {
  margin: 12px 0;
}

.legal ul {
  margin: 12px 0 12px 24px;
}
.legal li {
  margin: 6px 0;
}

.legal .allcaps {
  text-transform: none;
}

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