/* The app's own palette: warm paper, olive ink. */
:root {
  --paper: #f4f4ed;
  --moss: #4a6324;
  --sprout: #617f33;
  --ink: #1b1d17;
  --muted: #6b6f63;
  --card: #ffffff;
  --line: rgba(74, 99, 36, 0.18);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0 20px;
  background: var(--paper);
  color: var(--ink);
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

main { max-width: 680px; margin: 0 auto; padding: 56px 0 72px; }

header.hero { text-align: center; padding-bottom: 8px; }
header.hero img { width: 104px; height: 104px; border-radius: 24px; box-shadow: 0 6px 18px rgba(0,0,0,.12); }
h1 { font-size: 34px; margin: 20px 0 4px; letter-spacing: -0.5px; }
.tagline { color: var(--moss); font-size: 19px; margin: 0; }
.lede { color: var(--muted); margin: 22px auto 0; max-width: 34em; }

a { color: var(--moss); }
a.button {
  display: inline-block; margin-top: 26px; padding: 13px 26px;
  background: var(--moss); color: #fff; text-decoration: none;
  border-radius: 999px; font-weight: 600;
}
a.button.secondary { background: transparent; color: var(--moss); border: 1.5px solid var(--line); }
.note { font-size: 14px; color: var(--muted); margin-top: 10px; }

h2 { font-size: 22px; margin: 48px 0 14px; }
h3 { font-size: 18px; margin: 30px 0 6px; }

.card {
  background: var(--card); border-radius: 16px; padding: 18px 20px; margin: 12px 0;
}
.card h3 { margin: 0 0 4px; font-size: 17px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

ul { padding-left: 1.1em; }
li { margin: 6px 0; }

.kicker { font-size: 13px; color: var(--muted); text-transform: none; margin: 34px 0 6px; }

footer {
  max-width: 680px; margin: 0 auto; padding: 26px 0 50px;
  border-top: 1px solid var(--line); color: var(--muted); font-size: 14px;
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
}

@media (max-width: 520px) {
  main { padding: 36px 0 48px; }
  h1 { font-size: 28px; }
  body { font-size: 16px; }
}

/* App Store screenshots, the same frames as the listing. Scrolls sideways
   rather than shrinking to nothing on a phone. */
.shots {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin: 34px -20px 0;
  padding: 4px 20px 18px;
  scrollbar-width: thin;
}
.shots figure { margin: 0; flex: 0 0 auto; scroll-snap-align: center; }
.shots img {
  display: block;
  width: 222px; height: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(0,0,0,.10);
}

/* Widen the strip past the text column on a desktop. A fixed bleed rather than
   100vw, which counts the scrollbar and would overflow the page by its width. */
@media (min-width: 900px) {
  .shots { margin-left: -100px; margin-right: -100px; padding-left: 100px; padding-right: 100px; }
}
