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

html {
  height: 100%;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #fafafa;
  color: #1d1d1f;
  -webkit-font-smoothing: antialiased;
}

body:has(main.legal) {
  justify-content: flex-start;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 1.25rem 1.5rem;
  color: #86868b;
  background: #fafafa;
  z-index: 10;
}

nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1d1d1f;
  text-decoration: none;
  transition: opacity 0.2s;
}

nav a:hover { opacity: 0.55; }

h1 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-bottom: 0.625rem;
}

h1 strong {
  font-weight: 700;
}

.tagline {
  font-size: 0.9375rem;
  color: #6e6e73;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.sub {
  font-size: 0.8125rem;
  color: #86868b;
  margin-bottom: 2.5rem;
}

.screenshot {
  width: 452px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 2.5rem;
}

.download {
  display: inline-block;
  background: #4A7CF7;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 980px;
  text-decoration: none;
  transition: background 0.2s;
}

.download:hover { background: #3968e0; }

footer {
  font-size: 0.75rem;
  color: #aeaeb2;
  padding-bottom: 0.25rem;
}

footer a {
  color: #aeaeb2;
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover { color: #1d1d1f; }

main.legal {
  text-align: left;
  max-width: 600px;
  width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0;
}

main.legal h1 { font-weight: 600; font-size: 1.5rem; margin-bottom: 1.5rem; }
main.legal h2 { font-size: 1rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.5rem; }
main.legal p, main.legal li { font-size: 0.875rem; color: #6e6e73; line-height: 1.6; margin-bottom: 0.5rem; }
main.legal ul { padding-left: 1.25rem; margin-bottom: 0.5rem; }
main.legal a { color: #4A7CF7; text-decoration: none; }
main.legal a:hover { text-decoration: underline; }
main.legal .back { font-size: 0.8125rem; color: #86868b; margin-bottom: 1.5rem; }
main.legal .back:hover { color: #1d1d1f; text-decoration: none; }
