:root {
  --bg: #0f1115;
  --surface: #171a21;
  --text: #e6e8ec;
  --muted: #9aa1ad;
  --accent: #4c8dff;
  --border: #262b34;
  --max-width: 720px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
}

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

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 20px 80px;
}

header.site {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

header.site img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

header.site .name {
  font-weight: 600;
  font-size: 18px;
}

nav.site {
  margin-left: auto;
  display: flex;
  gap: 18px;
  font-size: 15px;
}

nav.site a {
  color: var(--muted);
}

nav.site a:hover {
  color: var(--text);
  text-decoration: none;
}

.hero {
  text-align: center;
  padding: 48px 20px 32px;
}

.hero img.appicon {
  width: 120px;
  height: 120px;
  border-radius: 26px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.hero h1 {
  font-size: 40px;
  margin: 24px 0 8px;
  letter-spacing: -0.02em;
}

.hero p.tagline {
  font-size: 20px;
  color: var(--muted);
  margin: 0 auto;
  max-width: 520px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 48px 0;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

h1.page {
  font-size: 30px;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.effective {
  color: var(--muted);
  font-size: 15px;
  margin-top: 0;
}

h2 {
  font-size: 21px;
  margin-top: 36px;
}

ul {
  padding-left: 22px;
}

li {
  margin: 6px 0;
}

footer.site {
  border-top: 1px solid var(--border);
  margin-top: 64px;
  padding: 28px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

footer.site a {
  color: var(--muted);
  margin: 0 10px;
}

.callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 16px 18px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 15px;
}
