.bento-section {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 96px 48px;
}

.bento-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.bento-header .section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.bento-header h2 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #ffffff;
  text-wrap: balance;
  margin-bottom: 16px;
}

.bento-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--surface-950);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
  transition: all var(--transition-base) ease;
}

.bento-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background-color: var(--surface-900);
}

.bento-card.centered {
  grid-column: 1 / -1;
}

.bento-card-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
}

.bento-card-content {
  position: relative;
  z-index: 1;
}

.bento-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bento-card h3 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #ffffff;
}

.bento-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .bento-section {
    padding: 64px 32px;
  }
  .bento-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .bento-section {
    padding: 48px 12px;
  }
  .bento-header h2 {
    font-size: 26px;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-card.centered {
    max-width: 100%;
  }
}