:root {
  --card: #ffffff;
  --text: #1a2733;
  --muted: #5a6776;
  --accent: #2a7fd0;
  --border: #e1e8f0;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, #8ec5e8 0%, #c8e0f2 40%, #eaf3fa 100%);
  background-attachment: fixed;
  min-height: 100vh;
  color: var(--text);
  line-height: 1.6;
}

.hero {
  text-align: center;
  padding: 60px 20px 30px;
}

.app-icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 2.5rem;
  margin: 16px 0 8px;
}

.tagline {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0;
}

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

.screenshots img {
  width: 200px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

@media (max-width: 600px) {
  .screenshots img { width: 40vw; max-width: 180px; }
  .screenshots { gap: 8px; }
}

.stores {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
}

.store-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-block;
  padding: 12px 24px;
  background: var(--text);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}

.store-badge:hover {
  background: #0f1722;
}

.store-badge.disabled {
  background: #b6c2cf;
  color: #ffffff;
  cursor: default;
  opacity: 0.85;
}

.store-badge.disabled:hover {
  background: #b6c2cf;
}

.coming-soon {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

.features {
  max-width: 600px;
  margin: 30px auto;
  background: var(--card);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.features h2 {
  margin-top: 0;
}

.features ul {
  list-style: none;
  padding: 0;
}

.features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.features li:last-child {
  border-bottom: none;
}

.privacy {
  max-width: 720px;
  margin: 40px auto;
  background: var(--card);
  padding: 30px 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.privacy h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.privacy .updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.privacy h2 {
  margin-top: 32px;
  font-size: 1.3rem;
}

.privacy h3 {
  font-size: 1.05rem;
  margin-top: 20px;
  margin-bottom: 6px;
}

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

a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 30px 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

footer p {
  margin: 6px 0;
}

.copyright {
  font-size: 0.8rem;
  opacity: 0.7;
}

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  .privacy { padding: 20px; margin: 20px 10px; }
}
