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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  background: #f7f7f5;
}

a { color: #2d4f8a; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Nav ──────────────────────────────────────────── */
nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 32px;
  border-bottom: 1px solid #e8e8e6;
  background: #f7f7f5;
}

nav .nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

nav .nav-logo img {
  height: 48px;
  width: auto;
}

nav .nav-links {
  display: flex;
  gap: 20px;
  margin-left: auto;
}

nav .nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a;
}

/* ── Footer ───────────────────────────────────────── */
footer {
  margin-top: 80px;
  padding: 32px;
  border-top: 1px solid #e8e8e6;
  font-size: 13px;
  color: #aaa;
  text-align: center;
}

footer a { color: #aaa; }

/* ── Page container ───────────────────────────────── */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 64px 0 48px;
}

.hero img.hero-logo {
  height: 280px;
  width: auto;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
}

.hero p {
  font-size: 17px;
  color: #555;
  max-width: 480px;
  margin: 0 auto;
}

/* ── App cards (home page) ────────────────────────── */
.app-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.app-card {
  background: #fff;
  border: 1px solid #e8e8e6;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s;
}

.app-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  text-decoration: none;
}

.app-card img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
}

.app-card .app-info h2 {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 4px;
}

.app-card .app-info p {
  font-size: 13px;
  color: #888;
}

/* ── App landing page ─────────────────────────────── */
.app-hero {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.app-hero img {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  flex-shrink: 0;
}

.app-hero h1 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 6px;
}

.app-hero p {
  color: #555;
}

.store-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
}

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

.store-badge {
  width: 196px;
  height: auto;
  transition: opacity 0.15s;
}

.store-badge-link {
  display: inline-flex;
  border-radius: 14px;
  overflow: hidden;
}

.store-badge-link:hover .store-badge {
  opacity: 0.8;
}

.store-badge-link.coming-soon {
  cursor: default;
}
.store-badge-link.coming-soon .store-badge {
  filter: grayscale(100%);
  opacity: 0.6;
}
.store-badge-link.coming-soon:hover .store-badge {
  opacity: 0.8;
}

.app-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 8px;
  font-size: 14px;
}

/* ── Privacy / Support pages ──────────────────────── */
.page-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 40px;
}

.page-header img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
}

.page-header h1 {
  font-size: 22px;
  font-weight: 400;
}

.page-header .subtitle {
  font-size: 13px;
  color: #888;
}

.effective {
  font-size: 13px;
  color: #aaa;
  margin-top: 24px;
  margin-bottom: 32px;
  font-weight: 300;
  text-align: center;
}

.card {
  background: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 12px;
  border: 1px solid #e8e8e6;
}

.card h2 {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 12px;
}

.card p { margin-bottom: 12px; color: #333; }
.card p:last-child { margin-bottom: 0; }
.card ul { padding-left: 20px; margin-bottom: 12px; color: #333; }
.card li { margin-bottom: 6px; }

/* ── Mobile ───────────────────────────────────────── */
@media (max-width: 480px) {
  nav {
    padding: 16px 20px;
  }

  nav .nav-logo img {
    height: 36px;
  }

  .container {
    padding: 32px 16px 60px;
  }

  .hero {
    padding: 40px 0 32px;
  }

  .hero img.hero-logo {
    height: 200px;
  }

  .app-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .store-badge {
    width: 148px;
  }
}

/* ── FAQ ──────────────────────────────────────────── */
.faq-item { margin-bottom: 24px; }
.faq-item h3 {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 6px;
}
.faq-item p { color: #555; font-size: 15px; }
