/* Voxel Foundry — shared site styles */

:root {
  --bg-page: #1a1a1a;
  --bg-card: #2a2a2a;
  --text: #e0e0e0;
  --text-muted: #b8b8b8;
  --accent: #c7ccd1;
  --accent-hover: #eef0f2;
  --border: #3a3a3a;
  --link: #7fc4ff;
  --link-hover: #a9d9ff;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--link);
}

a:hover {
  color: var(--link-hover);
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-link img {
  height: 40px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

main {
  padding: 48px 0;
}

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

.hero h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.app-feature {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 32px;
  flex-wrap: wrap;
}

.app-feature img {
  width: 160px;
  height: auto;
  flex-shrink: 0;
}

.app-feature-content {
  flex: 1;
  min-width: 240px;
}

.app-feature-content h2 {
  margin-top: 0;
}

.app-feature-content p {
  color: var(--text-muted);
}

.badge {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 14px;
  background: var(--accent);
  color: var(--bg-page);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
}

.page-section h1 {
  margin-bottom: 24px;
}

.page-section h2 {
  margin-top: 32px;
  color: var(--text);
}

.page-section p {
  color: var(--text-muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 48px;
}

.footer-inner {
  padding: 24px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}
