.poker-hero {
  position: relative;
  color: var(--color-text);
}

.poker-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.poker-hero__frame {
  width: 100%;
  height: 100%;
}

.poker-hero__frame img {
  height: 100%;
  object-fit: cover;
}

.poker-hero__content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.poker-hero__lead {
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
}

.poker-hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.poker-hero__meta {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.poker-hero__eyebrow {
  margin-bottom: var(--space-3);
}

.poker-section--split {
  align-items: center;
  gap: var(--space-10);
}

.poker-copy-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.poker-media-block {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.poker-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.poker-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--font-size-sm);
}

.poker-links a {
  position: relative;
}

.poker-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
  opacity: 0.6;
}

.poker-section-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.poker-section-header p {
  margin-left: auto;
  margin-right: auto;
}

.poker-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-left: 0;
}

.poker-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.poker-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--color-primary-strong), var(--color-accent));
}

.poker-process__grid {
  margin-bottom: var(--space-8);
}

.poker-process__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.poker-team {
  background: radial-gradient(circle at top left, rgba(208, 169, 79, 0.12), transparent 55%),
              radial-gradient(circle at bottom right, rgba(176, 19, 47, 0.25), transparent 55%);
}

.poker-moments {
  background-color: var(--color-bg-elevated);
}

.poker-scenarios__grid {
  margin-bottom: var(--space-6);
}

.poker-scenarios__footnote {
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.poker-vip {
  background: linear-gradient(145deg, rgba(10, 15, 30, 0.98), rgba(16, 21, 41, 0.98));
}

.poker-vip__wrapper {
  align-items: center;
}

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

.poker-before-after__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.poker-before-after__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.poker-before-after__row h3 {
  margin-bottom: var(--space-2);
}

.poker-gallery__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.poker-gallery__item img {
  max-height: 520px;
  object-fit: cover;
}

.poker-gallery__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.poker-final-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.poker-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.order-desktop-last {
  order: 2;
}

@media (max-width: 1024px) {
  .poker-before-after__layout {
    grid-template-columns: 1fr;
  }

  .poker-before-after__row {
    grid-template-columns: 1fr;
  }
}

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

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

  .poker-section--split {
    grid-template-columns: 1fr;
  }

  .poker-final-cta__inner {
    align-items: flex-start;
  }

  .order-desktop-last {
    order: 0;
  }
}
