/* Placeholder styling -- same wireframe palette as web/public/play/style.css
   (background #eeeeec, text #1c1c1a, accent #3b6ea5) so the marketing site
   and the game client read as one project. Replace once real art direction
   lands (Phase 0). */

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #eeeeec;
  color: #1c1c1a;
  line-height: 1.5;
}

main {
  max-width: 880px;
  margin: 0 auto;
  padding: 48px 20px 24px;
}

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

.hero h1 {
  font-size: 42px;
  margin: 0 0 4px;
  letter-spacing: 0.5px;
}

.tagline {
  font-size: 18px;
  color: #3b6ea5;
  font-weight: 600;
  margin: 0 0 16px;
}

.pitch {
  max-width: 520px;
  margin: 0 auto 16px;
  font-size: 16px;
}

.esperanto {
  font-size: 14px;
  margin: 0 0 20px;
}

.esperanto .muted {
  display: block;
  margin-top: 2px;
}

.muted {
  color: #6b6b63;
  font-size: 13px;
}

.status-badge {
  display: inline-block;
  background: #fff3cd;
  border: 1px solid #d8c58a;
  color: #6b5a1e;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
}

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

.feature {
  background: #ffffff;
  border: 1px solid #d8d8d2;
  border-radius: 8px;
  padding: 18px;
}

.feature h2 {
  font-size: 16px;
  color: #3b6ea5;
  margin: 0 0 8px;
}

.feature p {
  font-size: 14px;
  margin: 0;
}

.about {
  border-top: 1px solid #d8d8d2;
  padding: 32px 0;
}

.about h2 {
  font-size: 18px;
  margin: 0 0 10px;
}

.about p {
  max-width: 640px;
  font-size: 14px;
}

footer {
  max-width: 880px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
}

footer a {
  color: #3b6ea5;
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  footer { justify-content: center; text-align: center; }
}
