 .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: center;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.hero-meta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-alt {
  background: radial-gradient(circle at top, #020617 0, #050914 55%, #020617 100%);
}

.intro-grid {
  gap: 24px;
}

.tips-grid {
  gap: 24px;
}

.hardware-grid,
.expert-grid,
.tools-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hardware-image,
.expert-image,
.tools-image {
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.hardware-card,
.expert-card,
.tools-card {
  margin-top: 8px;
}

.expert-tips-list {
  padding-left: 1.25rem;
  margin-bottom: 12px;
}

.genres-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.cta-section {
  padding-top: var(--space-32);
  padding-bottom: var(--space-64);
}

.cta-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-content {
  max-width: 640px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hardware-image-wrapper,
.expert-image-wrapper,
.tools-image-wrapper {
  max-width: 520px;
  margin-inline: auto;
}

@media (max-width: 1024px) {
  .hero-grid,
  .hardware-grid,
  .expert-grid,
  .tools-grid,
  .genres-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: var(--space-48);
    padding-bottom: var(--space-48);
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-cta-group {
    justify-content: flex-start;
  }
}
