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

:root {
  --cream: #f9f6ee;
  --navy: #2d2b55;
  --lavender: #7b7cc4;
  --lavender-light: #eeecf8;
  --teal: #5ba898;
  --text-secondary: #9494b8;
  --text-muted: #b8b8d0;
  --white: #ffffff;
  --border: #e8e4f0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
}

a { color: var(--lavender); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Nav ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}
.nav-logo img { width: 36px; height: 36px; border-radius: 8px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--text-secondary); font-size: 15px; font-weight: 500; }
.nav-links a:hover { color: var(--lavender); text-decoration: none; }

/* ── Hero ── */
.hero {
  text-align: center;
  padding: 80px 24px 60px;
  max-width: 720px;
  margin: 0 auto;
}
.hero-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 28px;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(123,124,196,0.18);
}
.hero h1 {
  font-size: 48px;
  font-family: Georgia, serif;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}
.hero h1 span { color: var(--lavender); }
.hero p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}
.badge-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.badge {
  background: var(--lavender-light);
  color: var(--lavender);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.app-btn {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(45,43,85,0.2);
  transition: transform 0.15s, box-shadow 0.15s;
}
.app-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,43,85,0.25);
  text-decoration: none;
}

/* ── Features ── */
.features {
  padding: 60px 24px;
  max-width: 960px;
  margin: 0 auto;
}
.features h2 {
  text-align: center;
  font-size: 32px;
  font-family: Georgia, serif;
  margin-bottom: 8px;
}
.features-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 48px;
  font-size: 16px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(123,124,196,0.06);
}
.feature-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}
.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Why section ── */
.why {
  background: var(--lavender-light);
  padding: 60px 24px;
  text-align: center;
}
.why-inner { max-width: 640px; margin: 0 auto; }
.why h2 {
  font-size: 30px;
  font-family: Georgia, serif;
  margin-bottom: 16px;
}
.why p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; }

/* ── Privacy badge ── */
.privacy-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
}
.privacy-strip strong { color: var(--navy); }

/* ── Footer ── */
footer {
  padding: 40px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  border-top: 1px solid var(--border);
}
footer a { color: var(--text-secondary); margin: 0 12px; }

/* ── Content pages (privacy, support) ── */
.content-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px;
}
.content-page h1 {
  font-size: 36px;
  font-family: Georgia, serif;
  margin-bottom: 8px;
}
.content-page .updated {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 40px;
}
.content-page h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 36px 0 10px;
  color: var(--navy);
}
.content-page p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
}
.content-page ul {
  color: var(--text-secondary);
  padding-left: 20px;
  margin-bottom: 16px;
}
.content-page ul li { margin-bottom: 8px; font-size: 15px; line-height: 1.7; }
.contact-box {
  background: var(--lavender-light);
  border-radius: 16px;
  padding: 24px;
  margin-top: 40px;
  text-align: center;
}
.contact-box p { color: var(--navy); font-weight: 600; margin-bottom: 4px; }
.contact-box a { color: var(--lavender); font-size: 15px; }

@media (max-width: 600px) {
  nav { padding: 14px 20px; }
  .hero h1 { font-size: 34px; }
  .features-grid { grid-template-columns: 1fr; }
}
