.hero-section {
  padding-top: var(--space-16);
}
.hero-grid-gap {
  gap: var(--space-10);
}
.hero-copy p {
  max-width: 38rem;
}
.hero-benefits {
  list-style: none;
  padding-left: 0;
  margin: var(--space-4) 0 var(--space-5);
  display: grid;
  gap: var(--space-2);
}
.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}
.hero-benefits li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gradient-primary);
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}
.hero-note {
  font-size: var(--font-size-sm);
  margin-top: var(--space-4);
}
.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-phone-card {
  max-width: 360px;
}
.hero-phone-frame {
  border-radius: 32px;
  padding: 10px;
  background: radial-gradient(circle at top, rgba(148, 163, 184, 0.3), transparent 55%), #020617;
}
.hero-phone-frame img {
  border-radius: 26px;
}
.hero-phone-meta {
  margin-top: var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
}
.hero-phone-title {
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-gray-900);
}
.hero-phone-sub {
  font-size: var(--font-size-sm);
}
.hero-phone-badges {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.game-intro-grid {
  gap: var(--space-8);
}
.game-mechanics-card ul {
  margin: 0;
}
.game-intro-highlight {
  align-self: center;
}
.boards-grid {
  gap: var(--space-8);
  align-items: center;
}
.boards-image img {
  border-radius: var(--radius-xl);
}
.section-alt {
  background: var(--gradient-soft);
}
.highlight-grid {
  align-items: flex-start;
}
.stickers-image-wrapper {
  margin-bottom: var(--space-4);
}
.stickers-image-wrapper img {
  border-radius: var(--radius-lg);
}
.social-grid {
  gap: var(--space-8);
  align-items: flex-start;
}
.tips-highlight {
  align-self: stretch;
}
.tips-list {
  margin: 0 0 var(--space-4);
}
.strategy-grid {
  align-items: flex-start;
}
.updates-faq-grid {
  align-items: flex-start;
}
.faq-card .faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.download-section {
  background: #020617;
  color: #e5e7eb;
}
.download-section p {
  color: #cbd5f5;
}
.download-section h2 {
  color: #ffffff;
}
.download-section .main-link {
  color: #93c5fd;
}
.download-section .main-link:hover {
  color: #bfdbfe;
}
.download-grid {
  gap: var(--space-8);
  align-items: center;
}
.download-image-card {
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.4), transparent 60%), rgba(15, 23, 42, 0.98);
}
.download-image-card img {
  border-radius: var(--radius-lg);
}
.download-note {
  font-size: var(--font-size-sm);
  margin-top: var(--space-3);
}
@media (max-width: 767px) {
  .hero-section {
    padding-top: var(--space-12);
  }
  .hero-media {
    margin-top: var(--space-6);
  }
  .boards-grid,
  .download-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .download-image-card {
    order: -1;
  }
}
@media (min-width: 1024px) {
  .hero-section {
    padding-bottom: var(--space-16);
  }
}
