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

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

body {
  max-width: 720px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  gap: 2rem;
  padding: 2rem;
  overflow: auto;
  color: #1a1a1a;
  line-height: 1.5;
}

main {
  width: 100%;
}

a {
  color: #1a1a1a;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 2.25rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 1.4rem;
}

h3 {
  font-weight: 600;
  font-size: 1.05rem;
}

.logo {
  border-radius: 25%;
  margin-bottom: 0.5rem;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.subtitle {
  color: #666;
  text-align: center;
  max-width: 38ch;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.store-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
}

.store-link img {
  display: block;
  height: 45px;
  width: auto;
}

.store-link span {
  font-size: 0.75rem;
  color: #666;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature h3 {
  margin-bottom: 0.15rem;
}

.feature p {
  color: #444;
}

.legal {
  width: 100%;
}

.legal h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal h3 {
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

.legal p,
.legal ul {
  margin-bottom: 0.75rem;
}

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

.legal li {
  margin-bottom: 0.25rem;
}

.legal .updated {
  color: #666;
  font-size: 0.9rem;
}

.back-link {
  font-size: 0.9rem;
  color: #666;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

footer {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #666;
}

footer a {
  color: #666;
}

footer > div {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
