.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

main {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero {
  padding: 6rem 0 4rem;
  text-align: center;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bento-span-2 {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .bento-span-2 {
    grid-column: span 2;
  }
}

footer {
  background-color: var(--obsidian-surface);
  padding: 4rem 0;
  border-top: 1px solid var(--obsidian-stroke);
  text-align: center;
  color: var(--muted);
}

/* Responsive: Engine split rows */
@media (max-width: 768px) {
  .engine-split {
    grid-template-columns: 1fr !important;
  }
}

/* Responsive: Governance metrics banner */
@media (max-width: 768px) {
  .governance-metrics {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .governance-metrics {
    grid-template-columns: 1fr !important;
  }
}
