:root {
  --bg: #1c1c1e;
  --surface: #2c2c2e;
  --text: #ffffff;
  --text-secondary: #8e8e93;
  --text-muted: #6e6e73;
  --primary: #007aff;
  --secondary: #712DDE;
  --border: #38383a;
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a:hover {
  text-decoration: underline;
}

nav {
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
}

nav .nav-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 600;
  font-size: 1.1rem;
}

nav .nav-brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

nav .nav-links {
  display: flex;
  gap: 1.5rem;
}

nav .nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

nav .nav-links a:hover {
  color: var(--text);
  text-decoration: none;
}

main {
  flex: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  width: 100%;
}

.hero {
  text-align: center;
  padding: 3rem 0;
}

.hero img {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  margin-bottom: 1.5rem;
}

.hero img.hero-logo {
  width: auto;
  height: auto;
  max-width: 400px;
  border-radius: 0;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero .tagline {
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.store-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.store-badge img {
  height: 48px;
}

h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

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

.page-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.page-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.contact-card p {
  margin-bottom: 0.5rem;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h3 {
  margin-top: 0;
  color: var(--text);
}

.faq-item p {
  margin-bottom: 0;
}

footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
}

footer .footer-inner {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.85rem;
}

footer .footer-links {
  margin-bottom: 0.5rem;
}

footer .footer-links a {
  color: var(--text-secondary);
  margin: 0 0.75rem;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }

  nav .nav-links {
    gap: 1rem;
  }
}
