:root {
  --bg: #09070d;
  --surface: #120e1b;
  --line: #29233d;
  --text: #ebe8f3;
  --muted: #a8a1bd;
  --accent: #a27fff;
  --accent-strong: #8c5bff;
  --now: #ddd0ff;
  color-scheme: dark;
}
* { box-sizing: border-box; }
html { background: var(--bg); }
body {
  margin: 0;
  color: var(--text);
  font: 17px/1.6 "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: radial-gradient(80rem 40rem at 50% -10rem, #231743 0%, var(--bg) 60%) no-repeat, var(--bg);
}
a { color: var(--now); }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 20px; }
header.bar { display: flex; align-items: center; gap: 12px; padding: 20px 0; }
header.bar img { width: 36px; height: 36px; }
header.bar strong { font-size: 18px; letter-spacing: 0.01em; }
header.bar nav { margin-left: auto; display: flex; gap: 20px; }
header.bar nav a { color: var(--muted); text-decoration: none; }
header.bar nav a:hover { color: var(--text); }
.hero { text-align: center; padding: 64px 0 40px; }
.hero img { width: 128px; height: 128px; filter: drop-shadow(0 12px 40px rgba(162, 127, 255, 0.35)); }
h1 { font-size: clamp(34px, 6vw, 56px); line-height: 1.1; margin: 24px 0 16px; letter-spacing: -0.02em; }
.lead { font-size: 20px; color: var(--muted); max-width: 640px; margin: 0 auto 32px; }
.buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.button {
  display: inline-block; padding: 12px 22px; border-radius: 12px; font-weight: 600; text-decoration: none;
  background: var(--accent-strong); color: white; border: 1px solid transparent;
}
.button:hover { background: var(--accent); }
.button.quiet { background: transparent; border-color: var(--line); color: var(--text); }
.button.quiet:hover { border-color: var(--accent); }
.small { font-size: 14px; color: var(--muted); }
section { padding: 56px 0; border-top: 1px solid var(--line); }
h2 { font-size: 30px; line-height: 1.2; margin: 0 0 8px; letter-spacing: -0.01em; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 28px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; }
.card h3 { margin: 0 0 6px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); }
.pro { background: linear-gradient(160deg, #1d1433, var(--surface)); border-color: #3c3356; }
.price { font-size: 40px; font-weight: 700; margin: 8px 0 0; }
.tag { display: inline-block; font-size: 12px; padding: 2px 8px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); margin-left: 6px; vertical-align: middle; }
.downloads { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin-top: 24px; }
.downloads a { text-align: center; }
details { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; margin-top: 10px; }
summary { cursor: pointer; font-weight: 600; }
details p { color: var(--muted); margin: 10px 0 0; }
footer { padding: 32px 0 48px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; display: flex; gap: 20px; flex-wrap: wrap; }
footer a { color: var(--muted); }
.prose { max-width: 720px; padding: 40px 0 64px; }
.prose h1 { font-size: 40px; }
.prose p, .prose li { color: var(--muted); }
@media (max-width: 560px) { header.bar nav { display: none; } .hero { padding-top: 32px; } }
