.poker-hero {
  position: relative;
}

.poker-hero__grid {
  display: grid;
  gap: var(--space-8);
}

.poker-hero__content {
  max-width: 640px;
}

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

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

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

.poker-hero__image-card {
  position: relative;
  max-width: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.poker-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poker-hero__stat-card {
  position: absolute;
  left: var(--space-4);
  bottom: var(--space-4);
  right: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.poker-hero__stat-label {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.poker-hero__stat-value {
  font-size: var(--font-size-3xl);
  font-weight: 600;
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-1);
}

.poker-hero__stat-note {
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
}

.poker-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.poker-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
}

.poker-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-pink));
}

.poker-list--compact li {
  margin-bottom: var(--space-1);
}

.poker-why__highlights {
  display: grid;
  gap: var(--space-4);
}

.poker-why__card {
  height: 100%;
}

.poker-flow {
  display: grid;
  gap: var(--space-8);
}

.poker-flow__timeline {
  display: grid;
  gap: var(--space-4);
}

.poker-flow__step-number {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-pill);
  background: var(--color-primary-soft);
  color: var(--color-primary-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.poker-flow__image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.poker-flow__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.poker-flow__label {
  padding: var(--space-3) var(--space-4);
  background: rgba(255, 255, 255, 0.96);
  font-size: var(--font-size-sm);
}

.poker-arrangement__image-card,
.poker-themed__image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.poker-arrangement__image,
.poker-themed__image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.poker-faq__accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.poker-faq__item {
  padding: 0;
}

.poker-faq__question {
  width: 100%;
  padding: var(--space-4) var(--space-5) var(--space-4) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--font-size-sm);
  text-align: left;
}

.poker-faq__question span:first-child {
  font-weight: 500;
}

.poker-faq__icon {
  position: relative;
  width: 18px;
  height: 18px;
}

.poker-faq__icon::before,
.poker-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--color-primary-strong);
  transform: translate(-50%, -50%);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.poker-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.poker-faq__item[aria-expanded="true"] .poker-faq__icon::after,
.poker-faq__question[aria-expanded="true"] + .poker-faq__answer + .poker-faq__icon::after {
  opacity: 0;
}

.poker-faq__answer {
  padding: 0 var(--space-4) var(--space-4);
  font-size: var(--font-size-sm);
}

.poker-faq__answer[aria-hidden="true"] {
  display: none;
}

.poker-faq__side {
  align-self: flex-start;
}

.poker-faq__legal {
  font-size: var(--font-size-xs);
}

@media (min-width: 768px) {
  .poker-hero__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: center;
  }

  .poker-flow {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: start;
  }

  .poker-arrangement__image-wrapper,
  .poker-themed__image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 639px) {
  .poker-hero__stat-card {
    position: static;
    margin-top: var(--space-4);
  }
}
