/* Landing page styles */
body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  background: #f4f7fb;
  margin: 0;
  color: #0f172a;
}
.site-header {
  background: #fff;
  border-bottom: 1px solid #e6eef8;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-weight: 700;
  color: #111;
  text-decoration: none;
  font-size: 1.2rem;
}
.site-nav a {
  margin-left: 16px;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}
.hero-section {
  padding: 48px 0;
  /* make the hero area occupy the majority of the viewport on short pages
     assume header + footer consume ~120px; adjust if your header/footer grow */
  display: flex;
  align-items: center; /* vertical center the inner .main-container */
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: center;
}
.hero-content h1 {
  font-size: 2rem;
  margin: 0 0 12px;
  color: #0f172a;
}
.lead {
  color: #374151;
  margin-bottom: 18px;
}
.primary-cta {
  background: #2563eb;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  margin-right: 10px;
  font-weight: 700;
}
.secondary-cta {
  background: #eef2ff;
  color: #2563eb;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}
.hero-card {
  background: #fff;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #e6eef8;
}
.editor-sample {
  font-family: monospace;
  background: #0b1220;
  color: #cbd5e1;
  padding: 12px;
  border-radius: 6px;
}
.editor-sample .line {
  padding: 4px 0;
}
.site-header .main-container {
  margin-top: 0;
  padding: 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  border: 1px solid #e6eef8;
}
.link-btn {
  display: inline-block;
  margin-top: 10px;
  color: #2563eb;
  font-weight: 700;
}
.site-footer {
  padding: 18px 0;
  color: #6b7280;
  border-top: 1px solid #e6eef8;
  margin-top: 28px;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
