.section-hero {
  padding-top: var(--space-12);
  padding-bottom: var(--space-10);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.hero-copy .hero-lead {
  font-size: var(--font-size-lg);
  color: var(--color-text);
  max-width: 40rem;
}

.hero-actions {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero-meta {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
}

.hero-meta-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.hero-aside-inner {
  box-shadow: var(--shadow-sm);
}

.hero-filters .form-field:last-of-type {
  margin-bottom: var(--space-3);
}

.section-intro .surface-soft {
  box-shadow: var(--shadow-xs);
}

.intro-grid {
  margin-top: var(--space-4);
  gap: var(--space-6);
}

.section-header {
  margin-bottom: var(--space-6);
  max-width: 48rem;
}

.section-header p {
  margin-bottom: 0;
}

.comparison-grid {
  gap: var(--space-6);
}

.card-image {
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
}

.card-list {
  margin-top: var(--space-2);
}

.card-split {
  gap: var(--space-5);
}

.section-platforms .platform-grid {
  gap: var(--space-6);
}

.section-monetization .comparison-grid {
  gap: var(--space-6);
}

.section-table .table-wrapper {
  box-shadow: var(--shadow-sm);
}

.table-controls {
  margin-bottom: var(--space-4);
}

.table-search {
  max-width: 320px;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
}

.table-scroll::-webkit-scrollbar {
  height: 6px;
}

.table-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

.section-cta .cta-inner {
  box-shadow: var(--shadow-sm);
  align-items: flex-start;
}

.section-cta .cta-actions {
  margin-top: var(--space-2);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-aside {
    order: -1;
  }

  .section-hero {
    padding-top: var(--space-10);
  }
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .table-search {
    max-width: 100%;
    width: 100%;
  }
}
