/*
 * base.css — ctxstore.ai shared base styles
 * Loaded by all landing pages for consistent look and feel.
 * Family A canonical: dark background, white headings, purple accents.
 * RC2: move per-page CSS into component partials built on this base.
 */

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

body {
  font-family: 'SF Mono', 'Fira Code', 'JetBrains Mono', monospace;
  background: #0a0a0a;
  color: #e0e0e0;
  min-height: 100vh;
  line-height: 1.6;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 1px solid #1a1a1a;
}

nav a { text-decoration: none; }

.nav-brand img { display: block; }

.nav-links { display: flex; align-items: center; gap: 1rem; }

.nav-links a {
  color: #a5b4fc;
  font-size: 0.85rem;
  text-decoration: none;
}

.nav-links a:hover { color: #fff; }

/* Headings */
h1 { font-size: 2rem; font-weight: 300; color: #fff; margin-bottom: 0.75rem; }
h2 { font-size: 1.4rem; font-weight: 400; color: #a5b4fc; margin: 2rem 0 0.75rem; }
h3 { font-size: 1.1rem; font-weight: 400; color: #c4b5fd; margin: 1.5rem 0 0.5rem; }

/* Content */
p { color: #ccc; margin-bottom: 1rem; line-height: 1.7; }
a { color: #6366f1; text-decoration: none; }
a:hover { color: #818cf8; }
code { background: #1a1a2e; color: #7ee787; padding: 0.1em 0.4em; border-radius: 4px; font-size: 0.88em; }
pre { background: #0d0d1a; border: 1px solid #2d2d5e; border-radius: 8px; padding: 1rem; overflow-x: auto; }

/* Footer */
footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #1a1a2e;
  font-size: 0.75rem;
  color: #555;
  text-align: center;
}

footer a { color: #6366f1; margin: 0 0.5rem; }
footer a:hover { color: #818cf8; }
