.poker-hero {
  padding-top: var(--space-12);
}

.poker-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-10);
  align-items: center;
}

.poker-hero__title {
  margin-top: var(--space-2);
  margin-bottom: var(--space-3);
}

.poker-hero__lead {
  font-size: var(--font-size-lg);
  max-width: 34rem;
}

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

.poker-hero__note {
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
  max-width: 32rem;
}

.poker-hero__visual {
  display: flex;
  justify-content: center;
}

.poker-hero__table-orbit {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 10%, #ffe8df 0, #ffe2cf 32%, #e6fbf3 100%);
  box-shadow: var(--shadow-md);
}

.poker-hero__table-core {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: var(--color-bg-card);
  box-shadow: inset 0 0 0 1px rgba(255, 204, 163, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.poker-hero__table-label {
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.poker-hero__seat {
  position: absolute;
  min-width: 4.2rem;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 250, 245, 0.96);
  box-shadow: var(--shadow-sm);
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
}

.poker-hero__seat--one {
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.poker-hero__seat--two {
  right: -0.4rem;
  top: 50%;
  transform: translateY(-50%);
}

.poker-hero__seat--three {
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.poker-hero__seat--four {
  left: -0.4rem;
  top: 50%;
  transform: translateY(-50%);
}

.poker-hero__chip {
  position: absolute;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  border: 1px dashed rgba(248, 106, 70, 0.4);
}

.poker-hero__chip--mint {
  top: 18%;
  right: 8%;
  background: rgba(230, 251, 243, 0.95);
}

.poker-hero__chip--peach {
  bottom: 20%;
  left: 8%;
  background: rgba(255, 228, 207, 0.95);
}

.poker-hero__chip--sky {
  bottom: 6%;
  right: 28%;
  background: rgba(230, 244, 255, 0.95);
}

.poker-bento .bento-item,
.poker-bento-alt .bento-item {
  align-self: stretch;
}

.poker-list {
  display: grid;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  padding-left: 1.1rem;
}

.poker-list li {
  position: relative;
  color: var(--color-text-soft);
}

.poker-list li::before {
  content: "";
  position: absolute;
  left: -0.9rem;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent-sky), var(--color-accent-peach));
}

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

.poker-image-band--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

.poker-image-band__content h2 {
  margin-bottom: var(--space-3);
}

.poker-image-band__media img {
  border-radius: var(--radius-bento-large);
  box-shadow: var(--shadow-md);
}

.poker-steps {
  counter-reset: pokerstep;
  display: grid;
  gap: var(--space-4);
  padding-left: 0.3rem;
}

.poker-steps li {
  position: relative;
  padding-left: 2.6rem;
}

.poker-steps li::before {
  counter-increment: pokerstep;
  content: counter(pokerstep);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 204, 163, 0.9);
  background: rgba(255, 245, 234, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.poker-steps h3 {
  font-size: var(--font-size-md);
  margin-bottom: var(--space-1);
}

.poker-mood-card {
  display: flex;
  align-items: stretch;
}

.poker-mood-card__inner {
  padding: var(--space-5);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-3);
}

.poker-faq .card {
  height: 100%;
}

.poker-final-cta {
  padding-bottom: var(--space-16);
}

.poker-final-cta__card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  background: radial-gradient(circle at top left, #ffe2cf 0, #fff5ea 45%, #fffaf5 100%);
}

.poker-final-cta__content h2 {
  margin-bottom: var(--space-2);
}

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

@media (max-width: 960px) {
  .poker-hero__inner {
    grid-template-columns: 1fr;
  }

  .poker-hero__visual {
    order: -1;
  }

  .poker-image-band,
  .poker-image-band--reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .poker-hero {
    padding-top: var(--space-10);
  }

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