:root {
  color-scheme: light dark;
  --bg: #fdf6ec;
  --fg: #2e2418;
  --muted: #7e6f5a;
  --border: #ecdfc9;
  --card: #fffdf8;
  --accent: #b95238;
  --accent-soft: #f3ded2;
  --max-width: 680px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #201a13;
    --fg: #f5ead9;
    --muted: #b7a58a;
    --border: #3a3022;
    --card: #2a2318;
    --accent: #e8926f;
    --accent-soft: #3a2a20;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 3.5rem 1.5rem 5rem;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
}

header.site-header {
  max-width: var(--max-width);
  margin: 0 auto 2.5rem;
}

header.site-header a.home-link {
  font-weight: 700;
  text-decoration: none;
  color: var(--fg);
  font-size: 1.15rem;
}

h1 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 2.5rem;
  color: var(--fg);
}

p, li {
  color: var(--fg);
}

.tagline {
  color: var(--muted);
  margin-top: 0;
  font-size: 1.1rem;
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--accent-soft);
  text-underline-offset: 2px;
}

.app-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0;
}

.app-list li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.15rem 1.35rem;
  margin-bottom: 0.9rem;
  box-shadow: 0 2px 10px rgba(60, 40, 20, 0.06);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.app-list li .icon {
  font-size: 1.4rem;
  line-height: 1.4;
}

.app-list .app-name {
  font-weight: 700;
  display: block;
}

.app-list .app-desc {
  color: var(--muted);
  font-size: 0.95rem;
}

.app-list .coming-soon {
  display: inline-block;
  margin-top: 0.3rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--accent-soft);
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
}

footer {
  max-width: var(--max-width);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

code {
  background: var(--accent-soft);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.9em;
}
