:root {
  color-scheme: light dark;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --bg: #ffffff;
  --card: #f5f5f7;
  --accent: #2e75d4;
  --green: #34a862;
}
@media (prefers-color-scheme: dark) {
  :root {
    --text: #f5f5f7;
    --muted: #a1a1a6;
    --bg: #101014;
    --card: #1c1c21;
  }
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 56rem;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
}
.brand { font-weight: 700; font-size: 1.1rem; text-decoration: none; color: var(--text); }
nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 1.25rem;
  font-size: 0.95rem;
}
nav a:hover, nav a.active { color: var(--accent); }
main { max-width: 56rem; margin: 0 auto; padding: 1.5rem 1.5rem 3rem; }
h1 { font-size: 2.1rem; letter-spacing: -0.02em; margin: 1.2rem 0 0.8rem; }
h2 { font-size: 1.35rem; margin: 2rem 0 0.6rem; }
h3 { font-size: 1.05rem; margin: 1.2rem 0 0.4rem; }
p, li { margin-bottom: 0.9rem; }
ul { padding-left: 1.4rem; }
ul li { margin-bottom: 0.4rem; }
.muted { color: var(--muted); }
.card {
  background: var(--card);
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  margin: 1.2rem 0;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
}
.btn:hover { text-decoration: none; opacity: 0.9; }
.shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 1.4rem 0;
}
.shots figure { text-align: center; }
.shots img {
  width: 100%;
  max-width: 220px;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--muted) 30%, transparent);
}
.shots figcaption { font-size: 0.85rem; color: var(--muted); margin-top: 0.4rem; }
footer {
  max-width: 56rem;
  margin: 0 auto;
  padding: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--muted) 25%, transparent);
  font-size: 0.85rem;
  color: var(--muted);
}
