:root {
  --bg: #0b1020;
  --panel: #141a2e;
  --text: #f2f4f8;
  --muted: #a3abbd;
  --accent: #f5b53c;
  --accent-ink: #1b1204;
  --line: rgba(255, 255, 255, 0.08);
  --max: 880px;
}
* { box-sizing: border-box; }
html { color-scheme: dark; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
header.site {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  max-width: var(--max); margin: 0 auto; padding: 20px 24px;
}
header.site .brand { display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 700; letter-spacing: 0.02em; }
header.site .brand img { width: 32px; height: 32px; border-radius: 8px; }
header.site nav a { color: var(--muted); margin-left: 18px; font-size: 15px; }
header.site nav a:hover { color: var(--text); text-decoration: none; }
main { max-width: var(--max); margin: 0 auto; padding: 16px 24px 64px; }
h1 { font-size: 40px; line-height: 1.15; margin: 24px 0 8px; letter-spacing: -0.01em; }
h2 { font-size: 24px; margin: 40px 0 12px; }
h3 { font-size: 18px; margin: 24px 0 6px; }
p, li { color: var(--text); }
.muted { color: var(--muted); }
.lede { font-size: 20px; color: var(--muted); max-width: 640px; }
.small { font-size: 14px; color: var(--muted); }
.hero { text-align: center; padding: 32px 0 8px; }
.hero img.icon { width: 128px; height: 128px; border-radius: 28px; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45); }
.hero .tagline { font-size: 22px; color: var(--muted); margin: 6px 0 22px; }
.button {
  display: inline-block; background: var(--accent); color: var(--accent-ink); font-weight: 700;
  padding: 14px 26px; border-radius: 999px; font-size: 17px;
}
.button:hover { text-decoration: none; filter: brightness(1.05); }
.button.ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 40px 0 8px; }
.shots img { width: 100%; border-radius: 22px; border: 1px solid var(--line); background: var(--panel); }
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 24px; padding: 0; list-style: none; }
.features li { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; }
.features b { display: block; margin-bottom: 4px; }
table { width: 100%; border-collapse: collapse; margin: 12px 0 20px; font-size: 15px; }
th, td { text-align: left; vertical-align: top; padding: 10px 10px; border-bottom: 1px solid var(--line); }
th { color: var(--muted); font-weight: 600; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; margin: 16px 0; }
ol.steps li { margin: 8px 0; }
footer.site { max-width: var(--max); margin: 0 auto; padding: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; display: flex; flex-wrap: wrap; gap: 8px 18px; }
footer.site a { color: var(--muted); }
@media (max-width: 640px) {
  h1 { font-size: 32px; }
  .shots, .features { grid-template-columns: 1fr; }
  header.site nav a { margin-left: 12px; }
}
