/* Same palette as the desktop app's light theme, so the two feel like one
   product rather than a landing page bolted onto an app. */
:root {
  --bg: #f1f5f9;
  --surface: #ffffff;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --accent: #0f172a;
  --accent-ink: #ffffff;
  --warning: #92400e;
  --warning-tint: #fef3c7;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

h1 { font-size: 28px; margin: 0 0 4px; letter-spacing: -0.01em; }
h2 { font-size: 18px; margin: 40px 0 12px; }
p { color: var(--muted); }

.tagline { margin: 0 0 32px; }

.downloads {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.downloads li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.downloads a {
  color: var(--accent-ink);
  background: var(--accent);
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.platform { font-weight: 500; }
.platform small { display: block; font-weight: 400; color: var(--muted); }

.note {
  margin-top: 8px;
  padding: 12px 16px;
  background: var(--warning-tint);
  color: var(--warning);
  border-radius: 8px;
  font-size: 14px;
}

.cta {
  display: inline-block;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 500;
}

code {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1px 5px;
  font-size: 0.9em;
}

footer {
  margin-top: 64px;
  color: var(--muted);
  font-size: 13px;
}
