:root {
  --themes-card-min-height: 280px;
}

.hero__cta-group {
  margin-top: var(--space-4);
}

.themes-hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.themes-hero-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-strong);
  box-shadow: var(--shadow-hard);
}

.themes-hero-stat {
  max-width: 16rem;
}

.themes-hero-stat-label {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.themes-hero-stat-value {
  font-family: var(--font-display);
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-1);
}

.themes-hero-stat-text {
  font-size: var(--font-size-sm);
}

.themes-grid-intro {
  margin-top: var(--space-4);
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

@media (max-width: 1100px) {
  .themes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .themes-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.themes-card {
  min-height: var(--themes-card-min-height);
}

.themes-card h3 {
  margin-top: var(--space-3);
}

.themes-list {
  margin-top: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.themes-list--compact {
  margin-top: var(--space-2);
}

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

.themes-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: radial-gradient(circle, #fed7aa 0%, #f97316 60%, #c2410c 100%);
}

.themes-feature {
  align-items: center;
  gap: var(--space-10);
}

.themes-feature--reverse {
  direction: rtl;
}

.themes-feature--reverse > * {
  direction: ltr;
}

.themes-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.themes-image-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-subtle);
}

.themes-image-figure--accent {
  box-shadow: var(--shadow-hard);
}

.themes-image-figure--brainstorm,
.themes-image-figure--showcase {
  max-width: 480px;
  width: 100%;
}

.themes-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.themes-step-title {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-1);
}

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

.themes-banner {
  margin-top: var(--space-4);
}

.themes-links {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.themes-ribbon-cta {
  align-items: flex-start;
}

.themes-ribbon-note {
  font-size: var(--font-size-xs);
}

@media (max-width: 980px) {
  .themes-feature,
  .themes-inspiration {
    grid-template-columns: minmax(0, 1fr);
  }

  .themes-feature--reverse {
    direction: ltr;
  }
}

@media (max-width: 720px) {
  .themes-hero-visual {
    order: -1;
  }

  .themes-hero-stat {
    max-width: 100%;
  }

  .themes-ribbon-cta {
    width: 100%;
  }

  .themes-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .themes-links {
    flex-direction: column;
    align-items: stretch;
  }
}
