:root {
  --cream: #F5EFE7;
  --forest: #143828;
  --cherry: #A0214F;
  --ink: #2A2622;
  --muted: #6B6358;
  --line: #E4DACE;
  --card: #FFFFFF;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.62;
  font-size: 17px;
}
.wrap { max-width: 680px; margin: 0 auto; padding: 40px 24px 80px; }
a { color: var(--cherry); text-decoration: none; }
a:hover { text-decoration: underline; }

header.site { display: flex; align-items: center; justify-content: space-between; margin-bottom: 44px; flex-wrap: wrap; gap: 12px; }
.brand { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 22px; color: var(--forest); letter-spacing: -0.01em; }
nav a { color: var(--forest); font-weight: 600; font-size: 15px; margin-left: 18px; }

.eyebrow { font-size: 13px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin: 0 0 10px; }
h1 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 40px; line-height: 1.08; color: var(--forest); margin: 0 0 10px; letter-spacing: -0.02em; }
.updated { color: var(--muted); font-size: 14px; margin: 0 0 32px; }
.intro { font-size: 19px; color: var(--ink); margin: 0 0 28px; }
h2 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 21px; color: var(--forest); margin: 34px 0 8px; }
p { margin: 0 0 16px; }

.card { background: var(--card); border-radius: 20px; padding: 24px 26px; margin: 26px 0; }
.btn { display: inline-block; background: var(--cherry); color: #fff; font-weight: 700; padding: 12px 24px; border-radius: 999px; margin-top: 6px; }
.btn:hover { text-decoration: none; opacity: 0.92; }

footer { margin-top: 56px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
footer a { color: var(--muted); }

/* ---- Landing page ---- */
.hero { text-align: center; padding: 12px 0 4px; }
.hero h1 { font-size: 46px; max-width: 14ch; margin: 0 auto 16px; }
.hero .sub { font-size: 19px; color: var(--muted); max-width: 540px; margin: 0 auto 28px; line-height: 1.55; }
.appstore { display: inline-flex; align-items: center; gap: 10px; background: #111; color: #fff; padding: 11px 20px; border-radius: 13px; }
.appstore:hover { text-decoration: none; opacity: 0.9; }
.appstore svg { width: 20px; height: 24px; }
.appstore .label { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.appstore .label small { font-size: 11px; }
.appstore .label strong { font-size: 18px; font-weight: 600; font-family: 'Fraunces', Georgia, serif; }
.badge-note { font-size: 13px; color: var(--muted); margin-top: 12px; }

.shots { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin: 48px 0 8px; }
.shots img { width: 232px; max-width: 62vw; border-radius: 30px; box-shadow: 0 18px 44px rgba(20, 56, 40, 0.18); }

.section-title { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 28px; color: var(--forest); text-align: center; margin: 60px 0 4px; }
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 30px; margin: 28px 0 8px; }
.feature h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 18px; color: var(--forest); margin: 0 0 4px; }
.feature p { color: var(--muted); font-size: 16px; margin: 0; }
.note { text-align: center; color: var(--muted); font-size: 15px; margin: 10px auto 0; max-width: 520px; }

@media (max-width: 560px) {
  .hero h1 { font-size: 35px; }
  .features { grid-template-columns: 1fr; }
}
