@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@700;800&family=Inter:wght@400;600&display=swap');

/* ── Tokens ── */
:root {
  --cream: #EEEDE9;
  --ink:   #1B1B1B;
  --ink-muted: #5A5A5A;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Be Vietnam Pro', system-ui, -apple-system, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* ── Header ── */
.site-header {
  display: flex;
  justify-content: center;
  padding: 2.75rem 2rem 0;
}

.logo {
  height: clamp(180px, 16vw, 260px);
  width: auto;
}

/* ── Hero ── */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem 3rem;
}

.hero-content {
  max-width: clamp(480px, 55vw, 720px);
  text-align: center;
}

h1, h2, h3 {
  font-family: var(--font-heading);
}

h1 {
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.tagline {
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 2.25rem;
}

/* ── Store Badges ── */
.download-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.store-badge-link {
  display: block;
  flex-shrink: 0;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.store-badge-link:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.store-badge-link:active {
  transform: translateY(0);
}

.store-badge {
  display: block;
  height: 58px;
  width: auto;
}

#play-store-link .store-badge {
  height: 84px;
  margin: -13px 0;
}

/* ── Footer ── */
.site-footer {
  padding: 1.5rem 2rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(26,26,26,0.1);
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}

.footer-nav a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.15s;
}

.footer-nav a:hover {
  color: var(--ink);
}

.copyright {
  font-size: 0.8rem;
  color: var(--ink-muted);
  opacity: 0.6;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
}
