.hero-home {
  background: radial-gradient(circle at top, #1f242b 0, #0f1115 55%, #07090d 100%);
}

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

.hero-home__content {
  max-width: 620px;
}

.hero-home__eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.hero-home__highlight {
  color: var(--color-primary-strong);
}

.hero-home__lead {
  font-size: var(--font-size-md);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-4);
}

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

.hero-home__actions a {
  max-width: 100%;
}

.hero-home__actions img {
  max-width: 100%;
  height: auto;
  width: auto;
  max-height: 50px;
}

.hero-home__store-badge {
  display: inline-block;
  max-width: 100%;
}

.hero-home__store-badge img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto;
}

@media (max-width: 480px) {
  .hero-home__actions {
    gap: var(--space-2);
  }
  
  .hero-home__actions img {
    max-height: 42px;
  }
  
  .hero-home__store-badge {
    width: auto;
    max-width: 150px;
  }
}

.hero-home__meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

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

.hero-home__media {
  max-width: 520px;
  justify-self: flex-end;
}

.hero-home__image-frame {
  max-height: 360px;
}

.hero-home__image {
  filter: saturate(0.8) contrast(1.1);
}

.section-intro {
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  background: linear-gradient(180deg, rgba(199, 146, 59, 0.04), transparent 42%);
}

.section-features__header {
  max-width: 720px;
  margin-bottom: var(--space-6);
}

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

.section-features__card ul {
  margin-top: var(--space-2);
}

.section-features__thumb {
  margin-bottom: var(--space-3);
}

.section-infographics {
  background-color: var(--color-surface);
}

.section-infographics__layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: var(--space-8);
  align-items: center;
}

.section-infographics__content ul {
  margin-top: var(--space-3);
}

.section-infographics__actions {
  margin-top: var(--space-4);
}

.section-infographics__image-frame {
  background: radial-gradient(circle at top, #26221a 0, #101218 100%);
}

.section-knowledge__header {
  max-width: 720px;
  margin-bottom: var(--space-6);
}

.section-knowledge__search {
  margin-bottom: var(--space-6);
}

.section-knowledge__subheading {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-3);
}

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

.section-knowledge__grid {
  gap: var(--space-5);
}

.section-knowledge__faq-list {
  margin-top: var(--space-3);
}

.section-knowledge__faq-list dt {
  font-weight: 600;
  font-size: var(--font-size-sm);
}

.section-knowledge__faq-list dd {
  margin: 0 0 var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.section-knowledge__footer {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.section-navigation {
  border-top: 1px solid var(--color-border-subtle);
  background-color: var(--color-surface-alt);
}

.section-navigation__grid {
  margin-top: var(--space-4);
}

.section-navigation__card {
  height: 100%;
}

.section-navigation__title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-3);
}

.section-navigation__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.section-navigation__list li + li {
  margin-top: 0.4rem;
}

.section-navigation__list a {
  font-size: var(--font-size-sm);
}

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

  .hero-home__media,
  .section-infographics__media {
    justify-self: stretch;
  }

  .hero-home__content {
    order: 1;
  }

  .hero-home__media {
    order: 2;
  }
}

@media (max-width: 640px) {
  .hero-home__lead {
    font-size: var(--font-size-base);
  }

  .section {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
  }

  .section--dense {
    padding-top: var(--space-6);
    padding-bottom: var(--space-6);
  }
  
  .hero-home__layout,
  .section-infographics__layout {
    gap: var(--space-5);
  }
}

@media (max-width: 480px) {
  .hero-home__layout,
  .section-infographics__layout {
    gap: var(--space-4);
  }
  
  .hero-home__content,
  .section-infographics__content {
    max-width: 100%;
  }
}
