/* HERO — centered, single column, full focus on input */
#hero {
  max-width: 580px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--green);
  background: var(--green-light);
  border: 1px solid var(--green-border);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-headline {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 0.875rem;
}

.hero-headline em {
  color: var(--green);
  font-style: normal;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* INPUT CARD */
.input-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  text-align: left;
}

.input-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 0.75rem;
  display: block;
}

.question-input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  resize: none;
  min-height: 90px;
  line-height: 1.5;
  transition: border-color 0.15s;
  outline: none;
}

.question-input:focus { border-color: var(--green); background: white; }
.question-input::placeholder { color: var(--text-muted); }

.input-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  #hero { padding: 3rem 1.25rem 2rem; }
}

/* MOBILE */
@media (max-width: 480px) {
  #hero { padding: 2rem 1.25rem 1.5rem; }
  .hero-headline { font-size: 1.65rem; }
  .input-card { padding: 1.25rem; }
  .question-input { min-height: 100px; font-size: 1rem; }
}