/* AgentSight — custom overrides on top of Simple.css */

:root {
  --accent: #4a9eff;
}

/* Terminal-style code blocks */
pre {
  background: #1a1a2e;
  color: #f0f0f0;
  border-radius: 8px;
  padding: 1.2rem;
  overflow-x: auto;
  font-size: 0.9rem;
  line-height: 1.5;
}

pre code {
  color: #f0f0f0;
  background: none;
}

/* Inline code */
code {
  font-size: 0.9em;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 2rem 0;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 0.3rem;
}

.hero .tagline {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-top: 0;
}

/* Install box */
.install-box {
  text-align: center;
  margin: 2rem 0;
}

.install-box pre {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  margin: 0.5rem 0;
}

/* Feature grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.features article {
  padding: 1.2rem;
}

/* Guide cards on landing page */
.guide-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.guide-cards a {
  text-decoration: none;
  display: block;
}

.guide-cards article {
  padding: 1.5rem;
  transition: transform 0.15s ease;
}

.guide-cards article:hover {
  transform: translateY(-2px);
}

/* Guide page navigation */
.guide-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.guide-nav a {
  display: inline-block;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 3rem;
  opacity: 0.7;
  font-size: 0.9rem;
}
