:root {
  --bg: #fafaf7;
  --surface: #ffffff;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --border: #e5e5e0;
  --accent: #0a6b3d;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
}
header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}
header a {
  color: inherit;
  text-decoration: none;
}
h1 {
  font-size: 2rem;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
}
.tagline {
  color: var(--muted);
  margin: 0;
}
h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0 0 1.25rem 0;
  font-weight: 600;
}
section { margin-bottom: 3rem; }
.app {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.app-info { flex: 1; min-width: 220px; }
.app-name {
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 0 0.2rem 0;
}
.app-desc {
  color: var(--muted);
  margin: 0;
  font-size: 0.92rem;
}
.badge {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}
.badge-live {
  background: var(--accent);
  color: white;
}
.badge-live:hover { opacity: 0.85; }
.badge-soon {
  background: #f0efe9;
  color: var(--muted);
}
.contact p { margin: 0; }
.contact a {
  color: var(--accent);
  text-decoration: none;
}
.contact a:hover { text-decoration: underline; }
footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
footer a {
  color: var(--muted);
  text-decoration: none;
}
footer a:hover { color: var(--text); }

/* Blog list */
.post-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.post-list li {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.post-list li:last-child { border-bottom: none; }
.post-list a {
  color: var(--text);
  text-decoration: none;
  display: block;
}
.post-list a:hover .post-title { color: var(--accent); }
.post-title {
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 0 0.3rem 0;
  transition: color 0.15s ease;
}
.post-meta {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0 0 0.5rem 0;
}
.post-excerpt {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

/* Article (single post) */
.article {
  font-size: 1.05rem;
}
.article h1 {
  font-size: 1.85rem;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.article .post-meta {
  margin-bottom: 2.5rem;
}
.article h3 {
  font-size: 1.25rem;
  margin: 2.5rem 0 0.75rem 0;
  letter-spacing: -0.01em;
}
.article p {
  margin: 0 0 1.25rem 0;
}
.article ul, .article ol {
  margin: 0 0 1.5rem 0;
  padding-left: 1.5rem;
}
.article li { margin-bottom: 0.5rem; }
.article a {
  color: var(--accent);
}
.article blockquote {
  margin: 1.75rem 0;
  padding: 1rem 1.5rem;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  color: var(--muted);
  font-style: italic;
}
.cta-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}
.cta-box p {
  margin: 0 0 1rem 0;
  color: var(--muted);
}
