/* IdeaFoundry Files — Static Host Styles */

:root {
  --bg: #0a0a0f;
  --surface: #111118;
  --text: #e0e0e5;
  --text-muted: #888895;
  --accent: #3a8eff;
  --border: #22222a;
  --card-bg: #16161e;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  text-align: center;
  padding: 4rem 1rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

header h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

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

main {
  flex: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem 2rem;
  width: 100%;
}

.status {
  text-align: center;
  margin: 2rem 0;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.placeholders {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.2s ease;
}

.card:hover {
  border-color: var(--accent);
}

.card h2 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.note {
  text-align: center;
  margin: 2rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.note a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

@media (max-width: 480px) {
  header {
    padding: 2rem 1rem 1rem;
  }
  
  header h1 {
    font-size: 1.5rem;
  }
  
  .placeholders {
    grid-template-columns: 1fr 1fr;
  }
}
