.hero {
  background: var(--color-surface);
  padding: 6rem 1rem;
  margin: 5%;
  margin-block-start: 1rem;
  text-align: center;
}

.hero-content {
  max-width: 48rem;
  margin: 0 auto;
}

.hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background-color: var(--color-primary, #3b82f6);
  color: white;
  border-radius: 50%;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text, #1f2937);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--color-text-muted, #6b7280);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 28rem;
  margin: 0 auto 3rem;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-muted, #6b7280);
}

.feature-item svg {
  color: var(--color-primary, #3b82f6);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-hint {
  font-size: 0.875rem;
  color: var(--color-text-muted, #6b7280);
  margin: 0;
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 1rem;
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .hero-icon {
    width: 4rem;
    height: 4rem;
  }

  .hero-icon svg {
    width: 48px;
    height: 48px;
  }
}
