body {
  background-color: var(--color-bg);
}

.hero {
  position: relative;
}

.hero__inner {
  align-items: center;
  gap: var(--space-8);
}

.hero__content {
  max-width: 32rem;
}

.hero__cta-group--stack {
  gap: var(--space-3);
}

.hero__cta-row {
  gap: var(--space-3);
  flex-wrap: wrap;
}

.hero__media {
  max-width: 30rem;
  margin-left: auto;
}

.hero__image-frame {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
}

.hero__meta {
  font-size: var(--font-size-sm);
}

.hero-secondary {
  align-items: center;
  gap: var(--space-8);
}

.hero-secondary__card {
  height: 100%;
}

.hero-secondary__list,
.highlight-tiles__bullets,
.poker-teaser__list,
.poker-teaser__bullets,
.gallery-teaser__list,
.why-us__list,
.faq-cta__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-secondary__list li,
.highlight-tiles__bullets li,
.poker-teaser__list li,
.poker-teaser__bullets li,
.gallery-teaser__list li,
.why-us__list li,
.faq-cta__list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.hero-secondary__list li::before,
.highlight-tiles__bullets li::before,
.poker-teaser__list li::before,
.poker-teaser__bullets li::before,
.gallery-teaser__list li::before,
.why-us__list li::before,
.faq-cta__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: radial-gradient(circle, var(--color-primary), var(--color-accent-gold));
}

.highlight-tiles {
  gap: var(--space-6);
}

.highlight-tiles__item {
  height: 100%;
}

.highlight-tiles__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--font-size-sm);
  color: var(--color-accent-silver);
}

.highlight-tiles__link::after {
  content: "\2197";
  font-size: 0.8em;
}

.poker-teaser {
  gap: var(--space-6);
  align-items: stretch;
}

.poker-teaser__block,
.poker-teaser__secondary {
  height: 100%;
}

.poker-teaser__header h2 {
  margin-bottom: 0;
}

.poker-teaser__cta {
  margin-top: var(--space-2);
}

.gallery-teaser {
  gap: var(--space-8);
  align-items: center;
}

.gallery-teaser__media .image-frame {
  box-shadow: var(--shadow-elevated);
}

.why-us {
  gap: var(--space-8);
  align-items: flex-start;
}

.why-us__points .pill-nav {
  margin-bottom: var(--space-4);
}

.faq-cta {
  background: radial-gradient(circle at 0 0, rgba(0, 197, 138, 0.12), transparent 55%), var(--color-bg-alt);
}

.faq-cta__side {
  height: 100%;
}

.faq-cta__buttons {
  gap: var(--space-3);
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .hero__inner,
  .hero-secondary,
  .gallery-teaser,
  .why-us,
  .poker-teaser {
    gap: var(--space-6);
  }

  .hero__content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .section.section--large {
    padding-block: var(--space-10);
  }

  .hero__media {
    max-width: 100%;
    margin-left: 0;
  }

  .hero__inner {
    text-align: left;
  }

  .hero__cta-row {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .hero__cta-row {
    flex-direction: column;
  }

  .hero__cta-row .btn {
    width: 100%;
    justify-content: center;
  }
}
