:root {
  --coral: #FF6A5A; --sunbeam: #FFCB47; --teal: #14B8A6;
  --ink: #2A2140; --cream: #FFF7EF; --sand: #EFE9E0; --warmgray: #B8B0A6;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--cream); color: var(--ink);
  display: flex; flex-direction: column; min-height: 100vh;
}
main { flex: 1; max-width: 760px; margin: 0 auto; padding: 24px; width: 100%; }
h1 { font-family: 'Baloo 2', 'Nunito', sans-serif; color: var(--coral); line-height: 1.1; }
h2 {
  font-family: 'Baloo 2', 'Nunito', sans-serif; font-size: 26px;
  margin: 56px 0 16px; text-align: center;
}
.lang {
  display: flex; gap: 6px; justify-content: flex-end;
  padding: 16px 24px 0; max-width: 760px; margin: 0 auto; width: 100%;
}
.lang button {
  border: 1px solid var(--sand); background: #fff; color: var(--warmgray);
  border-radius: 999px; padding: 4px 10px; font: 600 13px 'Nunito', sans-serif; cursor: pointer;
}
.lang button.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.card {
  background: #fff; border-radius: 16px; padding: 20px;
  box-shadow: 0 2px 10px rgba(42,33,64,.06);
}
footer { text-align: center; padding: 40px 24px 36px; font-size: 13px; color: var(--warmgray); }
footer a { color: var(--teal); font-weight: 700; text-decoration: none; }
footer .row { margin-top: 6px; }

/* Hero */
.hero { text-align: center; }
.hero h1 { font-size: 56px; }
.mascot { width: min(240px, 55vw); margin: 8px auto 0; display: block; }
.tagline { font-size: 20px; margin: 12px auto 0; max-width: 480px; }
.coming {
  display: inline-block; margin-top: 20px; background: var(--sunbeam);
  border-radius: 999px; padding: 10px 22px; font-weight: 700; font-size: 15px;
}

/* Screenshots */
.shots { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.shot {
  width: min(220px, 42vw); border-radius: 26px; border: 6px solid var(--ink);
  box-shadow: 0 10px 26px rgba(42,33,64,.18); display: block;
}

/* Steps + features */
.steps { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.steps .card { text-align: left; }
.stepnum {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 999px; background: var(--coral);
  color: #fff; font-weight: 800; margin-bottom: 8px;
}
.features { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); text-align: left; }
.card .emoji { font-size: 26px; }
.card h3 { font-size: 16px; margin: 8px 0 4px; }
.card p { font-size: 14px; color: #5c5470; line-height: 1.5; }

/* FAQ */
.faq { display: grid; gap: 10px; text-align: left; }
.faq details { background: #fff; border-radius: 14px; padding: 14px 18px; box-shadow: 0 2px 10px rgba(42,33,64,.06); }
.faq summary { font-weight: 700; cursor: pointer; }
.faq p { margin-top: 8px; font-size: 14px; color: #5c5470; line-height: 1.55; }

/* Legal pages */
.legal h1 { font-size: 34px; }
.legal .updated { color: var(--warmgray); font-size: 14px; margin: 6px 0 24px; }
.legal section { background: #fff; border-radius: 16px; padding: 20px 24px; box-shadow: 0 2px 10px rgba(42,33,64,.06); margin-bottom: 14px; }
.legal h3 { font-size: 16px; margin-bottom: 6px; }
.legal p, .legal li { font-size: 14px; line-height: 1.6; color: #453c5c; }
.legal ul { padding-left: 20px; }
.back { display: inline-block; margin-top: 16px; color: var(--teal); font-weight: 700; text-decoration: none; }
