:root {
  --bg: #fafafa; --fg: #111; --muted: #666; --line: #e6e6e6; --accent: #6366f1; --card: #fff;
  --hero-shadow: rgba(49,46,129,.12);
  color-scheme: light;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--fg); font: 16px/1.6 -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif; }
.wrap { max-width: 800px; margin: 0 auto; padding: 48px 20px 80px; }

/* Header */
header { display: flex; align-items: center; gap: 14px; margin-bottom: 40px; }
header img { width: 40px; height: 40px; border-radius: 10px; }
header a { color: inherit; text-decoration: none; font-weight: 700; font-size: 20px; }
nav a { color: var(--muted); text-decoration: none; margin-left: 18px; font-size: 14px; }
nav a:hover { color: var(--fg); }

/* Hero */
h1 { font-size: 44px; line-height: 1.1; letter-spacing: -.03em; margin: 0 0 16px; font-weight: 800; }
h1 em { font-style: normal; color: var(--accent); }
.lead { font-size: 19px; color: var(--muted); margin: 0 0 28px; max-width: 520px; }
.cta { display: inline-block; background: var(--accent); color: #fff; padding: 12px 24px; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 15px; }
.cta:hover { background: #4f46e5; }
.cta.soon { background: var(--line); color: var(--muted); pointer-events: none; }

/* Hero — video embed, bleeds wider than the text column */
.hero { display: block; margin: 40px -20px 0; }
.video-wrap { position: relative; width: 100%; padding-bottom: 56.25%; border-radius: 0; overflow: hidden; background: #000; }
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
@media (min-width: 840px) {
  .hero { margin-left: -60px; margin-right: -60px; }
  .video-wrap { border-radius: 16px; box-shadow: 0 24px 64px var(--hero-shadow); }
}
.hero img { width: 100%; height: auto; border-radius: 0; border: none; box-shadow: none; }
@media (min-width: 840px) {
  .hero img { border-radius: 16px; border: 1px solid var(--line); box-shadow: 0 24px 64px var(--hero-shadow); }
}

/* Feature cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin: 48px 0; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 18px; }
.card h3 { margin: 0 0 6px; font-size: 15px; font-weight: 700; }
.card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }

/* How it looks gallery */
h2 { font-size: 22px; margin: 44px 0 12px; letter-spacing: -.01em; }
.shots { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin: 16px 0 8px; }
.shots figure { margin: 0; }
.shots img { width: 100%; height: auto; border-radius: 10px; border: 1px solid var(--line); }
.shots figcaption { margin-top: 8px; font-size: 13px; color: var(--muted); line-height: 1.45; }

/* Content */
ul { padding-left: 20px; }
li { margin: 6px 0; }
code { background: var(--line); padding: 1px 6px; border-radius: 5px; font-size: 14px; }
.small { color: var(--muted); font-size: 14px; }
footer { margin-top: 64px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
footer a { color: inherit; }
