/* Minimal styles for iOS app landing */
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  color: #0a0a0a;
  background: #f7f7f7;
  display: flex;
  flex-direction: column;
}
main {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.logo {
  width: 128px;
  height: 128px;
}
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
h1 {
  font-size: 28px;
  margin: 0;
}
p {
  margin: 0;
  color: #555;
}
.button {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  background: #0a84ff;
  color: white;
  text-decoration: none;
  font-weight: 600;
}
.button:active {
  transform: translateY(1px);
}
footer {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 16px;
  color: #555;
}
footer a {
  color: #0a84ff;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
