:root {
  --bg: #0b0d12;
  --panel: #14171e;
  --panel-2: #1c2029;
  --border: #2a2f3a;
  --text: #e8eaed;
  --muted: #9aa0a6;
  --dim: #5f6c8a;
  --accent: #6ea8fe;
  --accent-2: #2e3a78;
  --gold: #ffd23a;
  --warm: #ff9933;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 16px; line-height: 1.55; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
code { background: var(--panel-2); color: var(--gold); padding: 1px 6px;
  border-radius: 4px; font-size: .92em; }
.container { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* Top nav */
.topnav { background: #0e1014; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100; }
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 52px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand-icon { width: 28px; height: 28px; }
.brand-name { font-weight: 800; font-size: 16px; letter-spacing: .3px; }
.nav-links a { color: var(--muted); font-size: 13px; margin-left: 20px;
  text-decoration: none; font-weight: 600; }
.nav-links a:hover { color: var(--text); }

/* Hero — clean dark, brand + tagline + inline screenshots (zipper-style layout) */
.hero { border-bottom: 1px solid var(--border); background: var(--bg); }
.hero-row { display: flex; gap: 36px; align-items: center;
  padding: 48px 24px 56px; max-width: 880px; margin: 0 auto; }
@media (max-width: 720px) { .hero-row { flex-direction: column; padding: 32px 24px 40px; } }
.hero-text { flex: 1; min-width: 0; }
.brand-block { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.brand-mark { width: 48px; height: 48px; }
.wordmark { font-weight: 900; font-size: 24px; letter-spacing: 1.5px; color: var(--text); }
.hero .tag { color: var(--muted); font-size: 16px; max-width: 520px; margin: 0 0 22px; }
.hero .tag strong { color: var(--text); }
.hero .cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-shot { display: flex; gap: 10px; flex-shrink: 0; }
.hero-shot img { width: 130px; height: auto; border-radius: 12px;
  border: 1px solid var(--border); box-shadow: 0 16px 36px rgba(0,0,0,0.5); }
@media (max-width: 720px) { .hero-shot img { width: 110px; } }
.btn { display: inline-block; padding: 12px 22px; border-radius: 8px;
  font-weight: 600; font-size: 14px; transition: transform .08s, background .15s; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn.primary { background: var(--accent-2); color: #fff; border: 1px solid #3949ab; }
.btn.primary:hover { background: #3949ab; }
.btn.ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn.ghost:hover { background: var(--panel-2); }

/* Sections */
section { padding: 56px 0; border-bottom: 1px solid var(--border); }
section#about { border-bottom: none; }
section h2 { font-size: 28px; font-weight: 700; margin: 0 0 24px; }
section h3 { font-size: 18px; margin: 22px 0 8px; color: var(--text); }
section p { color: var(--muted); margin: 0 0 12px; }
section p strong { color: var(--text); }

/* Lane cards */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 720px) { .grid { grid-template-columns: 1fr; } }
.card { background: var(--panel); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px; }
.card .icon { font-size: 28px; margin-bottom: 8px; }
.card h3 { margin: 0 0 10px; font-size: 17px; color: var(--text); }
.card p { font-size: 14px; line-height: 1.5; }

/* Screenshots */
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 720px) { .shots { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; } }
.shots img { width: 100%; height: auto; border-radius: 12px;
  border: 1px solid var(--border); display: block; }

/* Install */
.install ol { color: var(--muted); padding-left: 22px; }
.install ol li { margin: 8px 0; }

/* Footer */
footer { padding: 16px 0 0; color: var(--dim); font-size: 13px; margin: 0; }
footer a { color: var(--muted); }
