/* Hero composer controls */
.hero-titles {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.hero-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.04rem;
  color: var(--text-primary);
}

.hero-subtitle {
  margin: var(--space-sm) 0 0 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.hero-input-wrapper {
  position: relative;
}

.hero-composer textarea {
  width: 100%;
  min-height: 120px;
  padding: var(--space-xl);
  border: 2px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  font-size: 16px;
  font-family: inherit;
  line-height: 1.5;
  resize: none;
  overflow-y: hidden;
  outline: none;
  background: var(--bg-primary);
  box-shadow: var(--shadow-lg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-input-wrapper textarea {
  /* allow text to use full width (no extra right padding) */
  padding-right: var(--space-xl);
}

#hero-send {
  position: absolute;
  right: var(--space-lg);
  bottom: var(--space-lg);
  transform: none;
  box-shadow: var(--shadow-sm);
}

#hero-send:hover:not(:disabled) {
  box-shadow: var(--shadow-md);
}


