/* Marketing-site skeleton styles — same design language as the app
   ("Warm Minimalism": Plus Jakarta Sans headlines, Manrope body, #faf9f8
   surfaces, tonal layering, no 1px borders). Replace freely. */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  color: #303333;
  background: #faf9f8;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

a { color: #5563a8; text-decoration: none; }

.nav {
  position: sticky;
  top: 0;
  background: rgba(250, 249, 248, 0.92);
  backdrop-filter: blur(8px);
  z-index: 10;
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
}

.nav-logo { display: inline-flex; align-items: center; gap: 0.5rem; }
.logo-icon { width: 1.6rem; height: 1.6rem; }
.logo-text { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.15rem; color: #303333; }

.nav-cta {
  background: #5563a8;
  color: #fff;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 1.25rem 4rem;
}

.hero h1 { font-size: clamp(2rem, 6vw, 3.2rem); margin-bottom: 1rem; }
.hero-sub { font-size: 1.1rem; color: #5d605f; margin-bottom: 2rem; }

.hero-ctas { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 0.9rem;
  font-weight: 700;
}

.btn-primary { background: #5563a8; color: #fff; }
.btn-secondary { background: #fff; color: #303333; box-shadow: 0 1px 4px rgba(48, 51, 51, 0.08); }

.features {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  padding: 0 1.25rem 4rem;
}

.feature {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 1px 4px rgba(48, 51, 51, 0.06);
}

.feature h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.feature p { color: #5d605f; font-size: 0.95rem; }

.download {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.25rem 4rem;
}

.download h2 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.download p { color: #5d605f; margin-bottom: 1.5rem; }

.store-links { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

.store-link {
  background: #303333;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.8rem;
  font-weight: 600;
}

.footer {
  text-align: center;
  color: #787b7a;
  font-size: 0.85rem;
  padding: 2.5rem 1.25rem 3rem;
}
