:root {
  --bg: #F5F0E8;
  --surface: #ffffff;
  --ink: #282420;
  --muted: #6E655C;
  --line: #DCD2C8;
  --accent: #1a3d2e;
  --accent-soft: #e8f2ec;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 1px 3px rgba(40,36,32,.06);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
body, h1, h2, h3, h4, p { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--ink); }
.container { width: 90%; max-width: 960px; margin: 0 auto; padding: 0 16px; }
.container.narrow { max-width: 520px; }
.site-header {
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  padding: 14px 0;
}
.site-header .row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; font-weight: 800; font-size: 1.05rem; color: var(--ink);
}
.brand img { width: 28px; height: 28px; border-radius: 8px; }
.site-header nav a {
  margin-left: 14px; font-size: 0.9rem; color: var(--muted);
  text-decoration: none; font-weight: 600;
}
.site-header nav a:hover { color: var(--ink); }
main { flex: 1; padding: 40px 0 64px; }
.btn {
  display: inline-block; text-align: center; text-decoration: none;
  font-weight: 800; font-size: 0.95rem; padding: 12px 16px;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  font-family: inherit; background: var(--ink); color: var(--bg);
}
.btn.block { display: block; width: 100%; }
.btn.secondary {
  background: var(--surface); color: var(--ink); border: 1.5px solid var(--line);
}
.btn.accent { background: var(--accent); color: #fff; }
.btn:active { opacity: .92; }
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 20px; padding: 22px; box-shadow: var(--shadow);
}
.tag {
  display: inline-block; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-soft);
  padding: 4px 8px; border-radius: 999px; margin-bottom: 10px;
}
.site-footer {
  background: var(--surface); border-top: 1px solid var(--line);
  padding: 32px 0; text-align: center; font-size: 0.9rem; color: var(--muted);
}
.site-footer a { color: var(--ink); font-weight: 600; text-decoration: none; }
.site-footer p { margin-bottom: 8px; }
.app-icon {
  width: 64px; height: 64px; border-radius: 16px;
  box-shadow: 0 2px 8px rgba(40,36,32,.12); object-fit: cover;
}
.shot {
  width: 100%; max-width: 220px; border-radius: 18px;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  display: block; margin: 12px auto 0;
}
