:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --text: #1c1b18;
  --muted: #6b675e;
  --line: #e7e3da;
  --accent: #f2c230;
  --accent-ink: #1c1b18;
  --link: #8a6a00;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #141412;
    --surface: #1d1c19;
    --text: #f2f0ea;
    --muted: #a39e92;
    --line: #2e2c27;
    --link: #f2c230;
  }
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

a { color: var(--link); }

.wrap { max-width: 880px; margin: 0 auto; padding: 0 20px; }

header.site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 16px;
  padding: 20px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.brand img { width: 32px; height: 32px; border-radius: 8px; }

nav.site { display: flex; gap: 18px; flex-wrap: wrap; font-size: 15px; }
nav.site a { color: var(--muted); text-decoration: none; }
nav.site a:hover, nav.site a[aria-current="page"] { color: var(--text); }

.hero { text-align: center; padding: 48px 0 32px; }
.hero img.icon { width: 112px; height: 112px; border-radius: 25px; box-shadow: 0 8px 28px rgba(0, 0, 0, .12); }
.hero h1 { font-size: clamp(32px, 6vw, 48px); line-height: 1.1; margin: 24px 0 12px; letter-spacing: -.02em; }
.hero p.lead { font-size: 20px; color: var(--muted); max-width: 560px; margin: 0 auto; }

.badge {
  display: inline-block;
  margin-top: 28px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
  font-size: 15px;
}

.shots {
  display: flex;
  gap: 16px;
  justify-content: safe center;
  padding: 24px 0 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.shots img {
  width: 220px;
  flex: none;
  border-radius: 24px;
  border: 1px solid var(--line);
  scroll-snap-align: center;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  padding-bottom: 48px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

.card h3 { margin: 0 0 6px; font-size: 17px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

article { padding: 24px 0 48px; max-width: 680px; overflow-wrap: anywhere; }
article h1 { font-size: 34px; line-height: 1.2; margin: 16px 0 4px; letter-spacing: -.01em; }
article h2 { font-size: 21px; margin: 32px 0 8px; }
article .updated { color: var(--muted); font-size: 15px; margin-top: 0; }

footer.site {
  border-top: 1px solid var(--line);
  padding: 24px 0 40px;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

footer.site a { color: var(--muted); }
