/* The one stylesheet for qm.venka.com (frontend standards: one CSS file,
   no browser dependencies, no JS). */

:root {
  color-scheme: dark;
  --bg: #17121b;
  --fg: #ece7f2;
  --muted: #9d93ab;
  --accent: #b58ae6;
  --accent-ink: #1a1120;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--fg);
  font-family: ui-sans-serif, system-ui, sans-serif;
  line-height: 1.6;
}

main {
  max-width: 34rem;
  padding: 3rem 1.5rem;
  text-align: center;
}

.mark { border-radius: 14px; }

h1 {
  margin: 0.75rem 0 0;
  font-size: 3rem;
  letter-spacing: 0.02em;
}

.tagline {
  margin: 0.25rem 0 2rem;
  font-size: 1.25rem;
  color: var(--accent);
  text-wrap: balance;
}

.pitch {
  margin: 0 0 1rem;
  color: var(--muted);
  text-wrap: pretty;
}

.pitch em { color: var(--fg); }

.download {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 0.6rem;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
  text-decoration: none;
}

.download:hover { filter: brightness(1.1); }

.fineprint {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}
