/* minion.ink — minimal stylesheet, no external dependencies */

:root {
  --bg:       #0e1117;
  --surface:  #161b22;
  --text:     #d7dde8;
  --muted:    #7d8590;
  --accent:   #58a6ff;
  --denied:   #f85149;
  --border:   #21262d;
  --maxw:     720px;
  --radius:   8px;
}

* { box-sizing: border-box; }

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 1.25rem;
  font-size: 0.9rem;
  transition: color 0.15s;
}
.nav a:hover { color: var(--text); }

/* Hero */
.hero {
  padding: 4rem 0 3rem;
}
.hero h1 {
  font-size: 2rem;
  line-height: 1.25;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.lede {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
}

/* Permissions */
.permissions {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}
.permissions h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}
.permissions h2:first-child { margin-top: 0; }
.perm-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.perm-list li {
  padding: 0.5rem 0 0.5rem 1.25rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.perm-list li:last-child { border-bottom: none; }
.perm-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.perm-list.denied li::before {
  content: "✕";
  color: var(--denied);
}
code {
  background: var(--surface);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.85em;
  color: var(--accent);
}

/* Blog preview */
.blog-preview {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.blog-preview h2 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}
.muted { color: var(--muted); }
.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.5rem;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.9rem;
  transition: border-color 0.15s, color 0.15s;
}
.btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  margin-top: 2rem;
}
.site-footer p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
  .hero { padding: 2.5rem 0 2rem; }
  .hero h1 { font-size: 1.5rem; }
  .site-header .wrap { flex-direction: column; gap: 0.5rem; }
  .nav a { margin-left: 0; margin-right: 1rem; }
}