main {
  background: radial-gradient(circle at top, rgba(99, 102, 241, 0.25), transparent 55%), var(--color-bg);
}
.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-10);
  align-items: center;
}
.hero__visual {
  display: flex;
  justify-content: flex-end;
}
.hero__image-frame {
  max-width: 460px;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: radial-gradient(circle at top left, rgba(129, 140, 248, 0.3), transparent 55%), var(--color-surface);
  border: 1px solid rgba(148, 163, 184, 0.4);
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section--surface {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 1));
}
.section__header {
  margin-bottom: var(--space-8);
}
.section__subtitle {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-text-muted);
}
.section__grid {
  row-gap: var(--space-8);
}
.section__header--stack {
  flex-wrap: wrap;
  gap: var(--space-4);
}
.section__actions {
  display: flex;
  align-items: center;
}
.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-left: 0;
}
.list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--color-primary);
}
.steps {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.steps h3 {
  font-size: var(--text-base);
  margin-bottom: 0.2rem;
}
.steps p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.gameplay__grid {
  align-items: center;
  gap: var(--space-10);
}
.gameplay__image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: radial-gradient(circle at top left, rgba(99, 102, 241, 0.32), transparent 60%), var(--color-surface);
  border: 1px solid rgba(148, 163, 184, 0.5);
}
.gameplay__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.direct__cta {
  max-width: 720px;
}
.direct__actions {
  justify-content: center;
  margin-top: var(--space-4);
}
@media (max-width: 960px) {
  .hero__layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero__visual {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .section__header--stack {
    flex-direction: column;
    align-items: flex-start;
  }
  .section__actions {
    width: 100%;
    justify-content: flex-start;
  }
}
@media (max-width: 640px) {
  .hero__image-frame {
    max-width: 100%;
  }
  .section__subtitle {
    text-align: left;
  }
  .direct__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
