/* Colors match the app: background #050816, accent #00F470. */
:root {
  --bg: #050816;
  --bg-raised: #0d1226;
  --text: #d9dce6;
  --text-dim: #8b90a3;
  --accent: #00f470;
  --border: #23283d;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 17px/1.6 system-ui, -apple-system, "Segoe UI", sans-serif;
}

main, .site-header, .site-footer {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

a { color: var(--accent); }
a:hover { text-decoration: none; }

h1, h2, h3 { line-height: 1.2; color: #fff; }
h1 { font-size: 2.4rem; margin: 0 0 1rem; }
h2 { font-size: 1.6rem; margin: 3rem 0 1rem; border-bottom: 1px solid var(--border); padding-bottom: 0.4rem; }
h3 { font-size: 1.15rem; margin: 2rem 0 0.5rem; }

pre {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.8rem 1rem;
  overflow-x: auto;
  font-size: 0.9rem;
}

code { font-family: ui-monospace, "Cascadia Code", Menlo, monospace; }

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.site-header nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 1.5rem;
}
.site-header nav a:hover { color: var(--accent); }
.logo img { display: block; }

/* Hero */
.hero { padding: 2.5rem 0 1rem; }
.hero-text p { max-width: 40em; }
.hero-note { color: var(--text-dim); }
.hero-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-top: 1.5rem;
}

/* Features */
.features { margin: 0; }
.features div { margin-bottom: 1.4rem; }
.features dt { font-weight: 600; color: #fff; }
.features dd { margin: 0.15rem 0 0; color: var(--text); max-width: 44em; }

/* Install steps */
.install-steps { padding-left: 1.2rem; }
.install-steps li { margin-bottom: 1rem; }
.install-steps p { margin: 0 0 0.4rem; }

/* Prose pages (privacy policy) */
.prose { padding: 1rem 0 2rem; max-width: 44em; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 4rem;
  padding-top: 1rem;
  padding-bottom: 2rem;
  color: var(--text-dim);
  font-size: 0.9rem;
}
